samples: subsys: usb: mass: Use &flash0 storage_partition for USB mass storage #37764
-
What would be the necessary changes for samples/subsys/usb/mass to use internal &flash0 storage_partition for the mouting the USB device partition? From the Kconfig, it appears that it only supports RAM, NAND and SD. Most boards (at least the nrfxxxxDKs) now have a storage_partition in the end of the &flash. I with to mount the USB there:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You would need to modify the flash disk driver here: https://github.com/zephyrproject-rtos/zephyr/blob/main/drivers/disk/flashdisk.c
These are only labels that the ELM FAT driver recognizes as mount points when doing path lookup; you can mount SD at NAND and SD at RAM, it does not matter (https://github.com/zephyrproject-rtos/fatfs/blob/94fcd6bfb3801ac0a5e12ea2f52187e0a688b90e/include/ffconf.h#L204) |
Beta Was this translation helpful? Give feedback.
-
What is flash0? The |
Beta Was this translation helpful? Give feedback.
What is flash0? The
CONFIG_DISK_FLASH_DEV_NAME
points to flash control device; Do you mean that you want to pointCONFIG_DISK_FLASH_DEV_NAME
to a partition label?