cancel
Showing results for 
Search instead for 
Did you mean: 

Using mcu connected MMC storage appear as a mounted ''Mass Storage device''?

Abhishek Kumar
Associate III
Posted on December 20, 2017 at 20:07

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
2 REPLIES 2
Posted on December 20, 2017 at 20:15

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.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Posted on December 21, 2017 at 07:02

Yes, I 

have to map MSC command packets to access the eMMC only. Are there any examples of doing that?