Search found 5 matches

by try_except
Thu Mar 06, 2025 1:58 pm
Forum: ESP-IDF
Topic: esp_http_client extremely slow upload speed compared to iperf
Replies: 2
Views: 340

Re: esp_http_client extremely slow upload speed compared to iperf

Ok so I searched around menuconfig and found the option CONFIG_LWIP_TCP_SND_BUF_DEFAULT. Bumping this to the maximum possible value (65535) yielded 184 kB/s. Better, but not quite what I expected. Tried bumping CONFIG_LWIP_TCP_WND_DEFAULT to 65535 also, but it didn't have any impact on transfer spee...
by try_except
Thu Mar 06, 2025 2:25 am
Forum: ESP-IDF
Topic: esp_http_client extremely slow upload speed compared to iperf
Replies: 2
Views: 340

Re: esp_http_client extremely slow upload speed compared to iperf

I found this topic: https://esp32.com/viewtopic.php?t=5844 and it seems to be related to my problem. Using wireshark I can see very small bursts of data coming from the ESP32, then some ACKs from the server, then again another small burst of data, etc: https://i.imgur.com/dXCmaR6.png Is there any wa...
by try_except
Tue Mar 04, 2025 6:20 pm
Forum: ESP-IDF
Topic: esp_http_client extremely slow upload speed compared to iperf
Replies: 2
Views: 340

esp_http_client extremely slow upload speed compared to iperf

Hi guys, I'm currently working on a project using ESP32-CAM to capture AVI files and upload them to an S3 bucket. Right now everything works, but the upload speed to my S3 bucket is ridiculously slow: I'm currently getting 25 kB/s !! I tested my board using the iperf example and was able to achieve ...
by try_except
Thu Jan 23, 2025 2:59 pm
Forum: Hardware
Topic: Two UART periferals in the same GPIO pins
Replies: 4
Views: 2008

Re: Two UART periferals in the same GPIO pins

Thanks! Reading your reply it seemed obvious; the UART that is not "talking" wants to drive TX high (idle), so nothing can go through. Not sure why it didn't occur to me.

PD: This was my first time using the forum and I'm amazed at how fast you replied! Thanks again
by try_except
Thu Jan 23, 2025 1:10 pm
Forum: Hardware
Topic: Two UART periferals in the same GPIO pins
Replies: 4
Views: 2008

Two UART periferals in the same GPIO pins

Hello, I'm currently working with an ESP32-CAM board, so I don't have many pins available for external communication (I'm using both the camera and the PSRAM). I need to communicate the board via RS485, so I need 3 pins to make it work. I'm currently using GPIO12 (the only "free" pin I have left) fo...