Files
Momentum-Firmware/applications/external/esubghz_chat/helpers/nfc_helpers.h
2023-08-31 16:40:04 +02:00

26 lines
396 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define NFC_MAX_BYTES 256
#define NFC_CONFIG_PAGES 4
struct FreqNfcEntry {
uint32_t frequency;
uint32_t unused1;
uint32_t unused2;
uint32_t unused3;
} __attribute__((packed));
struct ReplayDictNfcEntry {
uint64_t run_id;
uint32_t counter;
uint32_t unused;
} __attribute__((packed));
#ifdef __cplusplus
}
#endif