fix division by zero

pull/132/head
Peter Buchegger 2023-11-25 19:17:34 +01:00
rodzic cdee7e75cd
commit 04287e4e1f
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -367,6 +367,9 @@ void loop() {
would lead to decrease of beacon rate in between 5 to 20 km/h. what
is even below the slow speed rate.
*/
if (curr_speed == 0) {
curr_speed = 1;
}
txInterval = min(BeaconMan.getCurrentBeaconConfig()->smart_beacon.slow_rate,
BeaconMan.getCurrentBeaconConfig()->smart_beacon.fast_speed * BeaconMan.getCurrentBeaconConfig()->smart_beacon.fast_rate / curr_speed) *
1000;