We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1fbb7d commit e601bfeCopy full SHA for e601bfe
src/CHANGES.md
@@ -3,6 +3,7 @@
3
## 0.8.151 - 2024-10-03
4
* don't interrupt current command by setting a new limit #1757
5
* add button for CMT inverters to catch them independend on which frequency they were before #1749
6
+* increased communication queue length from 100 to 200 for ESP32-S3
7
8
## 0.8.150 - 2024-10-02
9
* fix nullptr exception
src/hm/CommQueue.h
@@ -19,7 +19,11 @@
19
#endif
20
21
22
+#if defined(CONFIG_IDF_TARGET_ESP32S3)
23
+template <uint8_t N=200>
24
+#else
25
template <uint8_t N=100>
26
+#endif
27
class CommQueue {
28
protected: /* types */
29
static constexpr uint8_t DefaultAttempts = 5;
0 commit comments