/** ****************************************************************************** * @file usb_bsp.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Specific api's relative to the used hardware platform ****************************************************************************** * @attention * * 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. * *

© COPYRIGHT 2011 STMicroelectronics

****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __USB_BSP__H__ #define __USB_BSP__H__ /* Includes ------------------------------------------------------------------*/ #include "usb_core.h" #include "stm32f4xx.h" /** @addtogroup USB_OTG_DRIVER * @{ */ /** @defgroup USB_BSP * @brief This file is the * @{ */ /** @defgroup USB_BSP_Exported_Defines * @{ */ /** * @} */ /** @defgroup USB_BSP_Exported_Types * @{ */ /** * @} */ /** @defgroup USB_BSP_Exported_Macros * @{ */ /** * @} */ /** @defgroup USB_BSP_Exported_Variables * @{ */ /** * @} */ /** @defgroup USB_BSP_Exported_FunctionsPrototype * @{ */ void BSP_Init(void); void USB_OTG_BSP_Init (USB_OTG_CORE_HANDLE *pdev); void USB_OTG_BSP_uDelay (const uint32_t usec); void USB_OTG_BSP_mDelay (const uint32_t msec); void USB_OTG_BSP_EnableInterrupt (USB_OTG_CORE_HANDLE *pdev); #ifdef USE_HOST_MODE void USB_OTG_BSP_ConfigVBUS(USB_OTG_CORE_HANDLE *pdev); void USB_OTG_BSP_DriveVBUS(USB_OTG_CORE_HANDLE *pdev,uint8_t state); #endif /** * @} */ #endif //__USB_BSP__H__ /** * @} */ /** * @} */ /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/