From 0318987a4e4b4a307b96874368ab70498ee7b74b Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sun, 12 Aug 2018 13:44:29 +0200 Subject: [PATCH] Bugfix main.cpp introduced with last commit --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 1b258f14..bd6d04f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -330,6 +330,8 @@ void loop() { processSendBuffer(); // check send cycle and enqueue payload if cycle is expired sendPayload(); + // reset watchdog + vTaskDelay(1 / portTICK_PERIOD_MS); } // loop() }