From 5f145751c0e794a1b8be2a6be2cdee645891ac56 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 23 Apr 2024 14:10:04 -0400 Subject: [PATCH] ESP32 & A7670 & LoRa added --- README.md | 1 + src/LoRa_APRS_iGate.cpp | 2 -- src/aprs_is_utils.cpp | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e3da3dc..428f121 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ ____________________________________________________ ____________________________________________________ ## Timeline (Versions): +- 2024.04.23 ESP32 + 4G/LTE MODEM A7670SA + LoRa (SX1278) support added. - 2024.04.22 Wemos Lolin32 OLED DIY LoRa support added . - 2024.04.21 WEB INSTALLER (thanks Damian SQ2CPA). - 2024.04.20 New Output Buffer process: no more packets lost. diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 31689e6..7ea9856 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -60,9 +60,7 @@ uint32_t lastRxTime = millis(); std::vector receivedPackets; -#ifdef ESP32_DIY_LoRa_A7670 bool modemLoggedToAPRSIS = false; -#endif String firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, iGateBeaconPacket, iGateLoRaBeaconPacket; diff --git a/src/aprs_is_utils.cpp b/src/aprs_is_utils.cpp index 73d1f33..4cee1ed 100644 --- a/src/aprs_is_utils.cpp +++ b/src/aprs_is_utils.cpp @@ -23,8 +23,9 @@ extern String seventhLine; extern std::vector outputPacketBuffer; extern uint32_t lastRxTime; -#ifdef ESP32_DIY_LoRa_A7670 extern bool modemLoggedToAPRSIS; + +#ifdef ESP32_DIY_LoRa_A7670 extern bool stationBeacon; #endif