nfc_debug_log.h 327 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. typedef struct NfcDebugLog NfcDebugLog;
  5. NfcDebugLog* nfc_debug_log_alloc();
  6. void nfc_debug_log_free(NfcDebugLog* instance);
  7. void nfc_debug_log_process_data(
  8. NfcDebugLog* instance,
  9. uint8_t* data,
  10. uint16_t len,
  11. bool reader_to_tag,
  12. bool crc_dropped);