mirror of
https://github.com/micropython/micropython.git
synced 2025-09-09 19:30:53 +02:00
99 lines
2.2 KiB
C
99 lines
2.2 KiB
C
/**
|
|
******************************************************************************
|
|
* @file usbd_dfu_media_template.h
|
|
* @author MCD Application Team
|
|
* @version V2.0.0
|
|
* @date 18-February-2014
|
|
* @brief header file for the usbd_dfu_media_template.c file
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
|
|
*
|
|
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
|
|
* You may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at:
|
|
*
|
|
* http://www.st.com/software_license_agreement_liberty_v2
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
|
|
#ifndef __USBD_DFU_MEDIA_H_
|
|
#define __USBD_DFU_MEDIA_H_
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "usbd_dfu.h"
|
|
|
|
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup USBD_MEDIA
|
|
* @brief header file for the USBD_MEDIA.c file
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup USBD_MEDIA_Exported_Defines
|
|
* @{
|
|
*/
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
/** @defgroup USBD_MEDIA_Exported_Types
|
|
* @{
|
|
*/
|
|
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
|
|
/** @defgroup USBD_MEDIA_Exported_Macros
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup USBD_MEDIA_Exported_Variables
|
|
* @{
|
|
*/
|
|
extern USBD_DFU_MediaTypeDef USBD_DFU_MEDIA_Template_fops;
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup USBD_MEDIA_Exported_FunctionsPrototype
|
|
* @{
|
|
*/
|
|
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#endif /* __USBD_DFU_MEDIA_H_ */
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|