From 43ca2c827b7cb45140bb87a720703f0e6e710297 Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Mon, 6 Sep 2010 09:27:06 +0000 Subject: [PATCH] Remove unused file. --- examples/mifareultag.h | 50 ------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 examples/mifareultag.h diff --git a/examples/mifareultag.h b/examples/mifareultag.h deleted file mode 100644 index c3c0159..0000000 --- a/examples/mifareultag.h +++ /dev/null @@ -1,50 +0,0 @@ -/** - * Public platform independent Near Field Communication (NFC) library - * - * Copyright (C) 2009, Roel Verdult - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see - * - * - * @file mifareultag.h - * @brief - */ - -#ifndef _LIBNFC_MIFARE_UL_TAG_H_ -#define _LIBNFC_MIFARE_UL_TAG_H_ - -typedef struct { - byte_t sn0[3]; - byte_t btBCC0; - byte_t sn1[4]; - byte_t btBCC1; - byte_t internal; - byte_t lock[2]; - byte_t otp[4]; -} mifareul_block_manufacturer; - -typedef struct { - byte_t abtData[16]; -} mifareul_block_data; - -typedef union { - mifareul_block_manufacturer mbm; - mifareul_block_data mbd; -} mifareul_block; - -typedef struct { - mifareul_block amb[4]; -} mifareul_tag; - -#endif // _LIBNFC_MIFARE_UL_TAG_H_