The Adafruit Grand Central M4 Express supports SDIO mode with the SDIO Breakout Board. First, wire the two together as shown:
- Board 3.3 to breakout 3V
- Board GND to breakout GND
-
Board D32 to breakout CLK
- Board D33 to breakout CMD
- Board D8 to breakout D0
- Board D29 to breakout D1
- Board D20 to breakout DAT2
- Board D21 to breakout D3
To mount the SD card, use the following code. Remember to put it in the file mount_sd.py on CIRCUITPY so you can easily call it from code.py or the REPL with import mount_sd
.
import board import sdioio import storage sdcard = sdioio.SDCard( clock=board.SDIO_CLOCK, command=board.SDIO_COMMAND, data=board.SDIO_DATA, frequency=25000000) vfs = storage.VfsFat(sdcard) storage.mount(vfs, "/sd")
Text editor powered by tinymce.