eso
This commit is contained in:
parent
52f7bd1844
commit
9a76249fe5
|
|
@ -49,12 +49,7 @@ void setup() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
if (stationMode==3 || stationMode==4) { // DigiRepeater (3 RxFreq=TxFreq / 4 RxFreq!=TxFreq)
|
if (stationMode==1 || stationMode==2 ) { // iGate (1 Only Rx / 2 Rx+Tx)
|
||||||
utils::checkDisplayInterval();
|
|
||||||
utils::checkBeaconInterval();
|
|
||||||
show_display(firstLine, secondLine, thirdLine, fourthLine, 0);
|
|
||||||
DIGI_Utils::processPacket(LoRa_Utils::receivePacket());
|
|
||||||
} else if (stationMode==1 || stationMode==2 ) { // iGate (1 Only Rx / 2 Rx+Tx)
|
|
||||||
WIFI_Utils::checkWiFi();
|
WIFI_Utils::checkWiFi();
|
||||||
if (!espClient.connected()) {
|
if (!espClient.connected()) {
|
||||||
APRS_IS_Utils::connect();
|
APRS_IS_Utils::connect();
|
||||||
|
|
@ -71,5 +66,10 @@ void loop() {
|
||||||
APRS_IS_Utils::processAPRSISPacket(aprsisPacket);
|
APRS_IS_Utils::processAPRSISPacket(aprsisPacket);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (stationMode==3 || stationMode==4) { // DigiRepeater (3 RxFreq=TxFreq / 4 RxFreq!=TxFreq)
|
||||||
|
utils::checkDisplayInterval();
|
||||||
|
utils::checkBeaconInterval();
|
||||||
|
show_display(firstLine, secondLine, thirdLine, fourthLine, 0);
|
||||||
|
DIGI_Utils::processPacket(LoRa_Utils::receivePacket());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue