EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
msdh.c File Reference

Detailed Description

Host side implementation of Mass Storage class Device (MSD) interface.

Version
5.1.1

License

Copyright 2015 Silicon Labs, Inc. http://www.silabs.com

This file is licensed under the Silabs License Agreement. See the file "Silabs_License_Agreement.txt" for details. Before using this software for any purpose, you must agree to the terms of that agreement.

Definition in file msdh.c.

#include <inttypes.h>
#include "em_device.h"
#include "em_usb.h"
#include "msdscsi.h"

Go to the source code of this file.

Functions

bool MSDH_GetBlockSize (uint32_t *blockSize)
 Get blocksize from the device. More...
 
bool MSDH_GetSectorCount (uint32_t *sectorCount)
 Get sectorcount from the device. More...
 
bool MSDH_GetSectorSize (uint16_t *sectorSize)
 Get sectorsize from the device. More...
 
bool MSDH_Init (uint8_t *usbDeviceInfo, int usbDeviceInfoSize)
 Initialize an USB connected Mass Storage Device. Checks if the device is a valid MSD device. Will perform all necessary MSD initialization. More...
 
bool MSDH_ReadSectors (uint32_t lba, uint16_t sectors, void *data)
 Read sectors from device. More...
 
bool MSDH_WriteSectors (uint32_t lba, uint16_t sectors, const void *data)
 Write sectors to device. More...