| 12345678910111213141516171819202122232425 |
- #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
|