mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-04-06 06:55:07 +00:00
beta test -r -n
This commit is contained in:
parent
bb6bc04673
commit
facab053f5
5 changed files with 25 additions and 13 deletions
|
|
@ -60,7 +60,8 @@ namespace Utils {
|
|||
if (stationMode==1 || stationMode==2 || (stationMode==5 && WiFi.status() == WL_CONNECTED)) {
|
||||
delay(1000);
|
||||
status += ",qAC:>https://github.com/richonguzman/LoRa_APRS_iGate " + versionDate;
|
||||
espClient.write((status + "\n").c_str());
|
||||
APRS_IS_Utils::upload(status);
|
||||
//espClient.write((status + "\n").c_str());
|
||||
SYSLOG_Utils::log("APRSIS Tx", status,0,0,0);
|
||||
} else {
|
||||
delay(5000);
|
||||
|
|
@ -149,7 +150,8 @@ namespace Utils {
|
|||
sixthLine = " (Ext V=" + String(BATTERY_Utils::checkExternalVoltage(),2) + "V)";
|
||||
}
|
||||
seventhLine = " listening...";
|
||||
espClient.write((beaconPacket + "\n").c_str());
|
||||
APRS_IS_Utils::upload(beaconPacket);
|
||||
//espClient.write((beaconPacket + "\n").c_str());
|
||||
if (Config.igateSendsLoRaBeacons && stationMode==2) {
|
||||
LoRa_Utils::sendNewPacket("APRS", secondaryBeaconPacket);
|
||||
}
|
||||
|
|
@ -201,7 +203,8 @@ namespace Utils {
|
|||
sixthLine = " (Ext V=" + String(BATTERY_Utils::checkExternalVoltage(),2) + "V)";
|
||||
}
|
||||
seventhLine = " listening...";
|
||||
espClient.write((beaconPacket + "\n").c_str());
|
||||
APRS_IS_Utils::upload(beaconPacket);
|
||||
//espClient.write((beaconPacket + "\n").c_str());
|
||||
if (Config.igateSendsLoRaBeacons) {
|
||||
LoRa_Utils::sendNewPacket("APRS", secondaryBeaconPacket);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue