Berry raise webserver hooks from 16 to 32 (#23748)

This commit is contained in:
s-hadinger 2025-08-02 11:45:52 +02:00 committed by GitHub
parent be1e6df7ad
commit ca34162937
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
- ESP32 Platform from 2025.07.30 to 2025.07.31, Framework (Arduino Core) from v3.1.3.250707 to v3.1.3.250712 and IDF from v5.3.3.250707 to v5.3.3.250707 (#23685)
- ESP8266 platform update from 2025.05.00 to 2025.07.00 (#23700)
- OpenTherm library from v0.9.0 to v1.1.5 (#23704)
- Berry raise webserver hooks from 16 to 32
### Fixed
- NeoPool reset to default settings (#23734)

View File

@ -71,7 +71,7 @@ extern "C" {
*
\*********************************************************************************************/
#define WEBSERVER_REQ_HANDLER_HOOK_MAX 16 // max number of callbacks, each callback requires a distinct address
#define WEBSERVER_REQ_HANDLER_HOOK_MAX 32 // max number of callbacks, each callback requires a distinct address
static String be_webserver_prefix[WEBSERVER_REQ_HANDLER_HOOK_MAX];
static uint8_t be_webserver_method[WEBSERVER_REQ_HANDLER_HOOK_MAX];