From ea41b584e047ec6003c9a908b63e7eedffa2dd47 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Mon, 27 Mar 2023 00:50:20 -0300 Subject: [PATCH] 1.4 --- data/igate_conf.json | 2 -- src/iGate_config.h | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/data/igate_conf.json b/data/igate_conf.json index b350d8b..b883fc1 100644 --- a/data/igate_conf.json +++ b/data/igate_conf.json @@ -3,7 +3,6 @@ "comment": "LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate", "beacon_interval": 15, "wifi": { - "active": true, "AP": [ { "SSID": "Jimenicita", "Password": "mg6wyMhqRnxk", @@ -18,7 +17,6 @@ ] }, "aprs_is": { - "active": true, "passcode": "23201", "server": "soam.aprs2.net", "port": 14580, diff --git a/src/iGate_config.h b/src/iGate_config.h index 412a43f..35071b3 100644 --- a/src/iGate_config.h +++ b/src/iGate_config.h @@ -17,7 +17,6 @@ public: class APRS_IS { public: - bool active; int passcode; String server; int port; @@ -86,8 +85,7 @@ private: callsign = data["callsign"].as(); comment = data["comment"].as(); beacon_interval = data["beacon_interval"].as(); - - aprs_is.active = data["aprs_is"]["active"].as(); + aprs_is.passcode = data["aprs_is"]["passcode"].as(); aprs_is.server = data["aprs_is"]["server"].as(); aprs_is.port = data["aprs_is"]["port"].as();