1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 20:49:49 +04:00
Files
unleashed-firmware/lib/nfc/protocols/st25tb/st25tb_poller_sync.h

21 lines
443 B
C
Raw Normal View History

#pragma once
#include "st25tb.h"
#include <nfc/nfc.h>
#ifdef __cplusplus
extern "C" {
#endif
St25tbError st25tb_poller_sync_read_block(Nfc* nfc, uint8_t block_num, uint32_t* block);
St25tbError st25tb_poller_sync_write_block(Nfc* nfc, uint8_t block_num, uint32_t block);
St25tbError st25tb_poller_sync_detect_type(Nfc* nfc, St25tbType* type);
St25tbError st25tb_poller_sync_read(Nfc* nfc, St25tbData* data);
#ifdef __cplusplus
}
2024-07-15 20:02:45 +03:00
#endif