78c7e4a859
Enables the zephyr usb device stack and mass storage class on the mimxrt1050_evk board. The mass storage class is backed by the sdhc disk access driver, so it's now possible to browse and modify the contents of the SD card from a USB host (your PC). This is in preparation to support writing a main.py script to the SD card, and then executing it after the next reset.
10 lines
244 B
Plaintext
10 lines
244 B
Plaintext
# Required for zephyr.DiskAccess block devices
|
|
CONFIG_DISK_ACCESS=y
|
|
CONFIG_DISK_ACCESS_SDHC=y
|
|
|
|
CONFIG_USB=y
|
|
CONFIG_USB_DEVICE_STACK=y
|
|
CONFIG_USB_DEVICE_PRODUCT="Zephyr MicroPython"
|
|
CONFIG_USB_MASS_STORAGE=y
|
|
CONFIG_MASS_STORAGE_DISK_NAME="SDHC"
|