Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nfc_protocols/nfca.h')
-rw-r--r--lib/nfc_protocols/nfca.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/nfc_protocols/nfca.h b/lib/nfc_protocols/nfca.h
new file mode 100644
index 00000000..0764a6c0
--- /dev/null
+++ b/lib/nfc_protocols/nfca.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <stdint.h>
+#include <stdbool.h>
+
+bool nfca_emulation_handler(
+ uint8_t* buff_rx,
+ uint16_t buff_rx_len,
+ uint8_t* buff_tx,
+ uint16_t* buff_tx_len);