2020-11-12 09:44:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
typedef enum {
|
|
|
|
NfcDeviceNfca,
|
|
|
|
NfcDeviceNfcb,
|
|
|
|
NfcDeviceNfcf,
|
|
|
|
NfcDeviceNfcv,
|
|
|
|
} NfcDeviceType;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
NfcDeviceProtocolUnknown,
|
|
|
|
NfcDeviceProtocolEMV,
|
|
|
|
NfcDeviceProtocolMfUltralight,
|
|
|
|
} NfcProtocol;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t uid_len;
|
|
|
|
uint8_t uid[10];
|
|
|
|
uint8_t atqa[2];
|
|
|
|
uint8_t sak;
|
|
|
|
NfcDeviceType device;
|
|
|
|
NfcProtocol protocol;
|
|
|
|
} NfcDeviceData;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
NfcDeviceData nfc_data;
|
|
|
|
char name[32];
|
|
|
|
uint8_t number[8];
|
|
|
|
} NfcEmvData;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
NfcDeviceData nfc_data;
|
|
|
|
uint8_t man_block[12];
|
|
|
|
uint8_t otp[4];
|
|
|
|
} NfcMifareUlData;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
NfcDeviceData nfc_detect_data;
|
|
|
|
NfcEmvData nfc_emv_data;
|
|
|
|
NfcMifareUlData nfc_mifare_ul_data;
|
|
|
|
};
|
|
|
|
} NfcWorkerResult;
|
|
|
|
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
typedef struct NfcWorker NfcWorker;
|
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
typedef enum {
|
|
|
|
// Init states
|
|
|
|
NfcWorkerStateNone,
|
|
|
|
NfcWorkerStateBroken,
|
|
|
|
NfcWorkerStateReady,
|
|
|
|
// Main worker states
|
|
|
|
NfcWorkerStateDetect,
|
|
|
|
NfcWorkerStateEmulate,
|
|
|
|
NfcWorkerStateReadEMV,
|
|
|
|
NfcWorkerStateEmulateEMV,
|
|
|
|
NfcWorkerStateField,
|
|
|
|
NfcWorkerStateReadMfUltralight,
|
|
|
|
// Transition
|
|
|
|
NfcWorkerStateStop,
|
|
|
|
} NfcWorkerState;
|
|
|
|
|
|
|
|
typedef void (*NfcWorkerCallback)(void* context);
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
NfcWorker* nfc_worker_alloc();
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
|
|
|
|
NfcWorkerState nfc_worker_get_state(NfcWorker* nfc_worker);
|
|
|
|
|
|
|
|
ReturnCode nfc_worker_get_error(NfcWorker* nfc_worker);
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
void nfc_worker_set_emulation_params(NfcWorker* nfc_worker, NfcDeviceData* data);
|
|
|
|
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
void nfc_worker_free(NfcWorker* nfc_worker);
|
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
void nfc_worker_start(
|
|
|
|
NfcWorker* nfc_worker,
|
|
|
|
NfcWorkerState state,
|
2021-06-30 17:43:29 +00:00
|
|
|
NfcWorkerResult* result_dest,
|
2021-06-24 08:46:37 +00:00
|
|
|
NfcWorkerCallback callback,
|
|
|
|
void* context);
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
|
|
|
|
void nfc_worker_stop(NfcWorker* nfc_worker);
|