Add non restrictive mode for emulation (NTM_NORMAL), fix comments, rename NTM_PICC to insist on "ISO14443-4" PICC mode.
This commit is contained in:
parent
5233fceda7
commit
92cc9a5736
1 changed files with 6 additions and 4 deletions
|
@ -263,12 +263,14 @@ typedef union {
|
|||
* @brief NFC target type enumeration
|
||||
*/
|
||||
typedef enum {
|
||||
/** Configure the PN532 to accept to be initialized only in passive mode */
|
||||
/** Configure the PN53x to accept all initiator mode */
|
||||
NTM_NORMAL = 0x00,
|
||||
/** Configure the PN53x to accept to be initialized only in passive mode */
|
||||
NTM_PASSIVE = 0x01,
|
||||
/** configure the PN532 to accept to be initialized only as DEP target */
|
||||
/** Configure the PN53x to accept to be initialized only as DEP target */
|
||||
NTM_DEP = 0x02,
|
||||
/** configure the PN532 to accept to be initialized only as ISO/IEC14443-4 PICC */
|
||||
NTM_PICC = 0x04
|
||||
/** Configure the PN532 to accept to be initialized only as ISO/IEC14443-4 PICC */
|
||||
NTM_ISO14443_4_PICC = 0x04
|
||||
} nfc_target_mode_t;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue