Using mcu connected MMC storage appear as a mounted ''Mass Storage device''?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-12-20 11:07 AM
My design has got a MMC storage chip (MTFC16GAKAECN-4M)(e.MMC v5.1 standard) connected to STM32F7 mcu. Provided I will be using FAT file system on this eMMC storage, is there a way to open this MMC storage as USB disk drive when I connect the STM32F7 as USB device to the PC?
#sdcard #mmc #stm-32f7- Labels:
-
SDIO-SDMMC
-
STM32F7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-12-20 11:15 AM
I would imagine you have to map MSC command packets to access the eMMC, in a similar way you would to access an on-board MicroSD card or SDRAM based RAM Drive.
Concurrent access between F7 based app and PC to the file system can be problematic, the simplest route being to grant access either to the MSC or the app.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-12-20 11:02 PM
Yes, I
have to map MSC command packets to access the eMMC only. Are there any examples of doing that?
