From 333c059e9871a2be244d9c50c5baef1d75575bbe Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sat, 17 Jun 2023 19:53:15 -0400 Subject: [PATCH] update1.1 --- data/igate_conf.json | 4 ++-- src/LoRa_APRS_iGate.cpp | 2 +- src/aprs_is_utils.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/igate_conf.json b/data/igate_conf.json index 60e8b62..be090dc 100644 --- a/data/igate_conf.json +++ b/data/igate_conf.json @@ -41,12 +41,12 @@ "timeout": 4 }, "syslog": { - "active": true, + "active": false, "server": "192.168.20.10", "port": 514 }, "other": { - "beaconInterval": 5, + "beaconInterval": 15, "rememberStationTime": 30 }, "bme": { diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 85ed9d7..2f4069d 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -20,7 +20,7 @@ Configuration Config; WiFiClient espClient; -String versionDate = "2023.06.17"; +String versionDate = "2023.06.18"; int myWiFiAPIndex = 0; int myWiFiAPSize = Config.wifiAPs.size(); WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex]; diff --git a/src/aprs_is_utils.cpp b/src/aprs_is_utils.cpp index cf2ae47..7abbcc4 100644 --- a/src/aprs_is_utils.cpp +++ b/src/aprs_is_utils.cpp @@ -26,7 +26,7 @@ namespace APRS_IS_Utils { void connect(){ int count = 0; String aprsauth; - Serial.print("Connecting to APRS-IS ... "); + Serial.print("Connecting to APRS-IS ... "); while (!espClient.connect(Config.aprs_is.server.c_str(), Config.aprs_is.port) && count < 20) { Serial.println("Didn't connect with server..."); delay(1000);