Bugfix main.cpp introduced with last commit

This commit is contained in:
Verkehrsrot 2018-08-12 13:44:29 +02:00 committed by GitHub
parent 475a38999a
commit 0318987a4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -330,6 +330,8 @@ void loop() {
processSendBuffer(); processSendBuffer();
// check send cycle and enqueue payload if cycle is expired // check send cycle and enqueue payload if cycle is expired
sendPayload(); sendPayload();
// reset watchdog
vTaskDelay(1 / portTICK_PERIOD_MS);
} // loop() } // loop()
} }