diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index 9a265ed..8acedf4 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -199,6 +199,7 @@ void loop() { msg.setSource(beacon.callsign); msg.setPath(beacon.path); msg.setDestination("APLT00-1"); + msg.setPath(Config.beacon.path); if (!Config.enhance_precision) { lat = create_lat_aprs(gps.location.rawLat()); @@ -323,6 +324,7 @@ void loop() { if ((Config.debug == false) && (millis() > 5000 && gps.charsProcessed() < 10)) { logPrintlnE("No GPS frames detected! Try to reset the GPS Chip with this " "firmware: https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset"); + show_display("No GPS frames detected!", "Try to reset the GPS Chip", "https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset", 2000); } } diff --git a/src/configuration.h b/src/configuration.h index 1653cb0..c334578 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -16,6 +16,7 @@ public: String callsign; String path; String message; + String path; int timeout; String symbol; String overlay;