Fix custom button counter bug

This commit is contained in:
MX 2023-02-26 01:09:08 +03:00
parent 098d6944c4
commit f676072e15
No known key found for this signature in database
GPG key ID: 7CCC66B7DBDD1C83

View file

@ -93,6 +93,7 @@ bool subghz_scene_transmitter_on_event(void* context, SceneManagerEvent event) {
if(keeloq_get_custom_btn() != 0) { if(keeloq_get_custom_btn() != 0) {
keeloq_set_btn(0); keeloq_set_btn(0);
alutech_set_btn(0); alutech_set_btn(0);
furi_hal_subghz_set_rolling_counter_mult(0);
// Calling restore! // Calling restore!
if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) { if(subghz->txrx->txrx_state == SubGhzTxRxStateRx) {
subghz_rx_end(subghz); subghz_rx_end(subghz);
@ -105,6 +106,7 @@ bool subghz_scene_transmitter_on_event(void* context, SceneManagerEvent event) {
} }
subghz_tx_stop(subghz); subghz_tx_stop(subghz);
subghz_sleep(subghz); subghz_sleep(subghz);
furi_hal_subghz_set_rolling_counter_mult(1);
} }
return true; return true;
} else if(event.event == SubGhzCustomEventViewTransmitterBack) { } else if(event.event == SubGhzCustomEventViewTransmitterBack) {