2020-11-12 09:44:35 +00:00
|
|
|
#include "nfc_i.h"
|
2021-05-06 19:51:20 +00:00
|
|
|
#include "api-hal-nfc.h"
|
2021-07-12 18:56:14 +00:00
|
|
|
|
|
|
|
bool nfc_custom_event_callback(void* context, uint32_t event) {
|
|
|
|
furi_assert(context);
|
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
return scene_manager_handle_custom_event(nfc->scene_manager, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nfc_navigation_event_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
return scene_manager_handle_navigation_event(nfc->scene_manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nfc_tick_event_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
scene_manager_handle_tick_event(nfc->scene_manager);
|
|
|
|
}
|
2021-05-06 19:51:20 +00:00
|
|
|
|
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
|
|
|
Nfc* nfc_alloc() {
|
|
|
|
Nfc* nfc = furi_alloc(sizeof(Nfc));
|
2020-10-18 22:09:48 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
nfc->nfc_common.worker = nfc_worker_alloc();
|
2021-06-24 08:46:37 +00:00
|
|
|
nfc->nfc_common.view_dispatcher = view_dispatcher_alloc();
|
2021-07-12 18:56:14 +00:00
|
|
|
nfc->scene_manager = scene_manager_alloc(&nfc_scene_handlers, nfc);
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_enable_queue(nfc->nfc_common.view_dispatcher);
|
2021-07-12 18:56:14 +00:00
|
|
|
view_dispatcher_set_event_callback_context(nfc->nfc_common.view_dispatcher, nfc);
|
|
|
|
view_dispatcher_set_custom_event_callback(
|
|
|
|
nfc->nfc_common.view_dispatcher, nfc_custom_event_callback);
|
|
|
|
view_dispatcher_set_navigation_event_callback(
|
|
|
|
nfc->nfc_common.view_dispatcher, nfc_navigation_event_callback);
|
|
|
|
view_dispatcher_set_tick_event_callback(
|
|
|
|
nfc->nfc_common.view_dispatcher, nfc_tick_event_callback, 300);
|
2020-11-16 15:26:34 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Open GUI record
|
|
|
|
nfc->gui = furi_record_open("gui");
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_attach_to_gui(
|
|
|
|
nfc->nfc_common.view_dispatcher, nfc->gui, ViewDispatcherTypeFullscreen);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// Open Notification record
|
|
|
|
nfc->notifications = furi_record_open("notification");
|
|
|
|
|
|
|
|
// Submenu
|
2021-05-06 19:51:20 +00:00
|
|
|
nfc->submenu = submenu_alloc();
|
2021-06-30 17:43:29 +00:00
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewMenu, submenu_get_view(nfc->submenu));
|
|
|
|
|
|
|
|
// Dialog
|
|
|
|
nfc->dialog_ex = dialog_ex_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewDialogEx, dialog_ex_get_view(nfc->dialog_ex));
|
2021-06-15 14:54:09 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// Popup
|
|
|
|
nfc->popup = popup_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewPopup, popup_get_view(nfc->popup));
|
|
|
|
|
|
|
|
// Text Input
|
|
|
|
nfc->text_input = text_input_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewTextInput, text_input_get_view(nfc->text_input));
|
|
|
|
|
|
|
|
// Byte Input
|
|
|
|
nfc->byte_input = byte_input_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewByteInput, byte_input_get_view(nfc->byte_input));
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-07-08 20:41:34 +00:00
|
|
|
// TextBox
|
|
|
|
nfc->text_box = text_box_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewTextBox, text_box_get_view(nfc->text_box));
|
|
|
|
string_init(nfc->text_box_store);
|
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Detect
|
2021-06-24 08:46:37 +00:00
|
|
|
nfc->nfc_detect = nfc_detect_alloc(&nfc->nfc_common);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewDetect, nfc_detect_get_view(nfc->nfc_detect));
|
2021-05-25 23:54:44 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Emulate
|
2021-06-24 08:46:37 +00:00
|
|
|
nfc->nfc_emulate = nfc_emulate_alloc(&nfc->nfc_common);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewEmulate, nfc_emulate_get_view(nfc->nfc_emulate));
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// EMV
|
|
|
|
nfc->nfc_emv = nfc_emv_alloc(&nfc->nfc_common);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
nfc->nfc_common.view_dispatcher, NfcViewEmv, nfc_emv_get_view(nfc->nfc_emv));
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// Mifare Ultralight
|
|
|
|
nfc->nfc_mifare_ul = nfc_mifare_ul_alloc(&nfc->nfc_common);
|
2021-06-15 14:54:09 +00:00
|
|
|
view_dispatcher_add_view(
|
2021-06-24 08:46:37 +00:00
|
|
|
nfc->nfc_common.view_dispatcher,
|
|
|
|
NfcViewMifareUl,
|
|
|
|
nfc_mifare_ul_get_view(nfc->nfc_mifare_ul));
|
2021-06-15 14:54:09 +00:00
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
// Run first scene
|
|
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneStart);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
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
|
|
|
return nfc;
|
2020-11-12 09:44:35 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
void nfc_free(Nfc* nfc) {
|
2021-06-24 08:46:37 +00:00
|
|
|
furi_assert(nfc);
|
2020-11-12 09:44:35 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// Submenu
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewMenu);
|
2021-05-06 19:51:20 +00:00
|
|
|
submenu_free(nfc->submenu);
|
2020-10-18 22:09:48 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// DialogEx
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewDialogEx);
|
|
|
|
dialog_ex_free(nfc->dialog_ex);
|
|
|
|
|
|
|
|
// Popup
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewPopup);
|
|
|
|
popup_free(nfc->popup);
|
|
|
|
|
|
|
|
// TextInput
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewTextInput);
|
|
|
|
text_input_free(nfc->text_input);
|
|
|
|
|
|
|
|
// ByteInput
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewByteInput);
|
|
|
|
byte_input_free(nfc->byte_input);
|
|
|
|
|
2021-07-08 20:41:34 +00:00
|
|
|
// TextBox
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewTextBox);
|
|
|
|
text_box_free(nfc->text_box);
|
|
|
|
string_clear(nfc->text_box_store);
|
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Detect
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewDetect);
|
|
|
|
nfc_detect_free(nfc->nfc_detect);
|
2021-05-25 23:54:44 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Emulate
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewEmulate);
|
|
|
|
nfc_emulate_free(nfc->nfc_emulate);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// EMV
|
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewEmv);
|
|
|
|
nfc_emv_free(nfc->nfc_emv);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// Mifare Ultralight
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_remove_view(nfc->nfc_common.view_dispatcher, NfcViewMifareUl);
|
|
|
|
nfc_mifare_ul_free(nfc->nfc_mifare_ul);
|
2021-06-15 14:54:09 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// Worker
|
|
|
|
nfc_worker_stop(nfc->nfc_common.worker);
|
|
|
|
nfc_worker_free(nfc->nfc_common.worker);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// View Dispatcher
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_free(nfc->nfc_common.view_dispatcher);
|
2021-05-06 19:51:20 +00:00
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
// Scene Manager
|
|
|
|
scene_manager_free(nfc->scene_manager);
|
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
// GUI
|
2021-05-06 19:51:20 +00:00
|
|
|
furi_record_close("gui");
|
|
|
|
nfc->gui = NULL;
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// Notifications
|
|
|
|
furi_record_close("notification");
|
|
|
|
nfc->notifications = NULL;
|
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
free(nfc);
|
2020-10-18 22:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
int32_t nfc_task(void* p) {
|
2020-10-18 22:55:41 +00:00
|
|
|
Nfc* nfc = nfc_alloc();
|
2020-10-18 22:09:48 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
view_dispatcher_run(nfc->nfc_common.view_dispatcher);
|
2021-06-15 14:54:09 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
nfc_free(nfc);
|
2021-02-12 17:24:34 +00:00
|
|
|
|
|
|
|
return 0;
|
2020-10-18 22:09:48 +00:00
|
|
|
}
|
2021-06-30 17:43:29 +00:00
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
void nfc_text_store_set(Nfc* nfc, const char* text, ...) {
|
2021-06-30 17:43:29 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, text);
|
|
|
|
|
|
|
|
vsnprintf(nfc->text_store, sizeof(nfc->text_store), text, args);
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
}
|
2021-07-12 18:56:14 +00:00
|
|
|
|
|
|
|
void nfc_text_store_clear(Nfc* nfc) {
|
|
|
|
memset(nfc->text_store, 0, sizeof(nfc->text_store));
|
|
|
|
}
|