forked from stm/stm32-mw-usb-device
99 lines
1.8 KiB
C
99 lines
1.8 KiB
C
/**
|
|
******************************************************************************
|
|
* @file usbd_template_core.h
|
|
* @author MCD Application Team
|
|
* @brief Header file for the usbd_template_core.c file.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2015 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __USB_TEMPLATE_CORE_H
|
|
#define __USB_TEMPLATE_CORE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "usbd_ioreq.h"
|
|
|
|
/** @addtogroup STM32_USB_DEVICE_LIBRARY
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup USBD_TEMPLATE
|
|
* @brief This file is the header file for usbd_template_core.c
|
|
* @{
|
|
*/
|
|
|
|
|
|
/** @defgroup USBD_TEMPLATE_Exported_Defines
|
|
* @{
|
|
*/
|
|
#define TEMPLATE_EPIN_ADDR 0x81U
|
|
#define TEMPLATE_EPIN_SIZE 0x10U
|
|
|
|
#define USB_TEMPLATE_CONFIG_DESC_SIZ 64U
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
/** @defgroup USBD_CORE_Exported_TypesDefinitions
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
|
|
/** @defgroup USBD_CORE_Exported_Macros
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup USBD_CORE_Exported_Variables
|
|
* @{
|
|
*/
|
|
|
|
extern USBD_ClassTypeDef USBD_TEMPLATE_ClassDriver;
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup USB_CORE_Exported_Functions
|
|
* @{
|
|
*/
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __USB_TEMPLATE_CORE_H */
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|