Merge branch 'master' into alternative-messages

This commit is contained in:
Peter Buchegger 2021-12-19 22:29:51 +01:00 committed by GitHub
commit e35de077e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -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);
}
}

View File

@ -16,6 +16,7 @@ public:
String callsign;
String path;
String message;
String path;
int timeout;
String symbol;
String overlay;