2023-05-18 10:48:25 +00:00
|
|
|
#include "subghz_remote_app_i.h"
|
2022-08-01 20:20:04 +00:00
|
|
|
|
2022-10-18 16:51:44 +00:00
|
|
|
#include <lib/subghz/protocols/protocol_items.h>
|
2022-08-23 18:47:54 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
static bool subghz_remote_app_custom_event_callback(void* context, uint32_t event) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubGhzRemoteApp* app = context;
|
|
|
|
return scene_manager_handle_custom_event(app->scene_manager, event);
|
2022-06-01 18:40:20 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
static bool subghz_remote_app_back_event_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubGhzRemoteApp* app = context;
|
|
|
|
return scene_manager_handle_back_event(app->scene_manager);
|
2022-06-01 18:40:20 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
static void subghz_remote_app_tick_event_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubGhzRemoteApp* app = context;
|
|
|
|
scene_manager_handle_tick_event(app->scene_manager);
|
2022-08-11 23:55:19 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
SubGhzRemoteApp* subghz_remote_app_alloc() {
|
|
|
|
SubGhzRemoteApp* app = malloc(sizeof(SubGhzRemoteApp));
|
2022-08-25 00:21:44 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Enable power for External CC1101 if it is connected
|
|
|
|
furi_hal_subghz_enable_ext_power();
|
|
|
|
// Auto switch to internal radio if external radio is not available
|
|
|
|
furi_delay_ms(15);
|
|
|
|
if(!furi_hal_subghz_check_radio()) {
|
|
|
|
furi_hal_subghz_select_radio_type(SubGhzRadioInternal);
|
|
|
|
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);
|
2022-08-24 20:14:33 +00:00
|
|
|
}
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
furi_hal_power_suppress_charge_enter();
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
app->file_path = furi_string_alloc();
|
2023-05-18 16:20:34 +00:00
|
|
|
furi_string_set(app->file_path, SUBREM_APP_FOLDER);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// GUI
|
|
|
|
app->gui = furi_record_open(RECORD_GUI);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// View Dispatcher
|
|
|
|
app->view_dispatcher = view_dispatcher_alloc();
|
|
|
|
app->scene_manager = scene_manager_alloc(&subrem_scene_handlers, app);
|
|
|
|
view_dispatcher_enable_queue(app->view_dispatcher);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
view_dispatcher_set_event_callback_context(app->view_dispatcher, app);
|
|
|
|
view_dispatcher_set_custom_event_callback(
|
|
|
|
app->view_dispatcher, subghz_remote_app_custom_event_callback);
|
|
|
|
view_dispatcher_set_navigation_event_callback(
|
|
|
|
app->view_dispatcher, subghz_remote_app_back_event_callback);
|
|
|
|
view_dispatcher_set_tick_event_callback(
|
|
|
|
app->view_dispatcher, subghz_remote_app_tick_event_callback, 100);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Open Notification record
|
|
|
|
app->notifications = furi_record_open(RECORD_NOTIFICATION);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// SubMenu
|
|
|
|
app->submenu = submenu_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
app->view_dispatcher, SubRemViewSubmenu, submenu_get_view(app->submenu));
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
//Dialog
|
|
|
|
app->dialogs = furi_record_open(RECORD_DIALOGS);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Remote view
|
|
|
|
app->subrem_remote_view = subrem_view_remote_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
app->view_dispatcher,
|
|
|
|
SubRemViewIDRemote,
|
|
|
|
subrem_view_remote_get_view(app->subrem_remote_view));
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
for(uint8_t i = 0; i < SubRemSubKeyNameMaxCount; i++) {
|
|
|
|
app->subs_preset[i] = subrem_sub_file_preset_alloc();
|
2022-06-01 18:40:20 +00:00
|
|
|
}
|
|
|
|
|
2022-08-14 21:26:49 +00:00
|
|
|
app->setting = subghz_setting_alloc();
|
2022-12-10 21:42:26 +00:00
|
|
|
subghz_setting_load(app->setting, EXT_PATH("subghz/assets/setting_user"));
|
2022-08-14 21:26:49 +00:00
|
|
|
|
2022-08-23 12:48:08 +00:00
|
|
|
app->environment = subghz_environment_alloc();
|
2023-05-18 10:48:25 +00:00
|
|
|
|
2022-08-23 12:48:08 +00:00
|
|
|
subghz_environment_load_keystore(app->environment, EXT_PATH("subghz/assets/keeloq_mfcodes"));
|
|
|
|
subghz_environment_load_keystore(
|
|
|
|
app->environment, EXT_PATH("subghz/assets/keeloq_mfcodes_user"));
|
|
|
|
subghz_environment_set_came_atomo_rainbow_table_file_name(
|
|
|
|
app->environment, EXT_PATH("subghz/assets/came_atomo"));
|
2023-04-18 19:16:29 +00:00
|
|
|
subghz_environment_set_alutech_at_4n_rainbow_table_file_name(
|
|
|
|
app->environment, EXT_PATH("subghz/assets/alutech_at_4n"));
|
2023-05-18 10:48:25 +00:00
|
|
|
subghz_environment_set_nice_flor_s_rainbow_table_file_name(
|
|
|
|
app->environment, EXT_PATH("subghz/assets/nice_flor_s"));
|
2022-10-18 16:51:44 +00:00
|
|
|
subghz_environment_set_protocol_registry(app->environment, (void*)&subghz_protocol_registry);
|
2022-08-23 12:48:08 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
app->receiver = subghz_receiver_alloc_init(app->environment);
|
2022-08-24 20:14:33 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
app->tx_running = false;
|
2022-08-24 20:14:33 +00:00
|
|
|
|
2023-05-18 16:20:34 +00:00
|
|
|
#ifdef SUBREM_LIGHT
|
|
|
|
scene_manager_next_scene(app->scene_manager, SubRemSceneOpenMapFile);
|
|
|
|
#else
|
2023-05-18 10:48:25 +00:00
|
|
|
scene_manager_next_scene(app->scene_manager, SubRemSceneStart);
|
2023-05-18 16:20:34 +00:00
|
|
|
#endif
|
2022-08-24 12:28:27 +00:00
|
|
|
|
2022-06-01 18:40:20 +00:00
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
void subghz_remote_app_free(SubGhzRemoteApp* app) {
|
|
|
|
furi_assert(app);
|
|
|
|
|
2022-09-19 02:22:50 +00:00
|
|
|
furi_hal_power_suppress_charge_exit();
|
|
|
|
|
2023-03-06 07:08:59 +00:00
|
|
|
// Disable power for External CC1101 if it was enabled and module is connected
|
|
|
|
furi_hal_subghz_disable_ext_power();
|
2023-04-23 22:56:43 +00:00
|
|
|
// Reinit SPI handles for internal radio / nfc
|
|
|
|
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);
|
2023-03-06 07:08:59 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Submenu
|
|
|
|
view_dispatcher_remove_view(app->view_dispatcher, SubRemViewSubmenu);
|
|
|
|
submenu_free(app->submenu);
|
2022-08-01 20:20:04 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
//Dialog
|
|
|
|
furi_record_close(RECORD_DIALOGS);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Remote view
|
|
|
|
view_dispatcher_remove_view(app->view_dispatcher, SubRemViewIDRemote);
|
|
|
|
subrem_view_remote_free(app->subrem_remote_view);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
subghz_receiver_free(app->receiver);
|
|
|
|
subghz_environment_free(app->environment);
|
|
|
|
subghz_setting_free(app->setting);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
for(uint8_t i = 0; i < SubRemSubKeyNameMaxCount; i++) {
|
|
|
|
subrem_sub_file_preset_free(app->subs_preset[i]);
|
2022-09-19 02:22:50 +00:00
|
|
|
}
|
2022-08-23 12:48:08 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
// Notifications
|
2022-08-24 12:28:27 +00:00
|
|
|
furi_record_close(RECORD_NOTIFICATION);
|
2023-05-18 10:48:25 +00:00
|
|
|
app->notifications = NULL;
|
|
|
|
|
|
|
|
// Close records
|
|
|
|
furi_record_close(RECORD_GUI);
|
|
|
|
|
|
|
|
// Path strings
|
|
|
|
furi_string_free(app->file_path);
|
2022-08-24 12:28:27 +00:00
|
|
|
|
2022-06-01 18:40:20 +00:00
|
|
|
free(app);
|
|
|
|
}
|
|
|
|
|
2023-03-06 07:32:01 +00:00
|
|
|
int32_t subghz_remote_app(void* p) {
|
2022-06-01 18:40:20 +00:00
|
|
|
UNUSED(p);
|
2023-05-18 10:48:25 +00:00
|
|
|
SubGhzRemoteApp* subghz_remote_app = subghz_remote_app_alloc();
|
2022-08-01 20:20:04 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
furi_string_set(subghz_remote_app->file_path, SUBREM_APP_FOLDER);
|
2022-09-14 18:04:04 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
view_dispatcher_run(subghz_remote_app->view_dispatcher);
|
2022-06-01 18:40:20 +00:00
|
|
|
|
2023-05-18 10:48:25 +00:00
|
|
|
subghz_remote_app_free(subghz_remote_app);
|
2022-08-24 12:28:27 +00:00
|
|
|
|
2022-06-01 18:40:20 +00:00
|
|
|
return 0;
|
2023-02-20 15:55:53 +00:00
|
|
|
}
|