Search found 3 matches

by suryasid09
Mon Nov 20, 2023 2:13 pm
Forum: General Discussion
Topic: low speed when reading constantly from Pendrive and performing http post to XAMP server
Replies: 2
Views: 1267

Re: low speed when reading constantly from Pendrive and performing http post to XAMP server

esp_http_client_set_post_field(client, post_data, strlen(post_data); strlen(post_data) is not what you want. It will 1) truncate every block of posted data at the first byte which happens to be 0 and, worse, 2) append a random amount of garbage data if there happens to be no 0-byte in the current d...
by suryasid09
Fri Nov 17, 2023 9:26 am
Forum: General Discussion
Topic: low speed when reading constantly from Pendrive and performing http post to XAMP server
Replies: 2
Views: 1267

low speed when reading constantly from Pendrive and performing http post to XAMP server

Hello Community, I am using IDF example to read 2048 bytes from USB Pen drive and then perform HTTP post every time from esp32 to XAMP server until the complete file is read. When I test the read speed. I got 0.5 MB/s from USB for 6MB file. However, when I do multiple post with 2048 bytes read to th...
by suryasid09
Fri Oct 27, 2023 8:25 am
Forum: ESP-IDF
Topic: How to deinitalize the nimble stack before starting wifi provisioning.
Replies: 2
Views: 2423

Re: How to deinitalize the nimble stack before starting wifi provisioning.

Hi,

I am struggling with the same issue for sometime now. I tried bunch of different methods but nothing seems to work. Anyone able to figure out, would greatly appreciate.