This commit is contained in:
Ben Meadors 2024-11-19 07:23:58 -06:00 committed by Tom Fifield
parent 437b1b6535
commit ec755d61d9

View File

@ -154,9 +154,9 @@ bool PositionModule::hasQualityTimesource()
bool PositionModule::hasGPS()
{
#if MESHTASTIC_EXCLUDE_GPS
return gps && gps->isConnected();
#else
return false;
#else
return gps && gps->isConnected();
#endif
}