mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-26 02:14:35 +01:00
1.1.6
This commit is contained in:
parent
9c01288fd7
commit
a8f013ba7d
|
|
@ -49,5 +49,19 @@ void processPacket(String packet) {
|
|||
}
|
||||
}
|
||||
}
|
||||
void loop() {
|
||||
if (lastStationModeState == 0) {
|
||||
iGateBeaconPacket = GPS_Utils::generateBeacon();
|
||||
lastStationModeState = 1;
|
||||
String Tx = String(Config.loramodule.digirepeaterTxFreq);
|
||||
secondLine = "Rx:" + String(Tx.substring(0,3)) + "." + String(Tx.substring(3,6));
|
||||
secondLine += " Tx:" + String(Tx.substring(0,3)) + "." + String(Tx.substring(3,6));
|
||||
thirdLine = "<< DigiRepeater >>";
|
||||
}
|
||||
Utils::checkDisplayInterval();
|
||||
Utils::checkBeaconInterval();
|
||||
show_display(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, 0);
|
||||
DIGI_Utils::processPacket(LoRa_Utils::receivePacket());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
namespace DIGI_Utils {
|
||||
|
||||
void processPacket(String packet);
|
||||
void loop();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue