SD Card on m.iMXRT1176 Eval Board #16586
Unanswered
Thinbungee
asked this question in
m.iMX RT / Teensy 4.x
Replies: 1 comment 1 reply
-
SDcards are supported by the MIMXRT port. I just verified that for MINXRT1176_EVK and Teensy 4.1 . The requirement for the card is:
I just enabled the exFAT partition type and will make a PR for it. There is no good reason for not supporting exFAT. By default it is not enabled in MicroPython to save flash code space, but the MIMXRT devices have plenty of flash code space available. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone have experience of using the SD Card functions recently on the 1176 eval board or Teensy ? I havent managed to get it to work on either of 2 boards here. The low-level writeblocks and readblocks seem to work OK, but trying to mount the SD card produces an error: OSError: [Errno 19] ENODEV at the mount function:
from machine import SDCard
import vfs
sd = SDCard(1)
fat = vfs.VfsFat(sd)
vfs.mount(fat,"/sd")
I have additionally tested on Teensy 4.1 (Both IMXRT1176 and Teensy are using 1.24.1 )
Beta Was this translation helpful? Give feedback.
All reactions