mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-21 07:15:16 +03:00
Add warning about old ublox versions
This commit is contained in:
parent
7677abeb0c
commit
341bb4f15f
1 changed files with 3 additions and 0 deletions
|
@ -3892,6 +3892,9 @@ static void cliStatus(char *cmdline)
|
||||||
if (featureConfigured(FEATURE_GPS) && isGpsUblox()) {
|
if (featureConfigured(FEATURE_GPS) && isGpsUblox()) {
|
||||||
cliPrint("GPS: ");
|
cliPrint("GPS: ");
|
||||||
cliPrintf("HW Version: %s Proto: %d.%02d Baud: %d", getGpsHwVersion(), getGpsProtoMajorVersion(), getGpsProtoMinorVersion(), getGpsBaudrate());
|
cliPrintf("HW Version: %s Proto: %d.%02d Baud: %d", getGpsHwVersion(), getGpsProtoMajorVersion(), getGpsProtoMinorVersion(), getGpsBaudrate());
|
||||||
|
if(ubloxVersionLT(15, 0)) {
|
||||||
|
cliPrintf(" (UBLOX SW >= 15.0 required)");
|
||||||
|
}
|
||||||
cliPrintLinefeed();
|
cliPrintLinefeed();
|
||||||
cliPrintLinef(" SATS: %i", gpsSol.numSat);
|
cliPrintLinef(" SATS: %i", gpsSol.numSat);
|
||||||
cliPrintLinef(" HDOP: %f", (double)(gpsSol.hdop / (float)HDOP_SCALE));
|
cliPrintLinef(" HDOP: %f", (double)(gpsSol.hdop / (float)HDOP_SCALE));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue