SD card on Nucleo F411RE not working #11957
Unanswered
B00mb0x
asked this question in
STM32 / Pyboard
Replies: 1 comment
-
I once had the same problem. Could be that sdcard.c is for special sdcard peripherals that the F411 does not have. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently using a Nucleo F411RE Board.
I flashed the board with the micropython commit 813d559 from June 19th 2023 using the command
make BOARD=NUCLEO_F411RE deploy-stlink
.Micropython works fine, but I want to import the SDCard module from machine using:
from machine import SDCard
I get an error message:
Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: can't import name SDCard
While building, it showed also bulding 'sdcard.c'. I don't know, why it still can't be imported.

Is it possible to operate an SD card from a Nucleo F411RE?
How can I achieve it? Should I change the makefile?
Or did I just try to import the wrong thing?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions