mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
[FL-3867] Code formatting update (#3765)
* clang-format: AllowShortEnumsOnASingleLine: false * clang-format: InsertNewlineAtEOF: true * clang-format: Standard: c++20 * clang-format: AlignConsecutiveBitFields * clang-format: AlignConsecutiveMacros * clang-format: RemoveParentheses: ReturnStatement * clang-format: RemoveSemicolon: true * Restored RemoveParentheses: Leave, retained general changes for it * formatting: fixed logging TAGs * Formatting update for dev Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
@@ -3,21 +3,21 @@
|
||||
|
||||
#include <nfc/nfc_common.h>
|
||||
|
||||
#define ISO15693_3_PROTOCOL_NAME "ISO15693-3"
|
||||
#define ISO15693_3_PROTOCOL_NAME "ISO15693-3"
|
||||
#define ISO15693_3_PROTOCOL_NAME_LEGACY "ISO15693"
|
||||
#define ISO15693_3_DEVICE_NAME "ISO15693-3 (Unknown)"
|
||||
#define ISO15693_3_DEVICE_NAME "ISO15693-3 (Unknown)"
|
||||
|
||||
#define ISO15693_3_LOCK_DSFID_LEGACY (1U << 0)
|
||||
#define ISO15693_3_LOCK_AFI_LEGACY (1U << 1)
|
||||
#define ISO15693_3_LOCK_AFI_LEGACY (1U << 1)
|
||||
|
||||
#define ISO15693_3_DSFID_KEY "DSFID"
|
||||
#define ISO15693_3_AFI_KEY "AFI"
|
||||
#define ISO15693_3_IC_REF_KEY "IC Reference"
|
||||
#define ISO15693_3_BLOCK_COUNT_KEY "Block Count"
|
||||
#define ISO15693_3_BLOCK_SIZE_KEY "Block Size"
|
||||
#define ISO15693_3_DATA_CONTENT_KEY "Data Content"
|
||||
#define ISO15693_3_LOCK_DSFID_KEY "Lock DSFID"
|
||||
#define ISO15693_3_LOCK_AFI_KEY "Lock AFI"
|
||||
#define ISO15693_3_DSFID_KEY "DSFID"
|
||||
#define ISO15693_3_AFI_KEY "AFI"
|
||||
#define ISO15693_3_IC_REF_KEY "IC Reference"
|
||||
#define ISO15693_3_BLOCK_COUNT_KEY "Block Count"
|
||||
#define ISO15693_3_BLOCK_SIZE_KEY "Block Size"
|
||||
#define ISO15693_3_DATA_CONTENT_KEY "Data Content"
|
||||
#define ISO15693_3_LOCK_DSFID_KEY "Lock DSFID"
|
||||
#define ISO15693_3_LOCK_AFI_KEY "Lock AFI"
|
||||
#define ISO15693_3_SECURITY_STATUS_KEY "Security Status"
|
||||
|
||||
const NfcDeviceBase nfc_device_iso15693_3 = {
|
||||
|
||||
@@ -10,9 +10,9 @@ extern "C" {
|
||||
|
||||
#define ISO15693_3_UID_SIZE (8U)
|
||||
|
||||
#define ISO15693_3_GUARD_TIME_US (5000U)
|
||||
#define ISO15693_3_FDT_POLL_FC (4202U)
|
||||
#define ISO15693_3_FDT_LISTEN_FC (4320U)
|
||||
#define ISO15693_3_GUARD_TIME_US (5000U)
|
||||
#define ISO15693_3_FDT_POLL_FC (4202U)
|
||||
#define ISO15693_3_FDT_LISTEN_FC (4320U)
|
||||
#define ISO15693_3_POLL_POLL_MIN_US (1500U)
|
||||
|
||||
#define ISO15693_3_REQ_FLAG_SUBCARRIER_1 (0U << 0)
|
||||
@@ -21,59 +21,59 @@ extern "C" {
|
||||
#define ISO15693_3_REQ_FLAG_DATA_RATE_HI (1U << 1)
|
||||
#define ISO15693_3_REQ_FLAG_INVENTORY_T4 (0U << 2)
|
||||
#define ISO15693_3_REQ_FLAG_INVENTORY_T5 (1U << 2)
|
||||
#define ISO15693_3_REQ_FLAG_EXTENSION (1U << 3)
|
||||
#define ISO15693_3_REQ_FLAG_EXTENSION (1U << 3)
|
||||
|
||||
#define ISO15693_3_REQ_FLAG_T4_SELECTED (1U << 4)
|
||||
#define ISO15693_3_REQ_FLAG_T4_SELECTED (1U << 4)
|
||||
#define ISO15693_3_REQ_FLAG_T4_ADDRESSED (1U << 5)
|
||||
#define ISO15693_3_REQ_FLAG_T4_OPTION (1U << 6)
|
||||
#define ISO15693_3_REQ_FLAG_T4_OPTION (1U << 6)
|
||||
|
||||
#define ISO15693_3_REQ_FLAG_T5_AFI_PRESENT (1U << 4)
|
||||
#define ISO15693_3_REQ_FLAG_T5_N_SLOTS_16 (0U << 5)
|
||||
#define ISO15693_3_REQ_FLAG_T5_N_SLOTS_1 (1U << 5)
|
||||
#define ISO15693_3_REQ_FLAG_T5_OPTION (1U << 6)
|
||||
#define ISO15693_3_REQ_FLAG_T5_N_SLOTS_16 (0U << 5)
|
||||
#define ISO15693_3_REQ_FLAG_T5_N_SLOTS_1 (1U << 5)
|
||||
#define ISO15693_3_REQ_FLAG_T5_OPTION (1U << 6)
|
||||
|
||||
#define ISO15693_3_RESP_FLAG_NONE (0U)
|
||||
#define ISO15693_3_RESP_FLAG_ERROR (1U << 0)
|
||||
#define ISO15693_3_RESP_FLAG_NONE (0U)
|
||||
#define ISO15693_3_RESP_FLAG_ERROR (1U << 0)
|
||||
#define ISO15693_3_RESP_FLAG_EXTENSION (1U << 3)
|
||||
|
||||
#define ISO15693_3_RESP_ERROR_NOT_SUPPORTED (0x01U)
|
||||
#define ISO15693_3_RESP_ERROR_FORMAT (0x02U)
|
||||
#define ISO15693_3_RESP_ERROR_OPTION (0x03U)
|
||||
#define ISO15693_3_RESP_ERROR_UNKNOWN (0x0FU)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_UNAVAILABLE (0x10U)
|
||||
#define ISO15693_3_RESP_ERROR_NOT_SUPPORTED (0x01U)
|
||||
#define ISO15693_3_RESP_ERROR_FORMAT (0x02U)
|
||||
#define ISO15693_3_RESP_ERROR_OPTION (0x03U)
|
||||
#define ISO15693_3_RESP_ERROR_UNKNOWN (0x0FU)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_UNAVAILABLE (0x10U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_ALREADY_LOCKED (0x11U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_LOCKED (0x12U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_WRITE (0x13U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_LOCK (0x14U)
|
||||
#define ISO15693_3_RESP_ERROR_CUSTOM_START (0xA0U)
|
||||
#define ISO15693_3_RESP_ERROR_CUSTOM_END (0xDFU)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_LOCKED (0x12U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_WRITE (0x13U)
|
||||
#define ISO15693_3_RESP_ERROR_BLOCK_LOCK (0x14U)
|
||||
#define ISO15693_3_RESP_ERROR_CUSTOM_START (0xA0U)
|
||||
#define ISO15693_3_RESP_ERROR_CUSTOM_END (0xDFU)
|
||||
|
||||
#define ISO15693_3_CMD_MANDATORY_START (0x01U)
|
||||
#define ISO15693_3_CMD_INVENTORY (0x01U)
|
||||
#define ISO15693_3_CMD_STAY_QUIET (0x02U)
|
||||
#define ISO15693_3_CMD_MANDATORY_RFU (0x03U)
|
||||
#define ISO15693_3_CMD_OPTIONAL_START (0x20U)
|
||||
#define ISO15693_3_CMD_READ_BLOCK (0x20U)
|
||||
#define ISO15693_3_CMD_WRITE_BLOCK (0x21U)
|
||||
#define ISO15693_3_CMD_LOCK_BLOCK (0x22U)
|
||||
#define ISO15693_3_CMD_READ_MULTI_BLOCKS (0x23U)
|
||||
#define ISO15693_3_CMD_WRITE_MULTI_BLOCKS (0x24U)
|
||||
#define ISO15693_3_CMD_SELECT (0x25U)
|
||||
#define ISO15693_3_CMD_RESET_TO_READY (0x26U)
|
||||
#define ISO15693_3_CMD_WRITE_AFI (0x27U)
|
||||
#define ISO15693_3_CMD_LOCK_AFI (0x28U)
|
||||
#define ISO15693_3_CMD_WRITE_DSFID (0x29U)
|
||||
#define ISO15693_3_CMD_LOCK_DSFID (0x2AU)
|
||||
#define ISO15693_3_CMD_GET_SYS_INFO (0x2BU)
|
||||
#define ISO15693_3_CMD_MANDATORY_START (0x01U)
|
||||
#define ISO15693_3_CMD_INVENTORY (0x01U)
|
||||
#define ISO15693_3_CMD_STAY_QUIET (0x02U)
|
||||
#define ISO15693_3_CMD_MANDATORY_RFU (0x03U)
|
||||
#define ISO15693_3_CMD_OPTIONAL_START (0x20U)
|
||||
#define ISO15693_3_CMD_READ_BLOCK (0x20U)
|
||||
#define ISO15693_3_CMD_WRITE_BLOCK (0x21U)
|
||||
#define ISO15693_3_CMD_LOCK_BLOCK (0x22U)
|
||||
#define ISO15693_3_CMD_READ_MULTI_BLOCKS (0x23U)
|
||||
#define ISO15693_3_CMD_WRITE_MULTI_BLOCKS (0x24U)
|
||||
#define ISO15693_3_CMD_SELECT (0x25U)
|
||||
#define ISO15693_3_CMD_RESET_TO_READY (0x26U)
|
||||
#define ISO15693_3_CMD_WRITE_AFI (0x27U)
|
||||
#define ISO15693_3_CMD_LOCK_AFI (0x28U)
|
||||
#define ISO15693_3_CMD_WRITE_DSFID (0x29U)
|
||||
#define ISO15693_3_CMD_LOCK_DSFID (0x2AU)
|
||||
#define ISO15693_3_CMD_GET_SYS_INFO (0x2BU)
|
||||
#define ISO15693_3_CMD_GET_BLOCKS_SECURITY (0x2CU)
|
||||
#define ISO15693_3_CMD_OPTIONAL_RFU (0x2DU)
|
||||
#define ISO15693_3_CMD_CUSTOM_START (0xA0U)
|
||||
#define ISO15693_3_CMD_OPTIONAL_RFU (0x2DU)
|
||||
#define ISO15693_3_CMD_CUSTOM_START (0xA0U)
|
||||
|
||||
#define ISO15693_3_MANDATORY_COUNT (ISO15693_3_CMD_MANDATORY_RFU - ISO15693_3_CMD_MANDATORY_START)
|
||||
#define ISO15693_3_OPTIONAL_COUNT (ISO15693_3_CMD_OPTIONAL_RFU - ISO15693_3_CMD_OPTIONAL_START)
|
||||
#define ISO15693_3_OPTIONAL_COUNT (ISO15693_3_CMD_OPTIONAL_RFU - ISO15693_3_CMD_OPTIONAL_START)
|
||||
|
||||
#define ISO15693_3_SYSINFO_FLAG_DSFID (1U << 0)
|
||||
#define ISO15693_3_SYSINFO_FLAG_AFI (1U << 1)
|
||||
#define ISO15693_3_SYSINFO_FLAG_DSFID (1U << 0)
|
||||
#define ISO15693_3_SYSINFO_FLAG_AFI (1U << 1)
|
||||
#define ISO15693_3_SYSINFO_FLAG_MEMORY (1U << 2)
|
||||
#define ISO15693_3_SYSINFO_FLAG_IC_REF (1U << 3)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user