/*! * @file usbd_class_cdc.h * * @brief CDC Class handler file head file * * @version V1.0.0 * * @date 2022-09-20 * * @attention * * Copyright (C) 2020-2022 Geehy Semiconductor * * You may not use this file except in compliance with the * GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE). * * The program is only for reference, which is distributed in the hope * that it will be useful and instructional for customers to develop * their software. Unless required by applicable law or agreed to in * writing, the program is distributed on an "AS IS" BASIS, WITHOUT * ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied. * See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions * and limitations under the License. */ /* Define to prevent recursive inclusion */ #ifndef __USBD_CDC_CLASS_ #define __USBD_CDC_CLASS_ /* Includes */ #include "usbd_core.h" /** @addtogroup USB_Driver_Library USB Driver Library @{ */ /** @addtogroup Core_Device Core Device @{ */ /** @addtogroup Class @{ */ /** @addtogroup CDC @{ */ /** @defgroup CDC_Macros Macros @{ */ /**@} end of group CDC_Macros */ /** @defgroup CDC_Enumerations Enumerations @{ */ /**@} end of group CDC_Enumerations */ /** @defgroup CDC_Structures Structures @{ */ /**@} end of group CDC_Structures */ /** @defgroup CDC_Variables Variables @{ */ /**@} end of group CDC_Variables */ /** @defgroup CDC_Functions Functions @{ */ void USBD_ClassHandler(USBD_DevReqData_T* reqData); #endif /**@} end of group CDC_Functions */ /**@} end of group CDC */ /**@} end of group Class */ /**@} end of group Core_Device */ /**@} end of group USB_Driver_Library */