We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdee7e7 + 04287e4 commit 72c33cbCopy full SHA for 72c33cb
src/LoRa_APRS_Tracker.cpp
@@ -367,6 +367,9 @@ void loop() {
367
would lead to decrease of beacon rate in between 5 to 20 km/h. what
368
is even below the slow speed rate.
369
*/
370
+ if (curr_speed == 0) {
371
+ curr_speed = 1;
372
+ }
373
txInterval = min(BeaconMan.getCurrentBeaconConfig()->smart_beacon.slow_rate,
374
BeaconMan.getCurrentBeaconConfig()->smart_beacon.fast_speed * BeaconMan.getCurrentBeaconConfig()->smart_beacon.fast_rate / curr_speed) *
375
1000;
0 commit comments