Display info when GPS is disabled

pull/37/head
Łukasz Nidecki 2021-06-26 15:41:37 +02:00
rodzic 78f5834f0f
commit 967a55ad2f
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -410,7 +410,13 @@ String getSatAndBatInfo() {
}
void displayInvalidGPS() {
writedisplaytext(" " + Tcall, "(TX) at valid GPS", "LAT: not valid", "LON: not valid", "SPD: --- CRS: ---", getSatAndBatInfo());
char *nextTxInfo;
if (!gps_state){
nextTxInfo = (char*)"(TX) GPS DISABLED";
} else {
nextTxInfo = (char*)"(TX) at valid GPS";
}
writedisplaytext(" " + Tcall, nextTxInfo, "LAT: not valid", "LON: not valid", "SPD: --- CRS: ---", getSatAndBatInfo());
}
#if defined(KISS_PROTOCOL)