Fix watchdog code in repeater

This commit is contained in:
Quency-D 2026-02-09 11:43:41 +08:00
parent 9df34e09d0
commit 53ff4ed57f
3 changed files with 29 additions and 6 deletions

View file

@ -1,8 +1,9 @@
#pragma once
class ExWatchdogManager {
public:
protected:
unsigned long next_feed_watchdog;
public:
ExWatchdogManager() { next_feed_watchdog = 0; }
virtual bool begin() { return false; }
virtual void loop() { }