/** ****************************************************************************** * @file USB_Device/DFU_Standalone/Inc/usbd_conf.h * @author MCD Application Team * @brief General low level driver configuration ****************************************************************************** * @attention * * Copyright (c) 2017 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__USBD_CONF_H#define__USBD_CONF_H/* Includes ------------------------------------------------------------------*/#include"stm32f4xx_hal.h"#include<stdio.h>#include<stdlib.h>#include<string.h>Includes/* Exported types ------------------------------------------------------------*//* Exported constants --------------------------------------------------------*//* Common Config *//* Maximum number of supported media : Flash */#defineUSBD_MAX_NUM_INTERFACES1#defineUSBD_MAX_NUM_CONFIGURATION1#defineUSBD_MAX_STR_DESC_SIZ0x100#defineUSBD_SUPPORT_USER_STRING_DESC1#defineUSBD_SELF_POWERED1#defineUSBD_DEBUG_LEVEL0/* DFU Class Config */#defineUSBD_DFU_MAX_ITF_NUM1#defineUSBD_DFU_XFER_SIZE1024/* Max DFU Packet Size = 1024 bytes */#defineUSBD_DFU_APP_DEFAULT_ADD0x08008000/* The first 2 sectors (32 KB) are reserved for DFU code */#defineUSBD_DFU_MAX_NB_OF_SECTORS8/* Max number of sectors *//* Exported macro ------------------------------------------------------------*//* Memory management macros */#defineUSBD_mallocmalloc#defineUSBD_freefree#defineUSBD_memsetmemset#defineUSBD_memcpymemcpy#defineUSBD_DelayHAL_Delay#defineUSBD_DelayHAL_Delay16 defines/* DEBUG macros */#if(USBD_DEBUG_LEVEL>0)#defineUSBD_UsrLog(...)printf(__VA_ARGS__);\printf("\n");.../* ... */#else#defineUSBD_UsrLog(...)#endif#if(USBD_DEBUG_LEVEL>1)#defineUSBD_ErrLog(...)printf("ERROR: ");\printf(__VA_ARGS__);\printf("\n");.../* ... */#else#defineUSBD_ErrLog(...)#endif#if(USBD_DEBUG_LEVEL>2)#defineUSBD_DbgLog(...)printf("DEBUG : ");\printf(__VA_ARGS__);\printf("\n");.../* ... */#else#defineUSBD_DbgLog(...)#endif/* Exported functions ------------------------------------------------------- *//* ... */#endif/* __USBD_CONF_H */
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.