2019-10-08 11:49 PM
Hello ,
i am testin my STM32F769I_EVAL board for USB Host Mass storage example from below project example
C:\Users\Graffin01\STM32Cube\Repository\STM32Cube_FW_F7_V1.15.0\Projects\STM32F769I_EVAL\Applications\USB_Host\MSC_Standalone\SW4STM32
but i could not see mass storage drive in my computer
i could only explore files on lcd
how i could see drive of usb flash disk in my computer?
Best Regards
Dipk Garasiya
Solved! Go to Solution.
2020-12-02 12:08 AM
As the name of the example program suggests - your STM32F769 acts as a USB_Host.
In the readme.txt (one folder level above) it says:
When the application is started, the connected USB flash disk device is detected in MSC mode and gets
initialized. The STM32 MCU behaves as a MSC Host, it enumerates the device and extracts VID, PID,
manufacturer name, Serial no and product name information and displays it on the LCD screen.
This application is based on read/write file and explore the USB flash disk content trough a MSC routine.
You should use one of the examples for USB_Device if you want to see the EVAL on your computer.
/Peter
2020-12-02 12:08 AM
As the name of the example program suggests - your STM32F769 acts as a USB_Host.
In the readme.txt (one folder level above) it says:
When the application is started, the connected USB flash disk device is detected in MSC mode and gets
initialized. The STM32 MCU behaves as a MSC Host, it enumerates the device and extracts VID, PID,
manufacturer name, Serial no and product name information and displays it on the LCD screen.
This application is based on read/write file and explore the USB flash disk content trough a MSC routine.
You should use one of the examples for USB_Device if you want to see the EVAL on your computer.
/Peter
2021-02-28 07:53 PM
Thanks for reply .........