mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-24 13:52:38 +03:00
27 lines
512 B
C
27 lines
512 B
C
|
/**
|
||
|
* @file nfc_device_base.h
|
||
|
* @brief Common top-level types for the NFC protocol stack.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief Verbosity level of the displayed NFC device name.
|
||
|
*/
|
||
|
typedef enum {
|
||
|
NfcDeviceNameTypeFull, /**< Display full(verbose) name. */
|
||
|
NfcDeviceNameTypeShort, /**< Display shortened name. */
|
||
|
} NfcDeviceNameType;
|
||
|
|
||
|
/**
|
||
|
* @brief Generic opaque type for protocol-specific NFC device data.
|
||
|
*/
|
||
|
typedef void NfcDeviceData;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|