Skip to content

Commit e601bfe

Browse files
committed
0.8.151
* increased communication queue length from 100 to 200 for ESP32-S3
1 parent d1fbb7d commit e601bfe

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 0.8.151 - 2024-10-03
44
* don't interrupt current command by setting a new limit #1757
55
* 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
67

78
## 0.8.150 - 2024-10-02
89
* fix nullptr exception

src/hm/CommQueue.h

+4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
#endif
2020
#endif
2121

22+
#if defined(CONFIG_IDF_TARGET_ESP32S3)
23+
template <uint8_t N=200>
24+
#else
2225
template <uint8_t N=100>
26+
#endif
2327
class CommQueue {
2428
protected: /* types */
2529
static constexpr uint8_t DefaultAttempts = 5;

0 commit comments

Comments
 (0)