nfc_debug_pcap.h 387 B

123456789101112
  1. #pragma once
  2. #include <furi_hal_nfc.h>
  3. #include <storage/storage.h>
  4. /** Prepare tx/rx context for debug pcap logging, if enabled.
  5. *
  6. * @param tx_rx TX/RX context to log
  7. * @param storage Storage to log to
  8. * @param is_picc if true, record Flipper as PICC, else PCD.
  9. */
  10. void nfc_debug_pcap_prepare_tx_rx(FuriHalNfcTxRxContext* tx_rx, Storage* storage, bool is_picc);