mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-07-16 23:12:02 +00:00
13 lines
313 B
C++
13 lines
313 B
C++
#pragma once
|
|
|
|
class ExternalWatchdogManager {
|
|
protected:
|
|
unsigned long last_feed_watchdog;
|
|
public:
|
|
ExternalWatchdogManager() { last_feed_watchdog = 0; }
|
|
virtual bool begin() { return false; }
|
|
virtual void loop() { }
|
|
virtual unsigned long getIntervalMs() const { return 0; }
|
|
virtual void feed() { }
|
|
};
|