Skip to main content
Visitor II
October 9, 2019
Solved

Drive is not shown in my computer in example of STM32F769I_EVAL board testing

  • October 9, 2019
  • 2 replies
  • 911 views

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

    This topic has been closed for replies.
    Best answer by Peter BENSCH

    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

    2 replies

    Technical Moderator
    December 2, 2020

    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

    Visitor II
    March 1, 2021

    Thanks for reply .........