I have used a LAN8720 module for wired Ethernet connection with "RMII clock from internal" on GPIO17.
No matter what I set in the SDK Configuration: RTOS settings, size and number of buffers, core affinity for webserver/TCPIP/... tasks, etc. I can't get past a speed of few kB/s.
I made a following change to the get handler for the testing purposes:
Code: Select all
static char randommem[1000];
static esp_err_t get_handler(httpd_req_t *req)
{
httpd_resp_set_status(req, HTTPD_200);
httpd_resp_set_type(req, "multipart/mixed; boundary=" BOUNDARY);
json doc = create_ok_response();
std::string out = doc.dump();
httpd_resp_sendstr_chunk(req, "--" BOUNDARY "\r\n");
httpd_resp_sendstr_chunk(req, "Content-Type: application/json\r\n\r\n");
httpd_resp_send_chunk(req, out.c_str(), out.length());
for (int i = 100; i > 0; --i)
{
httpd_resp_sendstr_chunk(req, "\r\n--" BOUNDARY "\r\n");
httpd_resp_sendstr_chunk(req, "Content-Type: application/octet-stream\r\n\r\n");
httpd_resp_send_chunk(req, randommem, 1000);
}
httpd_resp_sendstr_chunk(req, "\r\n--" BOUNDARY "--\r\n");
httpd_resp_sendstr_chunk(req, nullptr);
return ESP_OK;
}
Any ideas what am I doing wrong? Is my chip or module faulty?