mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00: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>
38 lines
725 B
C
38 lines
725 B
C
#pragma once
|
|
|
|
#include <nfc/protocols/iso15693_3/iso15693_3_poller_i.h>
|
|
|
|
#include "slix_poller.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
SlixPollerStateIdle,
|
|
SlixPollerStateGetNxpSysInfo,
|
|
SlixPollerStateReadSignature,
|
|
SlixPollerStateReady,
|
|
SlixPollerStateError,
|
|
SlixPollerStateNum,
|
|
} SlixPollerState;
|
|
|
|
struct SlixPoller {
|
|
Iso15693_3Poller* iso15693_3_poller;
|
|
SlixData* data;
|
|
SlixPollerState poller_state;
|
|
SlixError error;
|
|
|
|
BitBuffer* tx_buffer;
|
|
BitBuffer* rx_buffer;
|
|
|
|
SlixPollerEventData slix_event_data;
|
|
SlixPollerEvent slix_event;
|
|
NfcGenericEvent general_event;
|
|
NfcGenericCallback callback;
|
|
void* context;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|