Solved: "slow stream, dropouts are possible" #528
Replies: 3 comments
-
if you use PSRAM, you can still optimize this in menuconfig (for https): |
Beta Was this translation helpful? Give feedback.
-
Thanks for the info. Just to be clear in case others are reading this, the simple addition of -DBOARD_HAS_PSRAM solved my dropouts problem. |
Beta Was this translation helpful? Give feedback.
-
When I try to run idf.py menuconfig, I receive two warnings and one error . I really would like to configure with menuconfig my arduino project (in order to get rid of low dropout warnings) but I don't know how. IDF version is 5.1.12.
|
Beta Was this translation helpful? Give feedback.
-
I'm running a LilyGo ESP32 T-Display-S3 (ESP32-S3 with a small display) and was experiencing "slow stream, dropouts are possible".
To solve the problem, make sure PSRAM is being used (if your ESP32 has some). If you are using PlatformIO, in the project's platformio.ini set
For an excellent example, see
ESP32-audioI2S/examples/Better_WiFi_throughput/platformio.ini
Line 55 in 7ffc573
This resolved the dropouts for me. You can confirm the PSRAM availability by adding the following to your code (e.g. in the setup() function):
To solve the problem, I originally changed from using urls with https to http. This helped a lot, but did not completely solve it. Then I was planning to add an external WiFi antenna, but decided to do more reading.
Hope this helps!
Beta Was this translation helpful? Give feedback.
All reactions