VSC whitespace changes - sorry!

This commit is contained in:
PaulZC
2022-04-04 12:42:45 +01:00
parent 5ff12185d2
commit 5b1ed81ad3
2 changed files with 46 additions and 46 deletions
+3 -3
View File
@@ -15980,11 +15980,11 @@ uint8_t SFE_UBLOX_GNSS::getNavigationFrequency(uint16_t maxWait)
if (measurementRate == 0) if (measurementRate == 0)
{ {
#ifndef SFE_UBLOX_REDUCED_PROG_MEM #ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
_debugSerial->println(F("getNavigationFrequency: zero measRate!")); _debugSerial->println(F("getNavigationFrequency: zero measRate!"));
#endif #endif
return(0); // Avoid divide-by-zero error return (0); // Avoid divide-by-zero error
} }
measurementRate = 1000 / measurementRate; // This may return an int when it's a float, but I'd rather not return 4 bytes measurementRate = 1000 / measurementRate; // This may return an int when it's a float, but I'd rather not return 4 bytes