nfc_tag_type_t

NFC tag types.

Synopsis:

#include <nfc/nfc_types.h>

typedef enum {
      TAG_TYPE_ISO_14443_3 = (0x1 << 0)   
      TAG_TYPE_ISO_14443_4 = (0x1 << 1)   
      TAG_TYPE_NDEF = (0x1 << 2)   
      TAG_TYPE_ISO_15693_3 = (0x1 << 3)   
      TAG_TYPE_ISO_18092 = (0x1 << 4)   
      TAG_TYPE_ALL = (0xFFFF)   
} nfc_tag_type_t;

Since:

BlackBerry 10.0.0

Data:

TAG_TYPE_ISO_14443_3
Tag type based on an ISO 14443-3 connection.
TAG_TYPE_ISO_14443_4
Tag type based on an ISO 14443-4 connection.
TAG_TYPE_NDEF
Tag type based on an NDEF connection.
TAG_TYPE_ISO_15693_3
Tag type based on an ISO 15693-3 connection.
TAG_TYPE_ISO_18092
Tag type based on an ISO 18092 connection.
TAG_TYPE_ALL
All tag types enabled.

Library:

libnfc (For the qcc command, use the -l nfc option to link against this library)

Description:

This enumeration defines NFC tag types.