Skip to content

Commit

Permalink
Http fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dk307 committed Jan 30, 2024
1 parent 33f9f4d commit bad4f18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion main/util/async_web_server/http_request.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ esp_err_t http_request::read_body(const std::function<esp_err_t(const std::vecto
{
if (len == HTTPD_SOCK_ERR_TIMEOUT)
{
ESP_LOGE(WEBSERVER_TAG, "HTTP receive timeout");
ESP_LOGW(WEBSERVER_TAG, "HTTP receive timeout. Retrying.");
continue;
}
return ESP_FAIL;
}
Expand Down
8 changes: 4 additions & 4 deletions sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -718,11 +718,11 @@ CONFIG_HTTPD_PURGE_BUF_LEN=32
#
# Chip revision
#
CONFIG_ESP32S3_REV_MIN_0=y
# CONFIG_ESP32S3_REV_MIN_1 is not set
# CONFIG_ESP32S3_REV_MIN_0 is not set
CONFIG_ESP32S3_REV_MIN_1=y
# CONFIG_ESP32S3_REV_MIN_2 is not set
CONFIG_ESP32S3_REV_MIN_FULL=0
CONFIG_ESP_REV_MIN_FULL=0
CONFIG_ESP32S3_REV_MIN_FULL=1
CONFIG_ESP_REV_MIN_FULL=1

#
# Maximum Supported ESP32-S3 Revision (Rev v0.99)
Expand Down

0 comments on commit bad4f18

Please sign in to comment.