2010-04-09 23:57:03 +02:00
|
|
|
/**
|
|
|
|
* Public platform independent Near Field Communication (NFC) library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010, Romuald Conty
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @file nfc-utils.h
|
2010-09-06 12:02:19 +02:00
|
|
|
* @brief Provide some examples shared functions like print, parity calculation, options parsing.
|
2010-04-09 23:57:03 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _EXAMPLES_NFC_UTILS_H_
|
2010-09-07 19:51:03 +02:00
|
|
|
# define _EXAMPLES_NFC_UTILS_H_
|
2010-04-09 23:57:03 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# include <stdlib.h>
|
|
|
|
# include <string.h>
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
byte_t oddparity (const byte_t bt);
|
|
|
|
void oddparity_byte_ts (const byte_t * pbtData, const size_t szLen, byte_t * pbtPar);
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void print_hex (const byte_t * pbtData, const size_t szLen);
|
|
|
|
void print_hex_bits (const byte_t * pbtData, const size_t szBits);
|
|
|
|
void print_hex_par (const byte_t * pbtData, const size_t szBits, const byte_t * pbtDataPar);
|
2010-08-18 14:50:40 +02:00
|
|
|
|
2010-10-19 14:50:52 +02:00
|
|
|
void print_nfc_iso14443a_info (const nfc_iso14443a_info_t nai, bool verbose);
|
|
|
|
void print_nfc_iso14443b_info (const nfc_iso14443b_info_t nbi, bool verbose);
|
|
|
|
void print_nfc_felica_info (const nfc_felica_info_t nfi, bool verbose);
|
|
|
|
void print_nfc_jewel_info (const nfc_jewel_info_t nji, bool verbose);
|
|
|
|
void print_nfc_dep_info (const nfc_dep_info_t ndi, bool verbose);
|
2010-08-18 14:50:40 +02:00
|
|
|
|
2010-10-19 14:50:52 +02:00
|
|
|
void print_nfc_target (const nfc_target_t nt, bool verbose);
|
2010-10-13 21:50:43 +02:00
|
|
|
|
2010-10-19 14:50:52 +02:00
|
|
|
nfc_device_desc_t *parse_args (int argc, const char *argv[], size_t * szFound, bool * verbose);
|
2010-04-09 23:57:03 +02:00
|
|
|
|
|
|
|
#endif
|