mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
t1000e: gps toggle not using board class
This commit is contained in:
parent
8765b3d040
commit
588a986976
8 changed files with 14 additions and 14 deletions
|
|
@ -41,7 +41,6 @@ public:
|
|||
virtual void onAfterTransmit() { }
|
||||
virtual void reboot() = 0;
|
||||
virtual void powerOff() { /* no op */ }
|
||||
virtual bool toggleGps() { return false; } // could be a board_toggle depending on the board features ...
|
||||
virtual uint8_t getStartupReason() const = 0;
|
||||
virtual bool startOTAUpdate(const char* id, char reply[]) { return false; } // not supported
|
||||
};
|
||||
|
|
|
|||
|
|
@ -21,4 +21,6 @@ public:
|
|||
virtual const char* getSettingName(int i) const { return NULL; }
|
||||
virtual const char* getSettingValue(int i) const { return NULL; }
|
||||
virtual bool setSettingValue(const char* name, const char* value) { return false; }
|
||||
virtual bool getGpsStatus() { return false; }
|
||||
virtual bool toggleGps() { return false; }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue