machine.SDCard not on UM_FEATHERS2 ? #14266
-
Can someone confirm if machine.SDCard() is included in the UM_FEATHERS2 port? This board does not have a microSD card reader. I was hoping to use an external microSD card breakout. I am unable to import it using the downloaded v1.22.2.bin . Trying to perform an import yields the following output:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
At |
Beta Was this translation helpful? Give feedback.
-
I don't know why, but the hardware You could try to compile it with support or just use the Python version of SDCard. If the ESP32S2 is connected to the internet, you could use import mip
mip.install("sdcard") The init method: https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/storage/sdcard/sdcard.py#L42 |
Beta Was this translation helpful? Give feedback.
I don't know why, but the hardware
SDCard
support is disabled: https://github.com/micropython/micropython/blob/master/ports/esp32/boards/UM_FEATHERS2/mpconfigboard.h#L6You could try to compile it with support or just use the Python version of SDCard.
If the ESP32S2 is connected to the internet, you could use
mip
in therepl
.The init method: https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/storage/sdcard/sdcard.py#L42