8000 stm32f405 has sdioio module as sdio · Issue #5344 · adafruit/circuitpython · GitHub
[go: up one dir, main page]

Skip to content
stm32f405 has sdioio module as sdio #5344
Closed
@jerryneedell

Description

@jerryneedell

Was the name of sdioio changed to sdio recently? the docs still refer to it as sdioio but in the rc.1 build for the STM32F405, it shows up (and works) as sdio instead of sdioio.

Is this correct?

Adafruit CircuitPython 7.0.0-rc.1-72-g9b2d8ade2 on 2021-09-14; Adafruit Feather STM32F405 Express with STM32F405RG
>>> 
>>> help('modules')
__main__          board             math              sharpdisplay
_bleio            builtins          microcontroller   storage
adafruit_bus_device                 busio             micropython       struct
adafruit_pixelbuf canio             msgpack           supervisor
aesio             collections       neopixel_write    synthio
alarm             digitalio         onewireio         sys
analogio          displayio         os                terminalio
array             errno             pulseio           time
atexit            fontio            pwmio             touchio
audiocore         framebufferio     rainbowio         traceback
audiomp3          gc                random            ulab
audiopwmio        getpass           re                usb_cdc
binascii          io                rgbmatrix         usb_hid
bitbangio         json              sdcardio          usb_midi
bitmaptools       keypad            sdio              vectorio
Plus any modules on the filesystem
>>> 

this example works on the STM32F405

import os
import board
import sdio
import storage
import sys
sd = sdio.SDCard(clock=board.SDIO_CLOCK,command=board.SDIO_COMMAND,data=board.SDIO_DATA,frequency=25000000)
vfs = storage.VfsFat(sd)
storage.mount(vfs, '/sd')
sys.path.append("/sd")
sys.path.append("/sd/lib")

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0