nfc_debug_pcap.h 335 B

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