mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-08-08 18:03:02 +02:00
ready for testing
This commit is contained in:
@@ -48,7 +48,7 @@ ___________________________________________________________________*/
|
||||
#include "A7670_utils.h"
|
||||
#endif
|
||||
|
||||
String versionDate = "2025.02.24";
|
||||
String versionDate = "2025.02.25";
|
||||
Configuration Config;
|
||||
WiFiClient espClient;
|
||||
#ifdef HAS_GPS
|
||||
|
||||
+5
-15
@@ -211,16 +211,6 @@ namespace APRS_IS_Utils {
|
||||
}
|
||||
}
|
||||
|
||||
bool checkObjectPacketToReject(const String packet) { // to filter out some objects
|
||||
if (packet.indexOf("APDG01") != -1) return true;
|
||||
|
||||
int objectIDIndex = packet.indexOf(":;");
|
||||
String payload = packet.substring(objectIDIndex + 2);
|
||||
if (payload.indexOf("EL-") == 0) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
String buildPacketToTx(const String& aprsisPacket, uint8_t packetType) {
|
||||
String packet = aprsisPacket;
|
||||
packet.trim();
|
||||
@@ -308,7 +298,7 @@ namespace APRS_IS_Utils {
|
||||
receivedMessage = AddresseeAndMessage.substring(AddresseeAndMessage.indexOf(":") + 1);
|
||||
}
|
||||
if (receivedMessage.indexOf("?") == 0) {
|
||||
Utils::println("Received Query APRS-IS : " + packet);
|
||||
Utils::println("Rx Query (APRS-IS) : " + packet);
|
||||
String queryAnswer = QUERY_Utils::process(receivedMessage, Sender, true, false);
|
||||
//Serial.println("---> QUERY Answer : " + queryAnswer.substring(0,queryAnswer.indexOf("\n")));
|
||||
if (!Config.display.alwaysOn && Config.display.timeout != 0) {
|
||||
@@ -333,7 +323,7 @@ namespace APRS_IS_Utils {
|
||||
seventhLine += receivedMessage;
|
||||
}
|
||||
} else {
|
||||
Utils::print("Received Message from APRS-IS : " + packet);
|
||||
Utils::print("Rx Message (APRS-IS): " + packet);
|
||||
if (STATION_Utils::wasHeard(Addressee) && packet.indexOf("EQNS.") == -1 && packet.indexOf("UNIT.") == -1 && packet.indexOf("PARM.") == -1) {
|
||||
STATION_Utils::addToOutputPacketBuffer(buildPacketToTx(packet, 1));
|
||||
displayToggle(true);
|
||||
@@ -343,15 +333,15 @@ namespace APRS_IS_Utils {
|
||||
}
|
||||
displayShow(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, 0);
|
||||
} else if (Config.aprs_is.objectsToRF && packet.indexOf(":;") > 0) {
|
||||
Utils::print("Received Object from APRS-IS : " + packet);
|
||||
if (!checkObjectPacketToReject(packet)) {
|
||||
Utils::print("Rx Object (APRS-IS) : " + packet);
|
||||
if (STATION_Utils::checkObjectTime(packet)) {
|
||||
STATION_Utils::addToOutputPacketBuffer(buildPacketToTx(packet, 5));
|
||||
displayToggle(true);
|
||||
lastScreenOn = millis();
|
||||
Utils::typeOfPacket(packet, 1); // APRS-LoRa
|
||||
Serial.println();
|
||||
} else {
|
||||
Serial.println(" ---> Object Rej (Not Tx)");
|
||||
Serial.println(" ---> Rejected (Time): No Tx");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -139,7 +139,7 @@ namespace LoRa_Utils {
|
||||
if (Config.syslog.active && WiFi.status() == WL_CONNECTED) {
|
||||
SYSLOG_Utils::log(3, newPacket, 0, 0.0, 0); // TX
|
||||
}
|
||||
Utils::print("---> LoRa Packet Tx : ");
|
||||
Utils::print("---> LoRa Packet Tx : ");
|
||||
Utils::println(newPacket);
|
||||
} else {
|
||||
Utils::print(F("failed, code "));
|
||||
@@ -185,7 +185,7 @@ namespace LoRa_Utils {
|
||||
rssi = radio.getRSSI();
|
||||
snr = radio.getSNR();
|
||||
freqError = radio.getFrequencyError();
|
||||
Utils::println("<--- LoRa Packet Rx : " + packet.substring(3));
|
||||
Utils::println("<--- LoRa Packet Rx : " + packet.substring(3));
|
||||
Utils::println("(RSSI:" + String(rssi) + " / SNR:" + String(snr) + " / FreqErr:" + String(freqError) + ")");
|
||||
|
||||
if (!Config.lowPowerMode && !Config.digi.ecoMode) {
|
||||
|
||||
+28
-12
@@ -17,6 +17,7 @@ std::vector<LastHeardStation> lastHeardStations;
|
||||
std::vector<String> outputPacketBuffer;
|
||||
std::vector<Packet25SegBuffer> packet25SegBuffer;
|
||||
std::vector<String> blackList;
|
||||
std::vector<LastHeardStation> lastHeardObjects;
|
||||
|
||||
bool saveNewDigiEcoModeConfig = false;
|
||||
|
||||
@@ -50,7 +51,30 @@ namespace STATION_Utils {
|
||||
return false;
|
||||
}
|
||||
|
||||
void cleanObjectHeard() {
|
||||
for (auto it = lastHeardObjects.begin(); it != lastHeardObjects.end(); ) {
|
||||
if (millis() - it->lastHeardTime >= 9.75 * 60 * 1000) { // 9.75 = 9min 45secs
|
||||
it = lastHeardObjects.erase(it); // erase() returns the next valid iterator
|
||||
} else {
|
||||
++it; // Only increment if not erasing
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool checkObjectTime(const String& packet) {
|
||||
cleanObjectHeard();
|
||||
|
||||
int objectIDIndex = packet.indexOf(":;");
|
||||
String object = packet.substring(objectIDIndex + 2, objectIDIndex + 11);
|
||||
object.trim();
|
||||
|
||||
for (int i = 0; i < lastHeardObjects.size(); i++) { // Check if i should Tx object
|
||||
if (lastHeardObjects[i].station == object) return false;
|
||||
}
|
||||
lastHeardObjects.emplace_back(LastHeardStation{millis(), object}); // Add new object and Tx
|
||||
return true;
|
||||
}
|
||||
|
||||
void deleteNotHeard() {
|
||||
std::vector<LastHeardStation> lastHeardStation_temp;
|
||||
for (int i = 0; i < lastHeardStations.size(); i++) {
|
||||
@@ -72,14 +96,10 @@ namespace STATION_Utils {
|
||||
if (lastHeardStations[i].station == station) {
|
||||
lastHeardStations[i].lastHeardTime = millis();
|
||||
stationHeard = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!stationHeard) {
|
||||
LastHeardStation lastStation;
|
||||
lastStation.lastHeardTime = millis();
|
||||
lastStation.station = station;
|
||||
lastHeardStations.push_back(lastStation);
|
||||
}
|
||||
if (!stationHeard) lastHeardStations.emplace_back(LastHeardStation{millis(), station});
|
||||
Utils::activeStations();
|
||||
}
|
||||
|
||||
@@ -91,7 +111,7 @@ namespace STATION_Utils {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Utils::println(" ---> Station not Heard for last 30 min (Not Tx)\n");
|
||||
Utils::println(" ---> Station not Heard in " + String(Config.rememberStationTime) + " min: No Tx\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -105,11 +125,7 @@ namespace STATION_Utils {
|
||||
if (packet25SegBuffer[i].station == station && packet25SegBuffer[i].payload == textMessage) return false;
|
||||
}
|
||||
}
|
||||
Packet25SegBuffer packet;
|
||||
packet.receivedTime = millis();
|
||||
packet.station = station;
|
||||
packet.payload = textMessage;
|
||||
packet25SegBuffer.push_back(packet);
|
||||
packet25SegBuffer.emplace_back(Packet25SegBuffer{millis(), station, textMessage});
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user