free serial pins if gps_disabled is set

This commit is contained in:
Thomas Göttgens 2022-03-24 18:22:31 +01:00 committed by GitHub
parent cef1614770
commit 72f443c519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,6 +322,7 @@ GPS *createGps()
#ifdef NO_GPS
return nullptr;
#else
if (!radioConfig.preferences.gps_disabled){
#ifdef GPS_ALTITUDE_HAE
DEBUG_MSG("Using HAE altitude model\n");
#else
@ -353,6 +354,7 @@ GPS *createGps()
new_gps->setup();
return new_gps;
}
}
return nullptr;
#endif
}