diff --git a/applications/clock_app/clock_app.c b/applications/clock_app/clock_app.c index 1d4c3667c..41f02e4d1 100644 --- a/applications/clock_app/clock_app.c +++ b/applications/clock_app/clock_app.c @@ -401,6 +401,6 @@ int32_t clock_app(void* p) { view_port_free(view_port); furi_message_queue_free(event_queue); delete_mutex(&state_mutex); - + return 0; } \ No newline at end of file diff --git a/applications/subghz/scenes/subghz_scene_receiver_info.c b/applications/subghz/scenes/subghz_scene_receiver_info.c index 9218ed904..58183b323 100644 --- a/applications/subghz/scenes/subghz_scene_receiver_info.c +++ b/applications/subghz/scenes/subghz_scene_receiver_info.c @@ -45,7 +45,6 @@ static bool subghz_scene_receiver_info_update_parser(void* context) { } void subghz_scene_receiver_info_draw_widget(SubGhz* subghz) { - if(subghz_scene_receiver_info_update_parser(subghz)) { string_t frequency_str; string_t modulation_str; @@ -146,10 +145,10 @@ bool subghz_scene_receiver_info_on_event(void* context, SceneManagerEvent event) } else if(event.event == SubGhzCustomEventSceneReceiverInfoTxStop) { //CC1101 Stop Tx -> Start RX subghz->state_notifications = SubGhzNotificationStateIDLE; - + widget_reset(subghz->widget); subghz_scene_receiver_info_draw_widget(subghz); - + if(subghz->txrx->txrx_state == SubGhzTxRxStateTx) { subghz_tx_stop(subghz); } diff --git a/applications/unirfremix/unirfremix_app.c b/applications/unirfremix/unirfremix_app.c index 6119529ba..657adb810 100644 --- a/applications/unirfremix/unirfremix_app.c +++ b/applications/unirfremix/unirfremix_app.c @@ -958,7 +958,8 @@ int32_t unirfremix_app(void* p) { //input detect loop start InputEvent input; while(1) { - furi_check(furi_message_queue_get(app->input_queue, &input, FuriWaitForever) == FuriStatusOk); + furi_check( + furi_message_queue_get(app->input_queue, &input, FuriWaitForever) == FuriStatusOk); FURI_LOG_I( TAG, "key: %s type: %s", @@ -1093,7 +1094,8 @@ int32_t unirfremix_app(void* p) { InputEvent input; while(1) { - furi_check(furi_message_queue_get(app->input_queue, &input, FuriWaitForever) == FuriStatusOk); + furi_check( + furi_message_queue_get(app->input_queue, &input, FuriWaitForever) == FuriStatusOk); FURI_LOG_I( TAG, "key: %s type: %s",