Skip to content

Commit

Permalink
0.8.151
Browse files Browse the repository at this point in the history
* increased communication queue length from 100 to 200 for ESP32-S3
  • Loading branch information
lumapu committed Oct 3, 2024
1 parent d1fbb7d commit e601bfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions src/hm/CommQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
#endif
#endif

#if defined(CONFIG_IDF_TARGET_ESP32S3)
template <uint8_t N=200>
#else
template <uint8_t N=100>
#endif
class CommQueue {
protected: /* types */
static constexpr uint8_t DefaultAttempts = 5;
Expand Down

0 comments on commit e601bfe

Please sign in to comment.