1.8 Root Hub Dual MSD Example (root_hub_dual_msd)

This application demonstrates the ability of the MPLAB Harmony USB Host Stack to support MSD Host Class Driver . It demonstrates the feature with an application to read / write a file to a USB Flash drive.

Description

This application demonstrates the use of the MSD Host Class Driver to write a file to a USB Flash drive. The application uses the USB Host_layer , MSD class driver and the MPLAB Harmony File System Framework to enumerate a USB Flash drive and to write a file to it.

Downloading and building the application

To clone or download this application from Github, go to the main page of this repository and then click Clone button to clone this repository or download as zip file. This content can also be downloaded using content manager by following these instructions.

Path of the application within the repository is usb_apps_host/apps/root_hub_dual_msd.

Following table gives the details of project configurations, target device used, hardware and its IDE. Open the project using the respective IDE and build it.

Project NameIDETarget DeviceHardware / Configuration
sam_a7g5_ek.XMPLABXSAMA7G54SAMA7G5 EK Board
sam_9x60_ek.XMPLABXSAM9X60SAM9X60-EK Evaluation Board
sam_9x60_curiosity.XMPLABXSAM9X60SAM9X60 Curiosity Development Board
sam_9x75_eb.XMPLABXSAM9X75SAM9X75-DDR3-EB Evaluation Board
sam_9x75_curiosity.XMPLABXSAM9X75D2GSAM9X75-Curiosity Development Board
sam_a7d65_curiosity.XMPLABXSAMA7D65 SAMA7D65 Curiosity Development Board

Configuring the Hardware

SAM9X60-EK Evaluation Board
  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)

    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the SDMMC connector J4 on the board.
    • Reset the board by pressing the Push Button SW3.
  • Jumpers J20, J21, and J13 must be open.

  • Jumper J2 and J3 must be shorted.

  • Connect the External Power Jack (J1) to a 5V power supply.

  • Connect 2 USB devices to the USB Host on the board:

    • Stacked type-A USB (J8A)
    • Stacked type-A USB (J8B)
  • LED D1 on the board indicates the file write is complete.

    Note: Reset push button on SAM9X60 EK is labeled as SW3

SAM9X75-DDR3-EB Evaluation Board
  • Powered the board with an external power supply (or use the micro AB connector).

  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)

    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the SDMMC connector (SDMMC0) on the board.
    • Reset the board by pressing the Push Button RESET, then START.
  • Connect 2 USB devices to the USB Host on the board:

    • Stacked type-A USB (J8A)
    • Stacked type-A USB (J8B)
  • LED near VDDCORE inscription on the board indicates the file write is complete.

SAM9X60-Curiosity Board
  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)

    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the SDMMC0 connector J3 on the board.
    • Reset the board by pressing the Push Button RESET.
  • Jumper J4 must be shorted.

  • Connect the USB Micro-B Connector (J1) on the board to the computer using a micro USB cable.

  • Connect 2 USB devices to the USB Host on the board:

    • Stacked type-A USB (J10A)
    • Stacked type-A USB (J10B)
  • LED D1 on the board indicates the file write is complete.

SAMA7G5-EK Evaluation Kit
  • Powered the board with an external power supply (J1).
  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)
    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the SD Card Connector (J4) on the board.
    • Reset the board by pressing the Reset Button (nRST)
  • Press the "nSTART" button to activate board start-up.
  • Connect 2 USB devices to the USB Host on the board:
    • Type-A connector USBC (J9)
    • Type C Connector USBB (J8)
    • Type micro A/B connector USBA (J7)
  • RGB LED turning to Green indicates the file write is complete.

SAM9X75-Curiosity Development Board

  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)
    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the μSD-CARD connector (J14) on the board.(This connector is present on the bottom face of the board)
    • Reset the board by pressing the Push Button RESET.
  • Press the "START" button to activate board start-up.
  • Connect 2 USB devices to the USB Host on the board:
    • Type-A Connector USB_B (J15)
    • Type-A Connector USB_C (J16)
  • RGB LED (LD1) turning to Green indicates the file write is complete.

SAMA7D65 Curiosity Development Board

  • Setup the SD card (Note: exFAT formatted SD Cards are not supported)
    • Download harmony MPU bootstrap loader from this location.
    • Copy the downloaded boot loader binary (boot.bin) and generated application binary (harmony.bin) into the SD card.
    • Insert the SD card into the SD-CARD connector (J10) on the board.
    • Reset the board by pressing the Push Button RESET.
  • Press the "START" button to activate board start-up.
  • Connect 2 USB devices to the USB Host on the board:
    • Type-A Connector USB_B (J23)
    • Type-A Connector USB_C (J24)
  • RGB LED turning to Green indicates the file write is complete.

Running the Application

This application demonstrates the use of the MSD Host Class Driver to write a file to USB Flash drive. The application uses the USB Host_layer, MSD class driver and the MPLAB Harmony File System Framework to enumerate a USB Flash drive and to write a file to it.

  1. Open the project with appropriate IDE. Compile the project and program the target device.
  2. With the code running, attach a USB Flash drive to the Host connector on the desired starter kit containing a non empty file named file.txt
  3. Attach a second empty USB Flash drive to another Host connector on the desired starter kit
  4. The demonstration application will then copy the file.txt from the first USB Flash drive to the second.
  5. The LED on the selected hardware will indicate the status of the operation.
  6. The second USB Flash drive can then be attached to a USB Host personal computer to verify the demonstration application operation.