CommonCLI: gps management commands
This commit is contained in:
@@ -21,4 +21,5 @@ public:
|
||||
virtual void begin() = 0;
|
||||
virtual void stop() = 0;
|
||||
virtual void loop() = 0;
|
||||
virtual bool isActive() = 0;
|
||||
};
|
||||
|
||||
@@ -78,6 +78,16 @@ public :
|
||||
}
|
||||
}
|
||||
|
||||
bool isActive() override {
|
||||
// directly read the enable pin if present as gps can be
|
||||
// activated/deactivated outside of here ...
|
||||
if (_pin_en != -1) {
|
||||
return digitalRead(_pin_en) == PIN_GPS_EN_ACTIVE;
|
||||
} else {
|
||||
return true; // no enable so must be active
|
||||
}
|
||||
}
|
||||
|
||||
void syncTime() override { nmea.clear(); LocationProvider::syncTime(); }
|
||||
long getLatitude() override { return nmea.getLatitude(); }
|
||||
long getLongitude() override { return nmea.getLongitude(); }
|
||||
|
||||
Reference in New Issue
Block a user