b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
80 lines
2.3 KiB
C
80 lines
2.3 KiB
C
#include "../lfrfid_i.h"
|
|
|
|
typedef enum {
|
|
SubmenuIndexASK,
|
|
SubmenuIndexPSK,
|
|
SubmenuIndexRAW,
|
|
} SubmenuIndex;
|
|
|
|
static void lfrfid_scene_extra_actions_submenu_callback(void* context, uint32_t index) {
|
|
LfRfid* app = context;
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, index);
|
|
}
|
|
|
|
void lfrfid_scene_extra_actions_on_enter(void* context) {
|
|
LfRfid* app = context;
|
|
Submenu* submenu = app->submenu;
|
|
|
|
submenu_add_item(
|
|
submenu,
|
|
"Read ASK (Animal, Ordinary Card)",
|
|
SubmenuIndexASK,
|
|
lfrfid_scene_extra_actions_submenu_callback,
|
|
app);
|
|
submenu_add_item(
|
|
submenu,
|
|
"Read PSK (Indala)",
|
|
SubmenuIndexPSK,
|
|
lfrfid_scene_extra_actions_submenu_callback,
|
|
app);
|
|
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) {
|
|
submenu_add_item(
|
|
submenu,
|
|
"Read RAW RFID data",
|
|
SubmenuIndexRAW,
|
|
lfrfid_scene_extra_actions_submenu_callback,
|
|
app);
|
|
}
|
|
|
|
submenu_set_selected_item(
|
|
submenu, scene_manager_get_scene_state(app->scene_manager, LfRfidSceneExtraActions));
|
|
|
|
// clear key
|
|
string_reset(app->file_name);
|
|
app->protocol_id = PROTOCOL_NO;
|
|
app->read_type = LFRFIDWorkerReadTypeAuto;
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewSubmenu);
|
|
}
|
|
|
|
bool lfrfid_scene_extra_actions_on_event(void* context, SceneManagerEvent event) {
|
|
LfRfid* app = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == SubmenuIndexASK) {
|
|
app->read_type = LFRFIDWorkerReadTypeASKOnly;
|
|
scene_manager_next_scene(app->scene_manager, LfRfidSceneRead);
|
|
consumed = true;
|
|
} else if(event.event == SubmenuIndexPSK) {
|
|
app->read_type = LFRFIDWorkerReadTypePSKOnly;
|
|
scene_manager_next_scene(app->scene_manager, LfRfidSceneRead);
|
|
consumed = true;
|
|
} else if(event.event == SubmenuIndexRAW) {
|
|
scene_manager_next_scene(app->scene_manager, LfRfidSceneRawName);
|
|
consumed = true;
|
|
}
|
|
scene_manager_set_scene_state(app->scene_manager, LfRfidSceneExtraActions, event.event);
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void lfrfid_scene_extra_actions_on_exit(void* context) {
|
|
LfRfid* app = context;
|
|
|
|
submenu_reset(app->submenu);
|
|
}
|