fixed gps init value
This commit is contained in:
@@ -216,6 +216,16 @@ void setup() {
|
||||
|
||||
sensors.begin();
|
||||
|
||||
#if ENV_INCLUDE_GPS == 1
|
||||
// Apply GPS preferences after sensors.begin() so gps_detected is set
|
||||
sensors.setSettingValue("gps", the_mesh.getNodePrefs()->gps_enabled ? "1" : "0");
|
||||
if (the_mesh.getNodePrefs()->gps_interval > 0) {
|
||||
char interval_str[12];
|
||||
sprintf(interval_str, "%u", the_mesh.getNodePrefs()->gps_interval);
|
||||
sensors.setSettingValue("gps_interval", interval_str);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef DISPLAY_CLASS
|
||||
ui_task.begin(disp, &sensors, the_mesh.getNodePrefs()); // still want to pass this in as dependency, as prefs might be moved
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user