mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Merge remote-tracking branch 'ul/dev' into yeet-lfs
This commit is contained in:
@@ -56,6 +56,7 @@
|
||||
- NFC:
|
||||
- OFW: Fix plantain balance string (by @Astrrra)
|
||||
- OFW: Now fifo size in ST25 chip is calculated properly (by @RebornedBrain)
|
||||
- OFW: Sub-GHz: Fix RPC status for ButtonRelease event (by @Skorpionm)
|
||||
- OFW: Infrared: Fix cumulative error in infrared signals (by @gsurkov)
|
||||
- OFW: Desktop: Separate callbacks for dolphin and storage subscriptions (by @skotopes)
|
||||
- OFW: FBT: Improved size validator for updater image (by @hedger)
|
||||
|
||||
@@ -59,7 +59,8 @@ bool subghz_scene_rpc_on_event(void* context, SceneManagerEvent event) {
|
||||
default: //if(SubGhzTxRxStartTxStateOk)
|
||||
result = true;
|
||||
subghz_blink_start(subghz);
|
||||
state = SubGhzRpcStateTx;
|
||||
scene_manager_set_scene_state(
|
||||
subghz->scene_manager, SubGhzSceneRpc, SubGhzRpcStateTx);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -71,7 +72,8 @@ bool subghz_scene_rpc_on_event(void* context, SceneManagerEvent event) {
|
||||
subghz_blink_stop(subghz);
|
||||
result = true;
|
||||
}
|
||||
state = SubGhzRpcStateIdle;
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user