mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
26 lines
396 B
C
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
|