ESP32 & A7670 & LoRa added

This commit is contained in:
richonguzman
2024-04-23 14:10:04 -04:00
parent cda72194db
commit 5f145751c0
3 changed files with 3 additions and 3 deletions
+1
View File
@@ -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.
-2
View File
@@ -60,9 +60,7 @@ uint32_t lastRxTime = millis();
std::vector<ReceivedPacket> receivedPackets;
#ifdef ESP32_DIY_LoRa_A7670
bool modemLoggedToAPRSIS = false;
#endif
String firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, iGateBeaconPacket, iGateLoRaBeaconPacket;
+2 -1
View File
@@ -23,8 +23,9 @@ extern String seventhLine;
extern std::vector<String> outputPacketBuffer;
extern uint32_t lastRxTime;
#ifdef ESP32_DIY_LoRa_A7670
extern bool modemLoggedToAPRSIS;
#ifdef ESP32_DIY_LoRa_A7670
extern bool stationBeacon;
#endif