12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
- * File Name : usb_prop.h
- * Author : MCD Application Team
- * Version : V3.1.0
- * Date : 10/30/2009
- * Description : All processing related to Mass Storage Demo (Endpoint 0)
- ********************************************************************************
- * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
- * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
- * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
- * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
- * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
- * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
- *******************************************************************************/
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __usb_prop_H
- #define __usb_prop_H
- /* Includes ------------------------------------------------------------------*/
- /* Exported types ------------------------------------------------------------*/
- /* Exported constants --------------------------------------------------------*/
- #define Mass_Storage_GetConfiguration NOP_Process
- /* #define Mass_Storage_SetConfiguration NOP_Process*/
- #define Mass_Storage_GetInterface NOP_Process
- #define Mass_Storage_SetInterface NOP_Process
- #define Mass_Storage_GetStatus NOP_Process
- /* #define Mass_Storage_ClearFeature NOP_Process*/
- #define Mass_Storage_SetEndPointFeature NOP_Process
- #define Mass_Storage_SetDeviceFeature NOP_Process
- /*#define Mass_Storage_SetDeviceAddress NOP_Process*/
- /* MASS Storage Requests*/
- #define GET_MAX_LUN 0xFE
- #define MASS_STORAGE_RESET 0xFF
- #define LUN_DATA_LENGTH 1
- /* Exported macro ------------------------------------------------------------*/
- /* Exported functions ------------------------------------------------------- */
- void MASS_init(void);
- void MASS_Reset(void);
- void Mass_Storage_SetConfiguration(void);
- void Mass_Storage_ClearFeature(void);
- void Mass_Storage_SetDeviceAddress (void);
- void MASS_Status_In (void);
- void MASS_Status_Out (void);
- RESULT MASS_Data_Setup(uint8_t);
- RESULT MASS_NoData_Setup(uint8_t);
- RESULT MASS_Get_Interface_Setting(uint8_t Interface, uint8_t AlternateSetting);
- uint8_t *MASS_GetDeviceDescriptor(uint16_t );
- uint8_t *MASS_GetConfigDescriptor(uint16_t);
- uint8_t *MASS_GetStringDescriptor(uint16_t);
- uint8_t *Get_Max_Lun(uint16_t Length);
- #endif /* __usb_prop_H */
- /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/
|