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
When using WiFiClient* _client; to read from a server, _client->read(InBuff.getWritePtr(), availableBytes); I see difference in speed in 3.0.7 vs 3.2.0
in 3.0.7(IDF version 5.1.4 I can see
I (403056) content-length: 2335192
I (403264) stream ready, buffer filled in 193 ms
in 3.2.0 stream ready, buffer filled in 4054 ms for same length of content.
Sketch
WiFiClient _client;
voidsetup()
{
// setup the client// call a GET// read from server// check time taken to fill the entire buffer
}
voidloop()
{
// do nothing
}
Debug Message
N/A
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide
I confirm I have checked existing issues, online documentation and Troubleshooting guide.
The text was updated successfully, but these errors were encountered:
Can you also try this with a fully wiped ESP?
I did notice the RF-calibration between ESP-IDF 5.3 and ESP-IDF 5.4 is incompatible.
When switching to a build based on IDF5.4 (or 5.5) from a build based on an older IDF I had to wipe the RF calibration to get a stable WiFi connection.
Also the other way around, when moving from a build using IDF 5.4 to one based on older IDF.
N.B. this is not required on all nodes, so I guess it is only affecting those boards which already needed some extra antenna matching options (as in, boards with already poor antenna design)
Some example code to wipe the RF calibration data:
Make sure WiFi is turned off.
Board
ESP32S3
Device Description
ESP32S3 board wifi connected
Hardware Configuration
Nothing connected.
Version
v3.2.0
IDE Name
VSCode
Operating System
Windows 11
Flash frequency
80M
PSRAM enabled
yes
Upload speed
115200
Description
When using
WiFiClient* _client;
to read from a server,_client->read(InBuff.getWritePtr(), availableBytes);
I see difference in speed in 3.0.7 vs 3.2.0in 3.0.7(IDF version 5.1.4 I can see
in 3.2.0
stream ready, buffer filled in 4054 ms
for same length of content.Sketch
Debug Message
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: