2020-11-12 09:44:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
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
|
|
|
#include "nfc.h"
|
2020-11-12 09:44:35 +00:00
|
|
|
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
#include <furi.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal.h>
|
2020-11-12 09:44:35 +00:00
|
|
|
|
|
|
|
#include <gui/gui.h>
|
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
|
|
|
#include <gui/view.h>
|
|
|
|
#include <gui/view_dispatcher.h>
|
2021-07-12 18:56:14 +00:00
|
|
|
#include <gui/scene_manager.h>
|
2021-03-12 13:18:01 +00:00
|
|
|
#include <cli/cli.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <notification/notification_messages.h>
|
2020-11-12 09:44:35 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
#include <gui/modules/submenu.h>
|
2021-06-30 17:43:29 +00:00
|
|
|
#include <gui/modules/dialog_ex.h>
|
|
|
|
#include <gui/modules/popup.h>
|
[FL-1962, FL-2464, FL-2465, FL-2466, FL-2560, FL-2637, FL-2595] Ibutton, Infrared, LfRFID GUI fixes (#1392)
* Ibutton, Infrared, LfRFID GUI fixes
* Loading screens update
Co-authored-by: あく <alleteam@gmail.com>
2022-07-17 07:41:16 +00:00
|
|
|
#include <gui/modules/loading.h>
|
2021-06-30 17:43:29 +00:00
|
|
|
#include <gui/modules/text_input.h>
|
|
|
|
#include <gui/modules/byte_input.h>
|
2021-07-08 20:41:34 +00:00
|
|
|
#include <gui/modules/text_box.h>
|
2021-07-23 13:09:34 +00:00
|
|
|
#include <gui/modules/widget.h>
|
2020-11-12 09:44:35 +00:00
|
|
|
|
2022-07-26 15:30:49 +00:00
|
|
|
#include <lib/nfc/nfc_types.h>
|
|
|
|
#include <lib/nfc/nfc_worker.h>
|
|
|
|
#include <lib/nfc/nfc_device.h>
|
|
|
|
#include <lib/nfc/helpers/mf_classic_dict.h>
|
2022-08-17 15:08:13 +00:00
|
|
|
#include <lib/nfc/parsers/nfc_supported_card.h>
|
2022-07-26 15:30:49 +00:00
|
|
|
|
2022-03-23 22:14:34 +00:00
|
|
|
#include "views/dict_attack.h"
|
2022-09-03 12:25:36 +00:00
|
|
|
#include "views/detect_reader.h"
|
2021-07-22 06:05:07 +00:00
|
|
|
|
|
|
|
#include <nfc/scenes/nfc_scene.h>
|
2022-02-02 19:59:28 +00:00
|
|
|
#include <nfc/helpers/nfc_custom_event.h>
|
2021-06-30 17:43:29 +00:00
|
|
|
|
2022-07-04 13:09:46 +00:00
|
|
|
#include "rpc/rpc_app.h"
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
#define NFC_TEXT_STORE_SIZE 128
|
2021-06-24 08:46:37 +00:00
|
|
|
|
2022-07-04 13:09:46 +00:00
|
|
|
typedef enum {
|
|
|
|
NfcRpcStateIdle,
|
|
|
|
NfcRpcStateEmulating,
|
|
|
|
NfcRpcStateEmulated,
|
|
|
|
} NfcRpcState;
|
|
|
|
|
2022-07-04 11:16:59 +00:00
|
|
|
// Forward declaration due to circular dependency
|
|
|
|
typedef struct NfcGenerator NfcGenerator;
|
|
|
|
|
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
|
|
|
struct Nfc {
|
2021-07-22 06:05:07 +00:00
|
|
|
NfcWorker* worker;
|
|
|
|
ViewDispatcher* view_dispatcher;
|
2021-05-06 19:51:20 +00:00
|
|
|
Gui* gui;
|
2021-06-30 17:43:29 +00:00
|
|
|
NotificationApp* notifications;
|
2021-07-12 18:56:14 +00:00
|
|
|
SceneManager* scene_manager;
|
2021-11-08 21:55:06 +00:00
|
|
|
NfcDevice* dev;
|
2022-04-19 15:23:58 +00:00
|
|
|
FuriHalNfcDevData dev_edit_data;
|
2021-06-30 17:43:29 +00:00
|
|
|
|
|
|
|
char text_store[NFC_TEXT_STORE_SIZE + 1];
|
2021-07-08 20:41:34 +00:00
|
|
|
string_t text_box_store;
|
2022-07-26 15:30:49 +00:00
|
|
|
uint8_t byte_input_store[6];
|
2021-06-30 17:43:29 +00:00
|
|
|
|
2022-07-04 13:09:46 +00:00
|
|
|
void* rpc_ctx;
|
|
|
|
NfcRpcState rpc_state;
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
// Common Views
|
|
|
|
Submenu* submenu;
|
|
|
|
DialogEx* dialog_ex;
|
|
|
|
Popup* popup;
|
[FL-1962, FL-2464, FL-2465, FL-2466, FL-2560, FL-2637, FL-2595] Ibutton, Infrared, LfRFID GUI fixes (#1392)
* Ibutton, Infrared, LfRFID GUI fixes
* Loading screens update
Co-authored-by: あく <alleteam@gmail.com>
2022-07-17 07:41:16 +00:00
|
|
|
Loading* loading;
|
2021-06-30 17:43:29 +00:00
|
|
|
TextInput* text_input;
|
|
|
|
ByteInput* byte_input;
|
2021-07-08 20:41:34 +00:00
|
|
|
TextBox* text_box;
|
2021-07-23 13:09:34 +00:00
|
|
|
Widget* widget;
|
2022-03-23 22:14:34 +00:00
|
|
|
DictAttack* dict_attack;
|
2022-09-03 12:25:36 +00:00
|
|
|
DetectReader* detect_reader;
|
2022-07-04 11:16:59 +00:00
|
|
|
|
|
|
|
const NfcGenerator* generator;
|
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
|
|
|
};
|
2020-11-12 09:44:35 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
typedef enum {
|
|
|
|
NfcViewMenu,
|
2021-06-30 17:43:29 +00:00
|
|
|
NfcViewDialogEx,
|
|
|
|
NfcViewPopup,
|
[FL-1962, FL-2464, FL-2465, FL-2466, FL-2560, FL-2637, FL-2595] Ibutton, Infrared, LfRFID GUI fixes (#1392)
* Ibutton, Infrared, LfRFID GUI fixes
* Loading screens update
Co-authored-by: あく <alleteam@gmail.com>
2022-07-17 07:41:16 +00:00
|
|
|
NfcViewLoading,
|
2021-06-30 17:43:29 +00:00
|
|
|
NfcViewTextInput,
|
|
|
|
NfcViewByteInput,
|
2021-07-08 20:41:34 +00:00
|
|
|
NfcViewTextBox,
|
2021-07-22 06:05:07 +00:00
|
|
|
NfcViewWidget,
|
2022-03-23 22:14:34 +00:00
|
|
|
NfcViewDictAttack,
|
2022-09-03 12:25:36 +00:00
|
|
|
NfcViewDetectReader,
|
2021-06-24 08:46:37 +00:00
|
|
|
} NfcView;
|
2020-11-12 09:44:35 +00:00
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
Nfc* nfc_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
|
|
|
|
2021-06-24 08:46:37 +00:00
|
|
|
int32_t nfc_task(void* p);
|
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, ...);
|
|
|
|
|
|
|
|
void nfc_text_store_clear(Nfc* nfc);
|
2022-06-13 01:08:28 +00:00
|
|
|
|
|
|
|
void nfc_blink_start(Nfc* nfc);
|
|
|
|
|
|
|
|
void nfc_blink_stop(Nfc* nfc);
|
2022-07-04 13:09:46 +00:00
|
|
|
|
[FL-1962, FL-2464, FL-2465, FL-2466, FL-2560, FL-2637, FL-2595] Ibutton, Infrared, LfRFID GUI fixes (#1392)
* Ibutton, Infrared, LfRFID GUI fixes
* Loading screens update
Co-authored-by: あく <alleteam@gmail.com>
2022-07-17 07:41:16 +00:00
|
|
|
void nfc_show_loading_popup(void* context, bool show);
|