mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-08-10 10:52:46 +02:00
update to versionDate in status
This commit is contained in:
@@ -20,7 +20,7 @@ Configuration Config;
|
||||
WiFiClient espClient;
|
||||
|
||||
|
||||
String versionDate = "2023.07.06";
|
||||
String versionDate = "2023.07.12";
|
||||
int myWiFiAPIndex = 0;
|
||||
int myWiFiAPSize = Config.wifiAPs.size();
|
||||
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];
|
||||
|
||||
+3
-2
@@ -39,6 +39,7 @@ extern int rssi;
|
||||
extern float snr;
|
||||
extern int freqError;
|
||||
extern String distance;
|
||||
extern String versionDate;
|
||||
|
||||
namespace Utils {
|
||||
|
||||
@@ -46,12 +47,12 @@ void processStatus() {
|
||||
String status = Config.callsign + ">APLRG1";
|
||||
if (stationMode==1 || stationMode==2) {
|
||||
delay(1000);
|
||||
status += ",qAC:>https://github.com/richonguzman/LoRa_APRS_iGate";
|
||||
status += ",qAC:>https://github.com/richonguzman/LoRa_APRS_iGate " + versionDate ;
|
||||
espClient.write((status + "\n").c_str());
|
||||
SYSLOG_Utils::log("APRSIS Tx", status,0,0,0);
|
||||
} else {
|
||||
delay(5000);
|
||||
status += ":>https://github.com/richonguzman/LoRa_APRS_iGate";
|
||||
status += ":>https://github.com/richonguzman/LoRa_APRS_iGate " + versionDate;
|
||||
if (stationMode == 4) {
|
||||
LoRa_Utils::changeFreqTx();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user