All strange time constants are now frequency multipliers (#834)

This commit is contained in:
Oleg Schwann
2021-11-22 21:49:57 +03:00
committed by GitHub
parent efded63bcb
commit 949079cb74
6 changed files with 7 additions and 7 deletions

View File

@@ -152,7 +152,7 @@ void subghz_test_carrier_enter(void* context) {
furi_hal_subghz_rx();
osTimerStart(subghz_test_carrier->timer, 1024 / 4);
osTimerStart(subghz_test_carrier->timer, osKernelGetTickFreq() / 4);
}
void subghz_test_carrier_exit(void* context) {

View File

@@ -198,7 +198,7 @@ void subghz_test_packet_enter(void* context) {
furi_hal_subghz_start_async_rx(subghz_test_packet_rx_callback, instance);
osTimerStart(instance->timer, 1024 / 4);
osTimerStart(instance->timer, osKernelGetTickFreq() / 4);
}
void subghz_test_packet_exit(void* context) {