Shorten the feed-dog interval

This commit is contained in:
Yukino Song
2024-08-29 00:41:13 +08:00
parent 166a079112
commit e6e8e8d056
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ bool startPingThread(std::function<void()> failCb) {
}
if (watchdogOut.Timeout) {
auto sleepInterval = watchdogOut.Timeout * 1000 / 2;
auto sleepInterval = watchdogOut.Timeout * 1000 / 3;
std::thread ping_thread([sleepInterval, failCb = std::move(failCb)]{
uint8_t fail_count = 0;
for (;;) {