Merge branch 'master' into alternative-messages
This commit is contained in:
commit
e35de077e8
2 changed files with 3 additions and 0 deletions
|
@ -199,6 +199,7 @@ void loop() {
|
||||||
msg.setSource(beacon.callsign);
|
msg.setSource(beacon.callsign);
|
||||||
msg.setPath(beacon.path);
|
msg.setPath(beacon.path);
|
||||||
msg.setDestination("APLT00-1");
|
msg.setDestination("APLT00-1");
|
||||||
|
msg.setPath(Config.beacon.path);
|
||||||
|
|
||||||
if (!Config.enhance_precision) {
|
if (!Config.enhance_precision) {
|
||||||
lat = create_lat_aprs(gps.location.rawLat());
|
lat = create_lat_aprs(gps.location.rawLat());
|
||||||
|
@ -323,6 +324,7 @@ void loop() {
|
||||||
if ((Config.debug == false) && (millis() > 5000 && gps.charsProcessed() < 10)) {
|
if ((Config.debug == false) && (millis() > 5000 && gps.charsProcessed() < 10)) {
|
||||||
logPrintlnE("No GPS frames detected! Try to reset the GPS Chip with this "
|
logPrintlnE("No GPS frames detected! Try to reset the GPS Chip with this "
|
||||||
"firmware: https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset");
|
"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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@ public:
|
||||||
String callsign;
|
String callsign;
|
||||||
String path;
|
String path;
|
||||||
String message;
|
String message;
|
||||||
|
String path;
|
||||||
int timeout;
|
int timeout;
|
||||||
String symbol;
|
String symbol;
|
||||||
String overlay;
|
String overlay;
|
||||||
|
|
Loading…
Reference in a new issue