mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Fix led blink on decode raw > signal info
This commit is contained in:
@@ -127,7 +127,8 @@ void subghz_scene_receiver_info_on_enter(void* context) {
|
||||
|
||||
subghz_scene_receiver_info_draw_widget(subghz);
|
||||
|
||||
if(!subghz_history_full(subghz->history)) {
|
||||
if(!subghz_history_full(subghz->history) &&
|
||||
!scene_manager_has_previous_scene(subghz->scene_manager, SubGhzSceneDecodeRAW)) {
|
||||
subghz->state_notifications = SubGhzNotificationStateRx;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -208,7 +208,6 @@ bool subghz_history_get_text_space_left(
|
||||
if(output != NULL) {
|
||||
if(sats == 0) {
|
||||
furi_string_printf(output, "%02u", instance->last_index_write);
|
||||
return false;
|
||||
} else {
|
||||
if(furi_hal_rtc_get_timestamp() % 2) {
|
||||
furi_string_printf(output, "%02u", instance->last_index_write);
|
||||
|
||||
Reference in New Issue
Block a user