Can't upload to ESP32-S3-DevKitC-1-N32R8V using Thonny #11041
Replies: 3 comments 22 replies
-
This device wasn't supported by the Espressif IDF until quite recently - if you're not using a recent version of the IDF to build with, you'll find that the filesystem does not mount and you'll get errors much like you're describing. I haven't gotten around to building this myself yet but I believe it should be possible with IDF v4.4.3. |
Beta Was this translation helpful? Give feedback.
-
It may be a problem of the interaction of your board with Thonny. Please try mpremote as the official tool to upload scripts, e.g.
|
Beta Was this translation helpful? Give feedback.
-
I have the same board but N8R8. The ESP32_GENERIC_S3_SPIRAM_OCT nightly build works for me. |
Beta Was this translation helpful? Give feedback.
-
I bought this board:
ESP32-S3-DevKitC-1-N32R8V
WiFi Development Tools - 802.11 Gen-Purpose Dev Bd, embeds ESP32-S3-WROOM-2-N32R8V, 32 MB Octal flash & 8 MB Octal PSRAM, w/ Pin Header
I am using Thonny to upload my MicroPython code and data.
I can get a REP, which gives:
MicroPython v1.19.1 on 2022-06-18; ESP32S3 module with ESP32S3
When I try to upload a data file, it fails with:
PROBLEM IN THONNY'S BACK-END: Exception while handling 'upload' (thonny.plugins.micropython.mp_back.ManagementError: Command output was not empty).
See Thonny's backend.log for more info.
You may need to press "Stop/Restart" or hard-reset your MicroPython device and try again.
Process ended with exit code 1.0
If I try to upload main.py it fails with:
main.py (47803 bytes)
Error: Could not copy main.py to /main.py: Could not open file /main.py for writing, output:
Traceback (most recent call last):
File "", line 4, in
OSError: [Errno 19] ENODEV
The first few lines of main.py are:
import configServer
import debug
import util
import machine
from micropython import const
import time
I tried the suggestions in the page below and it still does not work. I tried both the release version and the daily build.
#10206
Beta Was this translation helpful? Give feedback.
All reactions