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
I'm simply posting a solution to an issue I've had for a long time.
When using the ESP-IDF on the WeAct Studio ESP32-C3FH4 Core Board everything builds and flashes fine. But for some reason, the serial connection is read only. So when using the "idf.py monitor" serial monitor this warning is raised when trying to write to the board over serial: "Writing to serial is timing out. Please make sure that your application supports an interactive console and that you have picked the correct console for serial communication.". After a long search for a solution I found it:
idf.py menuconfig
Component config > ESP System Settings > Channel for console output > choose USB Serial/JTAG Controller
Press "S" to save, press Enter
idf.py build (DON'T set the target board again as it will erase the changes you just made in the config)
idf.py flash
Enjoy two way serial communication on the board!
I hope this can help someone in the future.
Cheers,
Kurreman
The text was updated successfully, but these errors were encountered:
Hey all,
I'm simply posting a solution to an issue I've had for a long time.
When using the ESP-IDF on the WeAct Studio ESP32-C3FH4 Core Board everything builds and flashes fine. But for some reason, the serial connection is read only. So when using the "idf.py monitor" serial monitor this warning is raised when trying to write to the board over serial: "Writing to serial is timing out. Please make sure that your application supports an interactive console and that you have picked the correct console for serial communication.". After a long search for a solution I found it:
I hope this can help someone in the future.
Cheers,
Kurreman
The text was updated successfully, but these errors were encountered: