mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
160 lines
4.9 KiB
C
160 lines
4.9 KiB
C
#include "subghz_remote_app_i.h"
|
|
|
|
#include <lib/subghz/protocols/protocol_items.h>
|
|
|
|
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);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
static void subghz_remote_app_tick_event_callback(void* context) {
|
|
furi_assert(context);
|
|
SubGhzRemoteApp* app = context;
|
|
scene_manager_handle_tick_event(app->scene_manager);
|
|
}
|
|
|
|
SubGhzRemoteApp* subghz_remote_app_alloc() {
|
|
SubGhzRemoteApp* app = malloc(sizeof(SubGhzRemoteApp));
|
|
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
storage_common_migrate(storage, EXT_PATH("unirf"), SUBREM_APP_FOLDER);
|
|
|
|
if(!storage_simply_mkdir(storage, SUBREM_APP_FOLDER)) {
|
|
//FURI_LOG_E(TAG, "Could not create folder %s", SUBREM_APP_FOLDER);
|
|
}
|
|
furi_record_close(RECORD_STORAGE);
|
|
|
|
// 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);
|
|
}
|
|
|
|
furi_hal_power_suppress_charge_enter();
|
|
|
|
app->file_path = furi_string_alloc();
|
|
furi_string_set(app->file_path, SUBREM_APP_FOLDER);
|
|
|
|
// GUI
|
|
app->gui = furi_record_open(RECORD_GUI);
|
|
|
|
// 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);
|
|
|
|
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);
|
|
|
|
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
|
|
|
|
// Open Notification record
|
|
app->notifications = furi_record_open(RECORD_NOTIFICATION);
|
|
|
|
// SubMenu
|
|
app->submenu = submenu_alloc();
|
|
view_dispatcher_add_view(
|
|
app->view_dispatcher, SubRemViewSubmenu, submenu_get_view(app->submenu));
|
|
|
|
//Dialog
|
|
app->dialogs = furi_record_open(RECORD_DIALOGS);
|
|
|
|
// 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));
|
|
|
|
app->map_preset = malloc(sizeof(SubRemMapPreset));
|
|
for(uint8_t i = 0; i < SubRemSubKeyNameMaxCount; i++) {
|
|
app->map_preset->subs_preset[i] = subrem_sub_file_preset_alloc();
|
|
}
|
|
|
|
app->txrx = subghz_txrx_alloc();
|
|
|
|
subghz_txrx_set_need_save_callback(app->txrx, subrem_save_active_sub, app);
|
|
|
|
app->tx_running = false;
|
|
|
|
#ifdef SUBREM_LIGHT
|
|
scene_manager_next_scene(app->scene_manager, SubRemSceneOpenMapFile);
|
|
#else
|
|
scene_manager_next_scene(app->scene_manager, SubRemSceneStart);
|
|
#endif
|
|
|
|
return app;
|
|
}
|
|
|
|
void subghz_remote_app_free(SubGhzRemoteApp* app) {
|
|
furi_assert(app);
|
|
|
|
furi_hal_power_suppress_charge_exit();
|
|
|
|
// Disable power for External CC1101 if it was enabled and module is connected
|
|
furi_hal_subghz_disable_ext_power();
|
|
// Reinit SPI handles for internal radio / nfc
|
|
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);
|
|
|
|
// Submenu
|
|
view_dispatcher_remove_view(app->view_dispatcher, SubRemViewSubmenu);
|
|
submenu_free(app->submenu);
|
|
|
|
//Dialog
|
|
furi_record_close(RECORD_DIALOGS);
|
|
|
|
// Remote view
|
|
view_dispatcher_remove_view(app->view_dispatcher, SubRemViewIDRemote);
|
|
subrem_view_remote_free(app->subrem_remote_view);
|
|
|
|
scene_manager_free(app->scene_manager);
|
|
view_dispatcher_free(app->view_dispatcher);
|
|
|
|
subghz_txrx_free(app->txrx);
|
|
|
|
for(uint8_t i = 0; i < SubRemSubKeyNameMaxCount; i++) {
|
|
subrem_sub_file_preset_free(app->map_preset->subs_preset[i]);
|
|
}
|
|
free(app->map_preset);
|
|
|
|
// Notifications
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
app->notifications = NULL;
|
|
|
|
// Close records
|
|
furi_record_close(RECORD_GUI);
|
|
|
|
// Path strings
|
|
furi_string_free(app->file_path);
|
|
|
|
free(app);
|
|
}
|
|
|
|
int32_t subghz_remote_app(void* p) {
|
|
UNUSED(p);
|
|
SubGhzRemoteApp* subghz_remote_app = subghz_remote_app_alloc();
|
|
|
|
furi_string_set(subghz_remote_app->file_path, SUBREM_APP_FOLDER);
|
|
|
|
view_dispatcher_run(subghz_remote_app->view_dispatcher);
|
|
|
|
subghz_remote_app_free(subghz_remote_app);
|
|
|
|
return 0;
|
|
}
|