You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The struct http_config in the esp-idf has a member core_id to assign which esp32 core an http server task will run on, but that has not been included in the arduino framework version 1.0.5-rc6.
I'm trying to keep wiifi and wifi service away from core 1 where the fast code is running. My workaround was to launch a new task on core 0, to handle that http server work, but for small requests that seems like extra processing.
The struct http_config in the esp-idf has a member core_id to assign which esp32 core an http server task will run on, but that has not been included in the arduino framework version 1.0.5-rc6.
I'm trying to keep wiifi and wifi service away from core 1 where the fast code is running. My workaround was to launch a new task on core 0, to handle that http server work, but for small requests that seems like extra processing.
Wondering if that could be added? 😄
https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_http_server.html#_CPPv412httpd_config
https://github.com/espressif/esp-idf/blob/6e77694/components/esp_https_server/include/esp_https_server.h
https://github.com/espressif/arduino-esp32/blob/master/tools/sdk/include/esp_https_server/esp_https_server.h
The text was updated successfully, but these errors were encountered: