A structure representing the card type based on the ISO 14443-4 Card Type A.
Synopsis:
#include <nfc/nfc.h>
typedef struct {
char * identifier ;
size_t identifier_size ;
char * applicationData ;
size_t applicationData_size ;
}nfc_iso14443_4_card_type_a_t;
Data:
- char * identifier
- Unique identifier as defined by ISO 14443-3 Type A specification.
This parameter can be either:
- NULL so that an internal unique identifier is created by the NFC driver upon calling nfc_start_iso14443_4_emulation().
- a 4-byte array in which the first byte is within the range 0xH0-0xH7 or 0xH9-0xHE, where 'H' can be any hex value.
- size_t identifier_size
- Size of identifier (in bytes).
This is currently not used and must be set to 0 by the application.
- char * applicationData
- Historical bytes as defined by ISO 14443-4 Type A specification.
- size_t applicationData_size
- Size of applicationData (in bytes)
Library:
libnfc (For the qcc command, use the -l nfc option to link against this library)
Description: