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