From 532b06226e03742c6357aa7159a8e3314f914f42 Mon Sep 17 00:00:00 2001 From: Wolfgang <24637325+seeul8er@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:50:36 +0100 Subject: [PATCH] Set delay timer back higher --- main/db_esp32_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/db_esp32_control.c b/main/db_esp32_control.c index 58100b6..5c77be8 100644 --- a/main/db_esp32_control.c +++ b/main/db_esp32_control.c @@ -397,7 +397,7 @@ void control_module_udp_tcp() { parse_transparent(tcp_clients, udp_conn_list, serial_buffer, &read_transparent); break; } - if (delay_timer_cnt == 5000) { + if (delay_timer_cnt == 9000) { // all actions are non-blocking so allow some delay so that the IDLE task of FreeRTOS and the watchdog can run // read: https://esp32developer.com/programming-in-c-c/tasks/tasks-vs-co-routines for reference vTaskDelay(10/portTICK_PERIOD_MS);