From 92cc9a5736191015c2ae0fbc1c8b2263046b29cb Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Mon, 4 Oct 2010 13:26:47 +0000 Subject: [PATCH] Add non restrictive mode for emulation (NTM_NORMAL), fix comments, rename NTM_PICC to insist on "ISO14443-4" PICC mode. --- include/nfc/nfc-types.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/include/nfc/nfc-types.h b/include/nfc/nfc-types.h index 1b959c2..47f2aad 100644 --- a/include/nfc/nfc-types.h +++ b/include/nfc/nfc-types.h @@ -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; /**