nfc_helpers.h 248 B

123456789101112131415161718
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #define NFC_MAX_BYTES 256
  6. #define NFC_CONFIG_PAGES 4
  7. struct ReplayDictNfcEntry {
  8. uint64_t run_id;
  9. uint32_t counter;
  10. uint32_t unused;
  11. } __attribute__ ((packed));
  12. #ifdef __cplusplus
  13. }
  14. #endif