1 /* USER CODE BEGIN Header */ 2 /** 3 ****************************************************************************** 4 * @file : usbh_platform.h 5 * @brief : Header for usbh_platform.c file. 6 ****************************************************************************** 7 * @attention 8 * 9 * <h2><center>© Copyright (c) 2021 STMicroelectronics. 10 * All rights reserved.</center></h2> 11 * 12 * This software component is licensed by ST under Ultimate Liberty license 13 * SLA0044, the "License"; You may not use this file except in compliance with 14 * the License. You may obtain a copy of the License at: 15 * www.st.com/SLA0044 16 * 17 ****************************************************************************** 18 */ 19 /* USER CODE END Header */ 20 21 /* Define to prevent recursive inclusion -------------------------------------*/ 22 #ifndef __USBH_PLATFORM_H__ 23 #define __USBH_PLATFORM_H__ 24 25 #ifdef __cplusplus 26 extern "C" { 27 #endif 28 29 /* Includes ------------------------------------------------------------------*/ 30 #include "usb_host.h" 31 32 /* USER CODE BEGIN INCLUDE */ 33 34 /* USER CODE END INCLUDE */ 35 36 void MX_DriverVbusFS(uint8_t state); 37 38 #ifdef __cplusplus 39 } 40 #endif 41 42 #endif /* __USBH_PLATFORM_H__ */ 43 44 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 45