syslog sM5 update

This commit is contained in:
richonguzman 2023-11-26 14:30:57 -03:00
parent d2863373f6
commit 50f36c8402
3 changed files with 4 additions and 2 deletions

View file

@ -51,6 +51,7 @@ ____________________________________________________
____________________________________________________
## Timeline (Versions):
- 2023.11.26 Small correction to enable Syslog in stationMode5.
- 2023.10.09 Added "WIDE1-1" to Tx packets from iGate to be *repeated* by Digirepeaters.
- 2023.10.09 Added Support also for BMP280 module.
- 2023.10.08 Added Serial Comunication with PinPoint APRS app (https://www.pinpointaprs.com)

View file

@ -20,7 +20,7 @@
Configuration Config;
WiFiClient espClient;
String versionDate = "2023.10.09";
String versionDate = "2023.11.26";
int myWiFiAPIndex = 0;
int myWiFiAPSize = Config.wifiAPs.size();
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];

View file

@ -1,4 +1,5 @@
#include <LoRa.h>
#include <WiFi.h>
#include "configuration.h"
#include "aprs_is_utils.h"
#include "syslog_utils.h"
@ -77,7 +78,7 @@ namespace LoRa_Utils {
#ifndef PinPointApp
Serial.println("(RSSI:" +String(rssi) + " / SNR:" + String(snr) + " / FreqErr:" + String(freqError) + ")");
#endif
if (Config.syslog.active && (stationMode==1 || stationMode==2)) {
if (Config.syslog.active && (stationMode==1 || stationMode==2 || (stationMode==5 && WiFi.status()==WL_CONNECTED))) {
SYSLOG_Utils::log("LoRa Rx", loraPacket, rssi, snr, freqError);
}
}