mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 19:28:36 -07:00
* Show error screen if corrupted filed has been loaded * Added rpc error codes and error processing to NFC * Made iButton scene on_enter handler clear to prevent showing scene before file is loaded * Added rpc error codes and error processing to iButton * Made lfRfid scene on_enter handler clear to prevent showing scene before file is loaded * Added rpc error codes and error processing to lfRfid * Made SubGHz scene on_enter handler clear to prevent showing scene before file is loaded. Also moved file_name_tmp formatting logic to a separate function * Now function returns loading status and starts rx only if load succeeded * Added show error logic on tx_button start * Introduced rpc error codes for infrared * Adjusted rpc scene logic to show scene only when loading is fine * Added new list of rpc errors which are common within several applications * Removed same enums from apps * Same rpc error in different apps replaced with common value from rpc error code list * SubGHz error codes now start from RpcAppSystemErrorCodesReserved value * Infrared error codes now start from RpcAppSystemErrorCodesReserved value * Removed unused enum * Now all rpc error codes are more generalized and can be used among all apps without any specific enums * Removed specific error codes, now rpc error codes are used instead * RPC: no plurals in enums Co-authored-by: あく <alleteam@gmail.com>
121 lines
5.0 KiB
C
121 lines
5.0 KiB
C
#include "../subghz_i.h"
|
|
|
|
typedef enum {
|
|
SubGhzRpcStateIdle,
|
|
SubGhzRpcStateLoaded,
|
|
SubGhzRpcStateTx,
|
|
} SubGhzRpcState;
|
|
|
|
void subghz_scene_rpc_on_enter(void* context) {
|
|
SubGhz* subghz = context;
|
|
scene_manager_set_scene_state(subghz->scene_manager, SubGhzSceneRpc, SubGhzRpcStateIdle);
|
|
}
|
|
|
|
static void subghz_format_file_name_tmp(SubGhz* subghz) {
|
|
FuriString* file_name;
|
|
file_name = furi_string_alloc();
|
|
path_extract_filename(subghz->file_path, file_name, true);
|
|
snprintf(
|
|
subghz->file_name_tmp, SUBGHZ_MAX_LEN_NAME, "loaded\n%s", furi_string_get_cstr(file_name));
|
|
furi_string_free(file_name);
|
|
}
|
|
|
|
static void subghz_scene_rpc_emulation_show(SubGhz* subghz) {
|
|
Popup* popup = subghz->popup;
|
|
|
|
subghz_format_file_name_tmp(subghz);
|
|
popup_set_header(popup, "Sub-GHz", 89, 42, AlignCenter, AlignBottom);
|
|
popup_set_icon(popup, 0, 12, &I_RFIDDolphinSend_97x61);
|
|
popup_set_text(popup, subghz->file_name_tmp, 89, 44, AlignCenter, AlignTop);
|
|
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdPopup);
|
|
|
|
notification_message(subghz->notifications, &sequence_display_backlight_on);
|
|
}
|
|
|
|
bool subghz_scene_rpc_on_event(void* context, SceneManagerEvent event) {
|
|
SubGhz* subghz = context;
|
|
bool consumed = false;
|
|
SubGhzRpcState state = scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneRpc);
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
consumed = true;
|
|
if(event.event == SubGhzCustomEventSceneExit) {
|
|
scene_manager_stop(subghz->scene_manager);
|
|
view_dispatcher_stop(subghz->view_dispatcher);
|
|
rpc_system_app_confirm(subghz->rpc_ctx, true);
|
|
} else if(event.event == SubGhzCustomEventSceneRpcSessionClose) {
|
|
scene_manager_stop(subghz->scene_manager);
|
|
view_dispatcher_stop(subghz->view_dispatcher);
|
|
} else if(event.event == SubGhzCustomEventSceneRpcButtonPress) {
|
|
bool result = false;
|
|
if(state == SubGhzRpcStateLoaded) {
|
|
switch(
|
|
subghz_txrx_tx_start(subghz->txrx, subghz_txrx_get_fff_data(subghz->txrx))) {
|
|
case SubGhzTxRxStartTxStateErrorOnlyRx:
|
|
rpc_system_app_set_error_code(
|
|
subghz->rpc_ctx, RpcAppSystemErrorCodeRegionLock);
|
|
rpc_system_app_set_error_text(
|
|
subghz->rpc_ctx,
|
|
"Transmission on this frequency is restricted in your region");
|
|
break;
|
|
case SubGhzTxRxStartTxStateErrorParserOthers:
|
|
rpc_system_app_set_error_code(
|
|
subghz->rpc_ctx, RpcAppSystemErrorCodeInternalParse);
|
|
rpc_system_app_set_error_text(
|
|
subghz->rpc_ctx, "Error in protocol parameters description");
|
|
break;
|
|
|
|
default: //if(SubGhzTxRxStartTxStateOk)
|
|
result = true;
|
|
subghz_blink_start(subghz);
|
|
scene_manager_set_scene_state(
|
|
subghz->scene_manager, SubGhzSceneRpc, SubGhzRpcStateTx);
|
|
break;
|
|
}
|
|
}
|
|
rpc_system_app_confirm(subghz->rpc_ctx, result);
|
|
} else if(event.event == SubGhzCustomEventSceneRpcButtonRelease) {
|
|
bool result = false;
|
|
if(state == SubGhzRpcStateTx) {
|
|
subghz_txrx_stop(subghz->txrx);
|
|
subghz_blink_stop(subghz);
|
|
result = true;
|
|
}
|
|
scene_manager_set_scene_state(
|
|
subghz->scene_manager, SubGhzSceneRpc, SubGhzRpcStateIdle);
|
|
rpc_system_app_confirm(subghz->rpc_ctx, result);
|
|
} else if(event.event == SubGhzCustomEventSceneRpcLoad) {
|
|
bool result = false;
|
|
if(state == SubGhzRpcStateIdle) {
|
|
if(subghz_key_load(subghz, furi_string_get_cstr(subghz->file_path), false)) {
|
|
subghz_scene_rpc_emulation_show(subghz);
|
|
scene_manager_set_scene_state(
|
|
subghz->scene_manager, SubGhzSceneRpc, SubGhzRpcStateLoaded);
|
|
result = true;
|
|
} else {
|
|
rpc_system_app_set_error_code(subghz->rpc_ctx, RpcAppSystemErrorCodeParseFile);
|
|
rpc_system_app_set_error_text(subghz->rpc_ctx, "Cannot parse file");
|
|
}
|
|
}
|
|
rpc_system_app_confirm(subghz->rpc_ctx, result);
|
|
}
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void subghz_scene_rpc_on_exit(void* context) {
|
|
SubGhz* subghz = context;
|
|
SubGhzRpcState state = scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneRpc);
|
|
if(state == SubGhzRpcStateTx) {
|
|
subghz_txrx_stop(subghz->txrx);
|
|
subghz_blink_stop(subghz);
|
|
}
|
|
|
|
Popup* popup = subghz->popup;
|
|
|
|
popup_set_header(popup, NULL, 0, 0, AlignCenter, AlignBottom);
|
|
popup_set_text(popup, NULL, 0, 0, AlignCenter, AlignTop);
|
|
popup_set_icon(popup, 0, 0, NULL);
|
|
}
|