add nfc_device_get_supported_modulation() and nfc_device_get_supported_baud_rate() functions.
This commit is contained in:
parent
75e776ffd0
commit
5a5bdf1d66
11 changed files with 126 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ typedef enum {
|
|||
* @brief NFC modulation type enumeration
|
||||
*/
|
||||
typedef enum {
|
||||
NMT_ISO14443A,
|
||||
NMT_ISO14443A = 1,
|
||||
NMT_JEWEL,
|
||||
NMT_ISO14443B,
|
||||
NMT_ISO14443BI, // pre-ISO14443B aka ISO/IEC 14443 B' or Type B'
|
||||
|
|
@ -286,6 +286,15 @@ typedef enum {
|
|||
NMT_DEP,
|
||||
} nfc_modulation_type;
|
||||
|
||||
/**
|
||||
* @enum nfc_mode
|
||||
* @brief NFC mode type enumeration
|
||||
*/
|
||||
typedef enum {
|
||||
N_TARGET,
|
||||
N_INITIATOR,
|
||||
} nfc_mode;
|
||||
|
||||
/**
|
||||
* @struct nfc_modulation
|
||||
* @brief NFC modulation structure
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue