mirror of https://github.com/meshcore-dev/MeshCore
10 changed files with 96 additions and 3 deletions
@ -0,0 +1,11 @@ |
|||
#pragma once |
|||
|
|||
class ExWatchdogManager { |
|||
public: |
|||
unsigned long next_feed_watchdog; |
|||
ExWatchdogManager() { next_feed_watchdog = 0; } |
|||
virtual bool begin() { return false; } |
|||
virtual void loop() { } |
|||
virtual unsigned long getIntervalMs() const { return 0; } |
|||
virtual void feed() { } |
|||
}; |
|||
Loading…
Reference in new issue