Flipper Zero Firmware
Loading...
Searching...
No Matches
st25tb_poller_sync.h
1#pragma once
2
3#include "st25tb.h"
4#include <nfc/nfc.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10St25tbError st25tb_poller_sync_read_block(Nfc* nfc, uint8_t block_num, uint32_t* block);
11
12St25tbError st25tb_poller_sync_write_block(Nfc* nfc, uint8_t block_num, uint32_t block);
13
14St25tbError st25tb_poller_sync_detect_type(Nfc* nfc, St25tbType* type);
15
16St25tbError st25tb_poller_sync_read(Nfc* nfc, St25tbData* data);
17
18#ifdef __cplusplus
19}
20#endif
Transport layer Nfc library.
Definition nfc.c:41
Definition st25tb.h:42