From eddac9300effd7af6627a9a43fb870131054ee1d Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 13 Jun 2023 00:02:25 -0400 Subject: [PATCH] release 1.2 --- data/igate_conf.json | 30 +++++++++++++++--------------- src/LoRa_APRS_iGate.cpp | 4 ++-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/data/igate_conf.json b/data/igate_conf.json index cc1a993..70f50ca 100644 --- a/data/igate_conf.json +++ b/data/igate_conf.json @@ -1,28 +1,28 @@ { - "callsign": "CD2RXU-11", - "stationMode": 2, + "callsign": "NOCALL-10", + "stationMode": 1, "iGateComment": "LoRa_APRS_iGate", "wifi": { "AP": [ - { "ssid": "Richon", - "password": "k4fPnmg5qnyf", - "latitude": -33.0338131, - "longitude": -71.5737237 + { "ssid": "WIFI_1", + "password": "password_1", + "latitude": 0.0000000, + "longitude": 0.0000000 }, - { "ssid": "Jimenita", - "password": "mg6wyMhqRnxk", - "latitude": -33.0312492, - "longitude": -71.5796215 + { "ssid": "WIFI_2", + "password": "password_2", + "latitude": 0.0000000, + "longitude": 0.0000000 } ] }, "digi": { "comment": "LoRa_APRS_Digirepeater", - "latitude": -33.0338131, - "longitude": -71.5737237 + "latitude": 0.0000000, + "longitude": 0.0000000 }, "aprs_is": { - "passcode": "23201", + "passcode": "VWXYZ", "server": "soam.aprs2.net", "port": 14580, "reportingDistance": 30 @@ -41,8 +41,8 @@ "timeout": 4 }, "syslog": { - "active": true, - "server": "192.168.20.10", + "active": false, + "server": "192.168.0.100", "port": 514 }, "other": { diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 0c4424d..9dd6b99 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -23,9 +23,9 @@ String versionDate = "2023.06.13"; int myWiFiAPIndex = 0; int myWiFiAPSize = Config.wifiAPs.size(); WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex]; -bool statusAfterBoot = true; -int stationMode = Config.stationMode; +int stationMode = Config.stationMode; +bool statusAfterBoot = true; bool beacon_update = true; uint32_t lastBeaconTx = 0; uint32_t previousWiFiMillis = 0;