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:
Romuald Conty 2010-10-04 13:26:47 +00:00
parent 5233fceda7
commit 92cc9a5736

View file

@ -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;
/**