From e601bfe443342d1b7c85913b1852cac50c4c5475 Mon Sep 17 00:00:00 2001 From: lumapu Date: Thu, 3 Oct 2024 17:16:49 +0200 Subject: [PATCH] 0.8.151 * increased communication queue length from 100 to 200 for ESP32-S3 --- src/CHANGES.md | 1 + src/hm/CommQueue.h | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/CHANGES.md b/src/CHANGES.md index c2e50d58..050cbbf3 100644 --- a/src/CHANGES.md +++ b/src/CHANGES.md @@ -3,6 +3,7 @@ ## 0.8.151 - 2024-10-03 * don't interrupt current command by setting a new limit #1757 * add button for CMT inverters to catch them independend on which frequency they were before #1749 +* increased communication queue length from 100 to 200 for ESP32-S3 ## 0.8.150 - 2024-10-02 * fix nullptr exception diff --git a/src/hm/CommQueue.h b/src/hm/CommQueue.h index db00626a..8f11c31c 100644 --- a/src/hm/CommQueue.h +++ b/src/hm/CommQueue.h @@ -19,7 +19,11 @@ #endif #endif +#if defined(CONFIG_IDF_TARGET_ESP32S3) +template +#else template +#endif class CommQueue { protected: /* types */ static constexpr uint8_t DefaultAttempts = 5;