mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-03 17:59:16 +00:00
Merge pull request #437 from gid9798/using_scene_manager
Using scene manager function
This commit is contained in:
commit
f693d4a8de
4 changed files with 2 additions and 7 deletions
|
@ -62,7 +62,8 @@ void subghz_scene_save_name_on_enter(void* context) {
|
|||
if(subghz->txrx->decoder_result != 0x0) {
|
||||
if(subghz->txrx->decoder_result != NULL) {
|
||||
if(strlen(subghz->txrx->decoder_result->protocol->name) != 0) {
|
||||
if(subghz->from_add_manually) {
|
||||
if(scene_manager_has_previous_scene(
|
||||
subghz->scene_manager, SubGhzSceneSetType)) {
|
||||
subghz_scene_save_name_get_timefilename(file_name, "S", true);
|
||||
} else {
|
||||
subghz_scene_save_name_get_timefilename(
|
||||
|
@ -198,8 +199,6 @@ bool subghz_scene_save_name_on_event(void* context, SceneManagerEvent event) {
|
|||
void subghz_scene_save_name_on_exit(void* context) {
|
||||
SubGhz* subghz = context;
|
||||
|
||||
subghz->from_add_manually = false;
|
||||
|
||||
// Clear validator
|
||||
void* validator_context = text_input_get_validator_callback_context(subghz->text_input);
|
||||
text_input_set_validator(subghz->text_input, NULL, NULL);
|
||||
|
|
|
@ -105,8 +105,6 @@ void subghz_scene_set_type_submenu_callback(void* context, uint32_t index) {
|
|||
void subghz_scene_set_type_on_enter(void* context) {
|
||||
SubGhz* subghz = context;
|
||||
|
||||
subghz->from_add_manually = true;
|
||||
|
||||
submenu_add_item(
|
||||
subghz->submenu,
|
||||
"Faac SLH 868MHz",
|
||||
|
|
|
@ -72,7 +72,6 @@ SubGhz* subghz_alloc(bool alloc_for_tx_only) {
|
|||
|
||||
subghz->in_decoder_scene = false;
|
||||
subghz->in_decoder_scene_skip = false;
|
||||
subghz->from_add_manually = false;
|
||||
|
||||
// View Dispatcher
|
||||
subghz->view_dispatcher = view_dispatcher_alloc();
|
||||
|
|
|
@ -127,7 +127,6 @@ struct SubGhz {
|
|||
|
||||
bool in_decoder_scene;
|
||||
bool in_decoder_scene_skip;
|
||||
bool from_add_manually;
|
||||
|
||||
SubGhzDecodeRawState decode_raw_state;
|
||||
SubGhzFileEncoderWorker* decode_raw_file_worker_encoder;
|
||||
|
|
Loading…
Reference in a new issue