mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-05-18 07:16:18 +02:00
digirepeater Beacon fixed
This commit is contained in:
+1
-1
@@ -186,7 +186,7 @@ namespace Utils {
|
||||
|
||||
void checkBeaconInterval() {
|
||||
uint32_t lastTx = millis() - lastBeaconTx;
|
||||
if (passcodeValid && (lastBeaconTx == 0 || lastTx >= Config.beacon.interval * 60 * 1000)) {
|
||||
if (((Config.aprs_is.active && passcodeValid) || Config.digi.mode != 0) && (lastBeaconTx == 0 || lastTx >= Config.beacon.interval * 60 * 1000)) {
|
||||
beaconUpdate = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user