2010-01-12 12:50:09 +01:00
|
|
|
/*-
|
2009-10-12 16:52:26 +02:00
|
|
|
* Public platform independent Near Field Communication (NFC) library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009, Roel Verdult
|
2010-09-10 15:35:25 +02:00
|
|
|
* Copyright (C) 2010, Romuald Conty
|
2009-10-12 16:52:26 +02:00
|
|
|
*
|
|
|
|
* 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/>
|
2010-01-12 12:50:09 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-01-10 19:14:26 +01:00
|
|
|
* @file nfc.h
|
2010-01-12 12:50:09 +01:00
|
|
|
* @brief libnfc interface
|
2009-08-27 12:49:45 +02:00
|
|
|
*
|
2009-10-12 16:52:26 +02:00
|
|
|
* Provide all usefull functions (API) to handle NFC devices.
|
2009-08-27 12:49:45 +02:00
|
|
|
*/
|
|
|
|
|
2009-10-13 14:43:52 +02:00
|
|
|
#ifndef _LIBNFC_H_
|
2010-09-07 19:51:03 +02:00
|
|
|
# define _LIBNFC_H_
|
2009-10-12 16:52:26 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# include <stdint.h>
|
|
|
|
# include <stdbool.h>
|
2009-05-27 12:13:19 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# ifdef _WIN32
|
2010-03-31 16:03:12 +02:00
|
|
|
/* Windows platform */
|
2010-09-07 19:51:03 +02:00
|
|
|
# ifndef _WINDLL
|
2010-03-31 16:03:12 +02:00
|
|
|
/* CMake compilation */
|
2010-09-07 19:51:03 +02:00
|
|
|
# ifdef nfc_EXPORTS
|
|
|
|
# define NFC_EXPORT __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
/* nfc_EXPORTS */
|
|
|
|
# define NFC_EXPORT __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
/* nfc_EXPORTS */
|
|
|
|
# else
|
|
|
|
/* _WINDLL */
|
2010-03-31 16:03:12 +02:00
|
|
|
/* Manual makefile */
|
2010-09-07 19:51:03 +02:00
|
|
|
# define NFC_EXPORT
|
|
|
|
# endif
|
|
|
|
/* _WINDLL */
|
|
|
|
# else
|
|
|
|
/* _WIN32 */
|
|
|
|
# define NFC_EXPORT
|
|
|
|
# endif
|
|
|
|
/* _WIN32 */
|
2009-11-10 10:47:59 +01:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# include <nfc/nfc-types.h>
|
2009-04-29 14:47:41 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
# endif // __cplusplus
|
2009-11-02 08:46:29 +01:00
|
|
|
|
2010-01-12 12:50:09 +01:00
|
|
|
/* NFC Device/Hardware manipulation */
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT nfc_device_t *nfc_connect (nfc_device_desc_t * pndd);
|
|
|
|
NFC_EXPORT void nfc_disconnect (nfc_device_t * pnd);
|
2011-05-05 11:27:17 +02:00
|
|
|
NFC_EXPORT bool nfc_abort_command (nfc_device_t * pnd);
|
2010-09-10 15:35:25 +02:00
|
|
|
NFC_EXPORT void nfc_list_devices (nfc_device_desc_t pnddDevices[], size_t szDevices, size_t * pszDeviceFound);
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT bool nfc_configure (nfc_device_t * pnd, const nfc_device_option_t ndo, const bool bEnable);
|
2011-05-09 12:09:40 +02:00
|
|
|
NFC_EXPORT bool nfc_idle (nfc_device_t * pnd);
|
2009-08-27 12:49:45 +02:00
|
|
|
|
2010-01-12 12:50:09 +01:00
|
|
|
/* NFC initiator: act as "reader" */
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT bool nfc_initiator_init (nfc_device_t * pnd);
|
2011-03-05 10:09:13 +01:00
|
|
|
NFC_EXPORT bool nfc_initiator_select_passive_target (nfc_device_t * pnd, const nfc_modulation_t nm, const byte_t * pbtInitData, const size_t szInitData, nfc_target_t * pnt);
|
|
|
|
NFC_EXPORT bool nfc_initiator_list_passive_targets (nfc_device_t * pnd, const nfc_modulation_t nm, nfc_target_t ant[], const size_t szTargets, size_t * pszTargetFound);
|
|
|
|
NFC_EXPORT bool nfc_initiator_poll_targets (nfc_device_t * pnd, const nfc_modulation_t * pnmTargetTypes, const size_t szTargetTypes, const byte_t btPollNr, const byte_t btPeriod, nfc_target_t * pntTargets, size_t * pszTargetFound);
|
|
|
|
NFC_EXPORT bool nfc_initiator_select_dep_target (nfc_device_t * pnd, const nfc_dep_mode_t ndm, const nfc_baud_rate_t nbr, const nfc_dep_info_t * pndiInitiator, nfc_target_t * pnt);
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT bool nfc_initiator_deselect_target (nfc_device_t * pnd);
|
2011-03-05 10:09:13 +01:00
|
|
|
NFC_EXPORT bool nfc_initiator_transceive_bytes (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTx, byte_t * pbtRx, size_t * pszRx);
|
|
|
|
NFC_EXPORT bool nfc_initiator_transceive_bits (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTxBits, const byte_t * pbtTxPar, byte_t * pbtRx, size_t * pszRxBits, byte_t * pbtRxPar);
|
2011-05-11 22:56:09 +02:00
|
|
|
NFC_EXPORT bool nfc_initiator_transceive_bytes_timed (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTx, byte_t * pbtRx, size_t * pszRx, uint32_t * cycles);
|
|
|
|
NFC_EXPORT bool nfc_initiator_transceive_bits_timed (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTxBits, const byte_t * pbtTxPar, byte_t * pbtRx, size_t * pszRxBits, byte_t * pbtRxPar, uint32_t * cycles);
|
2010-09-20 16:41:41 +02:00
|
|
|
|
2010-01-12 12:50:09 +01:00
|
|
|
/* NFC target: act as tag (i.e. MIFARE Classic) or NFC target device. */
|
2010-10-15 16:32:10 +02:00
|
|
|
NFC_EXPORT bool nfc_target_init (nfc_device_t * pnd, nfc_target_t * pnt, byte_t * pbtRx, size_t * pszRx);
|
2010-10-12 16:56:42 +02:00
|
|
|
NFC_EXPORT bool nfc_target_send_bytes (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTx);
|
|
|
|
NFC_EXPORT bool nfc_target_receive_bytes (nfc_device_t * pnd, byte_t * pbtRx, size_t * pszRx);
|
2011-03-05 10:09:13 +01:00
|
|
|
NFC_EXPORT bool nfc_target_send_bits (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTxBits, const byte_t * pbtTxPar);
|
2010-09-10 15:35:25 +02:00
|
|
|
NFC_EXPORT bool nfc_target_receive_bits (nfc_device_t * pnd, byte_t * pbtRx, size_t * pszRxBits, byte_t * pbtRxPar);
|
2010-09-20 16:41:41 +02:00
|
|
|
|
2010-07-29 16:16:11 +02:00
|
|
|
/* Error reporting */
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT const char *nfc_strerror (const nfc_device_t * pnd);
|
|
|
|
NFC_EXPORT int nfc_strerror_r (const nfc_device_t * pnd, char *pcStrErrBuf, size_t szBufLen);
|
|
|
|
NFC_EXPORT void nfc_perror (const nfc_device_t * pnd, const char *pcString);
|
2010-07-29 16:16:11 +02:00
|
|
|
|
2010-01-10 19:14:26 +01:00
|
|
|
/* Special data accessors */
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT const char *nfc_device_name (nfc_device_t * pnd);
|
2009-12-14 20:18:29 +01:00
|
|
|
|
2010-01-10 19:14:26 +01:00
|
|
|
/* Misc. functions */
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT void iso14443a_crc (byte_t * pbtData, size_t szLen, byte_t * pbtCrc);
|
2010-10-29 12:59:26 +02:00
|
|
|
NFC_EXPORT void iso14443a_crc_append (byte_t * pbtData, size_t szLen);
|
2010-10-14 20:33:17 +02:00
|
|
|
NFC_EXPORT byte_t * iso14443a_locate_historical_bytes (byte_t * pbtAts, size_t szAts, size_t * pszTk);
|
2010-09-07 19:51:03 +02:00
|
|
|
NFC_EXPORT const char *nfc_version (void);
|
2010-01-10 19:14:26 +01:00
|
|
|
|
2010-11-15 19:50:53 +01:00
|
|
|
/* PN53x specific errors */
|
|
|
|
// TODO: Be not PN53x-specific here
|
|
|
|
#define ETIMEOUT 0x01
|
|
|
|
#define ECRC 0x02
|
|
|
|
#define EPARITY 0x03
|
|
|
|
#define EBITCOUNT 0x04
|
|
|
|
#define EFRAMING 0x05
|
|
|
|
#define EBITCOLL 0x06
|
|
|
|
#define ESMALLBUF 0x07
|
|
|
|
#define EBUFOVF 0x09
|
|
|
|
#define ERFTIMEOUT 0x0a
|
|
|
|
#define ERFPROTO 0x0b
|
|
|
|
#define EOVHEAT 0x0d
|
|
|
|
#define EINBUFOVF 0x0e
|
|
|
|
#define EINVPARAM 0x10
|
|
|
|
#define EDEPUNKCMD 0x12
|
|
|
|
#define EINVRXFRAM 0x13
|
|
|
|
#define EMFAUTH 0x14
|
2011-01-07 17:15:18 +01:00
|
|
|
#define ENSECNOTSUPP 0x18 // PN533 only
|
2010-11-15 19:50:53 +01:00
|
|
|
#define EBCC 0x23
|
|
|
|
#define EDEPINVSTATE 0x25
|
|
|
|
#define EOPNOTALL 0x26
|
|
|
|
#define ECMD 0x27
|
|
|
|
#define ETGREL 0x29
|
|
|
|
#define ECID 0x2a
|
|
|
|
#define ECDISCARDED 0x2b
|
|
|
|
#define ENFCID3 0x2c
|
|
|
|
#define EOVCURRENT 0x2d
|
|
|
|
#define ENAD 0x2e
|
|
|
|
|
2011-06-27 18:31:10 +02:00
|
|
|
/* PN53x framing-level errors */
|
|
|
|
#define EFRAACKMISMATCH 0x0100 /* Unexpected data */
|
|
|
|
#define EFRAISERRFRAME 0x0101 /* Error frame */
|
|
|
|
|
|
|
|
/* Communication-level errors */
|
|
|
|
#define ECOMIO 0x1000 /* Input/output error */
|
|
|
|
#define ECOMTIMEOUT 0x1001 /* Operation timeout */
|
2011-01-07 17:15:18 +01:00
|
|
|
|
2011-06-27 18:31:10 +02:00
|
|
|
/* Software level errors */
|
|
|
|
#define ETGUIDNOTSUP 0xFF00 /* Target UID not supported */
|
|
|
|
#define EOPABORT 0xFF01 /* Operation aborted */
|
|
|
|
#define EINVALARG 0xFF02 /* Invalid argument */
|
|
|
|
#define EDEVNOTSUP 0xFF03 /* Not supported by device */
|
|
|
|
#define ENOTIMPL 0xFF04 /* Not (yet) implemented in libnfc */
|
2010-08-15 16:08:29 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
# ifdef __cplusplus
|
2009-11-02 08:46:29 +01:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
# endif // __cplusplus
|
|
|
|
#endif // _LIBNFC_H_
|