mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 11:51:48 +03:00
c00776ca22
* drivers: expose st25r3916 driver API * nfc poller: add start with custom callback * mf classic: rework sync API with poller custom start * mf ultralight: rework sync API with poller custom start * iso14443_3a poller: remove unused col res state * nfc: rework nfc poller custom start * mf ultralight: rename sync API * mf classic: rename sync API * iso14443-3a: rename sync API * nfc: remove async prefix in internal functions * nfc: expose internal API * nfc: fix sync api include and docs * targets: fix f18 build * nfc: rework NfcGenericEventEx type * nfc poller: add documentation * iso14443-3a poller: add documentation * felica poller: add documentation * iso14443_3b poller: add documentation * so14443_4a poller: add documentation * iso14443_4b poller: add documentation * iso15693 poller: add documentation * slix poller: add documentation * mf desfire poller: add documentation * mf ultralight poller: fix API and add documentation * mf classic poller: add documentation Co-authored-by: あく <alleteam@gmail.com>
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
#pragma once
|
|
|
|
#include "mf_classic.h"
|
|
#include <nfc/nfc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
MfClassicError mf_classic_poller_sync_collect_nt(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKeyType key_type,
|
|
MfClassicNt* nt);
|
|
|
|
MfClassicError mf_classic_poller_sync_auth(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKey* key,
|
|
MfClassicKeyType key_type,
|
|
MfClassicAuthContext* data);
|
|
|
|
MfClassicError mf_classic_poller_sync_read_block(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKey* key,
|
|
MfClassicKeyType key_type,
|
|
MfClassicBlock* data);
|
|
|
|
MfClassicError mf_classic_poller_sync_write_block(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKey* key,
|
|
MfClassicKeyType key_type,
|
|
MfClassicBlock* data);
|
|
|
|
MfClassicError mf_classic_poller_sync_read_value(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKey* key,
|
|
MfClassicKeyType key_type,
|
|
int32_t* value);
|
|
|
|
MfClassicError mf_classic_poller_sync_change_value(
|
|
Nfc* nfc,
|
|
uint8_t block_num,
|
|
MfClassicKey* key,
|
|
MfClassicKeyType key_type,
|
|
int32_t data,
|
|
int32_t* new_value);
|
|
|
|
MfClassicError mf_classic_poller_sync_detect_type(Nfc* nfc, MfClassicType* type);
|
|
|
|
MfClassicError
|
|
mf_classic_poller_sync_read(Nfc* nfc, const MfClassicDeviceKeys* keys, MfClassicData* data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|