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>
159 lines
5.3 KiB
C
159 lines
5.3 KiB
C
#include "slix_poller_i.h"
|
|
|
|
#include <nfc/protocols/nfc_poller_base.h>
|
|
|
|
#include <furi.h>
|
|
|
|
#define TAG "SlixPoller"
|
|
|
|
#define SLIX_POLLER_BUF_SIZE (64U)
|
|
|
|
typedef NfcCommand (*SlixPollerStateHandler)(SlixPoller* instance);
|
|
|
|
const SlixData* slix_poller_get_data(SlixPoller* instance) {
|
|
furi_assert(instance);
|
|
|
|
return instance->data;
|
|
}
|
|
|
|
static SlixPoller* slix_poller_alloc(Iso15693_3Poller* iso15693_3_poller) {
|
|
SlixPoller* instance = malloc(sizeof(SlixPoller));
|
|
instance->iso15693_3_poller = iso15693_3_poller;
|
|
instance->data = slix_alloc();
|
|
instance->tx_buffer = bit_buffer_alloc(SLIX_POLLER_BUF_SIZE);
|
|
instance->rx_buffer = bit_buffer_alloc(SLIX_POLLER_BUF_SIZE);
|
|
|
|
instance->slix_event.data = &instance->slix_event_data;
|
|
|
|
instance->general_event.protocol = NfcProtocolSlix;
|
|
instance->general_event.event_data = &instance->slix_event;
|
|
instance->general_event.instance = instance;
|
|
|
|
return instance;
|
|
}
|
|
|
|
static void slix_poller_free(SlixPoller* instance) {
|
|
furi_assert(instance);
|
|
|
|
slix_free(instance->data);
|
|
bit_buffer_free(instance->tx_buffer);
|
|
bit_buffer_free(instance->rx_buffer);
|
|
free(instance);
|
|
}
|
|
|
|
static NfcCommand slix_poller_handler_idle(SlixPoller* instance) {
|
|
iso15693_3_copy(
|
|
instance->data->iso15693_3_data, iso15693_3_poller_get_data(instance->iso15693_3_poller));
|
|
|
|
instance->poller_state = SlixPollerStateGetNxpSysInfo;
|
|
return NfcCommandContinue;
|
|
}
|
|
|
|
static NfcCommand slix_poller_handler_get_nfc_system_info(SlixPoller* instance) {
|
|
instance->error = slix_poller_get_nxp_system_info(instance, &instance->data->system_info);
|
|
if(instance->error == SlixErrorNone) {
|
|
instance->poller_state = SlixPollerStateReadSignature;
|
|
} else {
|
|
instance->poller_state = SlixPollerStateError;
|
|
}
|
|
|
|
return NfcCommandContinue;
|
|
}
|
|
|
|
static NfcCommand slix_poller_handler_read_signature(SlixPoller* instance) {
|
|
instance->error = slix_poller_read_signature(instance, &instance->data->signature);
|
|
if(instance->error == SlixErrorNone) {
|
|
instance->poller_state = SlixPollerStateReady;
|
|
} else {
|
|
instance->poller_state = SlixPollerStateError;
|
|
}
|
|
|
|
return NfcCommandContinue;
|
|
}
|
|
|
|
static NfcCommand slix_poller_handler_error(SlixPoller* instance) {
|
|
instance->slix_event_data.error = instance->error;
|
|
instance->slix_event.type = SlixPollerEventTypeError;
|
|
NfcCommand command = instance->callback(instance->general_event, instance->context);
|
|
instance->poller_state = SlixPollerStateIdle;
|
|
return command;
|
|
}
|
|
|
|
static NfcCommand slix_poller_handler_ready(SlixPoller* instance) {
|
|
instance->slix_event.type = SlixPollerEventTypeReady;
|
|
NfcCommand command = instance->callback(instance->general_event, instance->context);
|
|
return command;
|
|
}
|
|
|
|
static const SlixPollerStateHandler slix_poller_state_handler[SlixPollerStateNum] = {
|
|
[SlixPollerStateIdle] = slix_poller_handler_idle,
|
|
[SlixPollerStateError] = slix_poller_handler_error,
|
|
[SlixPollerStateGetNxpSysInfo] = slix_poller_handler_get_nfc_system_info,
|
|
[SlixPollerStateReadSignature] = slix_poller_handler_read_signature,
|
|
[SlixPollerStateReady] = slix_poller_handler_ready,
|
|
};
|
|
|
|
static void
|
|
slix_poller_set_callback(SlixPoller* instance, NfcGenericCallback callback, void* context) {
|
|
furi_assert(instance);
|
|
furi_assert(callback);
|
|
|
|
instance->callback = callback;
|
|
instance->context = context;
|
|
}
|
|
|
|
static NfcCommand slix_poller_run(NfcGenericEvent event, void* context) {
|
|
furi_assert(event.protocol == NfcProtocolIso15693_3);
|
|
|
|
SlixPoller* instance = context;
|
|
furi_assert(instance);
|
|
furi_assert(instance->callback);
|
|
|
|
Iso15693_3PollerEvent* iso15693_3_event = event.event_data;
|
|
furi_assert(iso15693_3_event);
|
|
|
|
NfcCommand command = NfcCommandContinue;
|
|
|
|
if(iso15693_3_event->type == Iso15693_3PollerEventTypeReady) {
|
|
command = slix_poller_state_handler[instance->poller_state](instance);
|
|
} else if(iso15693_3_event->type == Iso15693_3PollerEventTypeError) {
|
|
instance->slix_event.type = SlixPollerEventTypeError;
|
|
command = instance->callback(instance->general_event, instance->context);
|
|
}
|
|
|
|
return command;
|
|
}
|
|
|
|
static bool slix_poller_detect(NfcGenericEvent event, void* context) {
|
|
furi_assert(event.protocol == NfcProtocolIso15693_3);
|
|
|
|
SlixPoller* instance = context;
|
|
furi_assert(instance);
|
|
|
|
const Iso15693_3PollerEvent* iso15693_3_event = event.event_data;
|
|
furi_assert(iso15693_3_event);
|
|
iso15693_3_copy(
|
|
instance->data->iso15693_3_data, iso15693_3_poller_get_data(instance->iso15693_3_poller));
|
|
|
|
bool protocol_detected = false;
|
|
|
|
if(iso15693_3_event->type == Iso15693_3PollerEventTypeReady) {
|
|
if(slix_get_type(instance->data) < SlixTypeCount) {
|
|
SlixSystemInfo system_info = {};
|
|
SlixError error = slix_poller_get_nxp_system_info(instance, &system_info);
|
|
protocol_detected = (error == SlixErrorNone);
|
|
}
|
|
}
|
|
|
|
return protocol_detected;
|
|
}
|
|
|
|
const NfcPollerBase nfc_poller_slix = {
|
|
.alloc = (NfcPollerAlloc)slix_poller_alloc,
|
|
.free = (NfcPollerFree)slix_poller_free,
|
|
.set_callback = (NfcPollerSetCallback)slix_poller_set_callback,
|
|
.run = (NfcPollerRun)slix_poller_run,
|
|
.detect = (NfcPollerDetect)slix_poller_detect,
|
|
.get_data = (NfcPollerGetData)slix_poller_get_data,
|
|
};
|