STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
Functions | Variables
usbd_msc.c File Reference

This file provides all the MSC core functions. More...

#include "usbd_msc.h"

Go to the source code of this file.

Functions

uint8_t USBD_MSC_Init (USBD_HandleTypeDef *pdev, uint8_t cfgidx)
 USBD_MSC_Init Initialize the mass storage configuration. More...
 
uint8_t USBD_MSC_DeInit (USBD_HandleTypeDef *pdev, uint8_t cfgidx)
 USBD_MSC_DeInit DeInitilaize the mass storage configuration. More...
 
uint8_t USBD_MSC_Setup (USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req)
 USBD_MSC_Setup Handle the MSC specific requests. More...
 
uint8_t USBD_MSC_DataIn (USBD_HandleTypeDef *pdev, uint8_t epnum)
 USBD_MSC_DataIn handle data IN Stage. More...
 
uint8_t USBD_MSC_DataOut (USBD_HandleTypeDef *pdev, uint8_t epnum)
 USBD_MSC_DataOut handle data OUT Stage. More...
 
uint8_t * USBD_MSC_GetHSCfgDesc (uint16_t *length)
 USBD_MSC_GetHSCfgDesc return configuration descriptor. More...
 
uint8_t * USBD_MSC_GetFSCfgDesc (uint16_t *length)
 USBD_MSC_GetFSCfgDesc return configuration descriptor. More...
 
uint8_t * USBD_MSC_GetOtherSpeedCfgDesc (uint16_t *length)
 USBD_MSC_GetOtherSpeedCfgDesc return other speed configuration descriptor. More...
 
uint8_t * USBD_MSC_GetDeviceQualifierDescriptor (uint16_t *length)
 DeviceQualifierDescriptor return Device Qualifier descriptor. More...
 
uint8_t USBD_MSC_RegisterStorage (USBD_HandleTypeDef *pdev, USBD_StorageTypeDef *fops)
 USBD_MSC_RegisterStorage. More...
 

Variables

USBD_ClassTypeDef USBD_MSC
 
__ALIGN_BEGIN uint8_t USBD_MSC_CfgHSDesc[USB_MSC_CONFIG_DESC_SIZ__ALIGN_END
 

Detailed Description

This file provides all the MSC core functions.

Author
MCD Application Team
Version
V2.4.2
Date
11-December-2015
*      
*          ===================================================================      
*                                MSC Class  Description
*          =================================================================== 
*           This module manages the MSC class V1.0 following the "Universal 
*           Serial Bus Mass Storage Class (MSC) Bulk-Only Transport (BOT) Version 1.0
*           Sep. 31, 1999".
*           This driver implements the following aspects of the specification:
*             - Bulk-Only Transport protocol
*             - Subclass : SCSI transparent command set (ref. SCSI Primary Commands - 3 (SPC-3))
*      
*  
Attention

© COPYRIGHT 2015 STMicroelectronics

Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); You may not use this file except in compliance with the License. You may obtain a copy of the License at:

   http://www.st.com/software_license_agreement_liberty_v2

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Definition in file usbd_msc.c.