From 2809b1a1678b19035ce80d17988b1de9426138d6 Mon Sep 17 00:00:00 2001 From: Nicolas Bachschwell Date: Sat, 27 Sep 2025 12:59:04 +0200 Subject: [PATCH] Slight bug fix --- external_components/hoermann_door/hoermann.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/external_components/hoermann_door/hoermann.h b/external_components/hoermann_door/hoermann.h index 2293991..235c2ff 100644 --- a/external_components/hoermann_door/hoermann.h +++ b/external_components/hoermann_door/hoermann.h @@ -41,12 +41,12 @@ class HoermannMainComponent: public Component{ this->emulator = new HCIEmulator(this->_tx_on, this->_uart); this->_tx_on->digital_write(LOW); - this->set_continue_ = false; + this->set_continue_ = true; xTaskCreatePinnedToCore( dispatcherFn, // Function to implement the task "ModBusTask", // Name of the task 10000, // Stack size in words - NULL, // Task input parameter + true, // Task input parameter // 1, // Priority of the task configMAX_PRIORITIES - 1, &modBusTask, // Task handle.