From 05856eb53edc44b8a931992f854ce97ce2dd2e7b Mon Sep 17 00:00:00 2001 From: bogdan Date: Sat, 21 Oct 2023 16:13:24 +0200 Subject: [PATCH] bluetooth integration start --- src/HTTPServer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HTTPServer.c b/src/HTTPServer.c index 659d800..e20c130 100644 --- a/src/HTTPServer.c +++ b/src/HTTPServer.c @@ -429,8 +429,8 @@ static httpd_handle_t start_webserver(void) config.lru_purge_enable = true; config.uri_match_fn = httpd_uri_match_wildcard; config.max_open_sockets = 5; - config.max_resp_headers = 6; - config.max_uri_handlers = 6; + config.max_resp_headers = 10; + config.max_uri_handlers = 10; config.stack_size = (4096 + 2048); // Start the httpd server