unleashed-firmware/lib/nfc/protocols/iso14443_4b/iso14443_4b_poller_i.h
gornekich c00776ca22
[FL-3666] NFC API improvements (#3214)
* 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>
2023-11-15 17:32:45 +09:00

48 lines
1.1 KiB
C

#pragma once
#include <nfc/protocols/iso14443_3b/iso14443_3b_poller_i.h>
#include <nfc/helpers/iso14443_4_layer.h>
#include "iso14443_4b_poller.h"
#include "iso14443_4b_i.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
Iso14443_4bPollerStateIdle,
Iso14443_4bPollerStateError,
Iso14443_4bPollerStateReady,
Iso14443_4bPollerStateNum,
} Iso14443_4bPollerState;
typedef enum {
Iso14443_4bPollerSessionStateIdle,
Iso14443_4bPollerSessionStateActive,
Iso14443_4bPollerSessionStateStopRequest,
} Iso14443_4bPollerSessionState;
struct Iso14443_4bPoller {
Iso14443_3bPoller* iso14443_3b_poller;
Iso14443_4bPollerState poller_state;
Iso14443_4bPollerSessionState session_state;
Iso14443_4bError error;
Iso14443_4bData* data;
Iso14443_4Layer* iso14443_4_layer;
BitBuffer* tx_buffer;
BitBuffer* rx_buffer;
Iso14443_4bPollerEventData iso14443_4b_event_data;
Iso14443_4bPollerEvent iso14443_4b_event;
NfcGenericEvent general_event;
NfcGenericCallback callback;
void* context;
};
const Iso14443_4bData* iso14443_4b_poller_get_data(Iso14443_4bPoller* instance);
#ifdef __cplusplus
}
#endif