This commit is contained in:
Quency-D 2026-04-20 13:54:23 +00:00 committed by GitHub
commit 0fc7e10530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 112 additions and 5 deletions

View file

@ -0,0 +1,12 @@
#pragma once
class ExternalWatchdogManager {
protected:
unsigned long next_feed_watchdog;
public:
ExternalWatchdogManager() { next_feed_watchdog = 0; }
virtual bool begin() { return false; }
virtual void loop() { }
virtual unsigned long getIntervalMs() const { return 0; }
virtual void feed() { }
};