2 ******************************************************************************
3 * @file USB_Device/CDC_Standalone/Inc/usbd_conf.h
4 * @author MCD Application Team
7 * @brief General low level driver configuration
8 ******************************************************************************
11 * <h2><center>© Copyright (c) 2016 STMicroelectronics International N.V.
12 * All rights reserved.</center></h2>
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted, provided that the following conditions are met:
17 * 1. Redistribution of source code must retain the above copyright notice,
18 * this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright notice,
20 * this list of conditions and the following disclaimer in the documentation
21 * and/or other materials provided with the distribution.
22 * 3. Neither the name of STMicroelectronics nor the names of other
23 * contributors to this software may be used to endorse or promote products
24 * derived from this software without specific written permission.
25 * 4. This software, including modifications and/or derivative works of this
26 * software, must execute solely and exclusively on microcontroller or
27 * microprocessor devices manufactured by or for STMicroelectronics.
28 * 5. Redistribution and use of this software other than as permitted under
29 * this license is void and will automatically terminate your rights under
32 * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS"
33 * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35 * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY
36 * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT
37 * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
38 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
39 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
40 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
41 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
42 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
43 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 ******************************************************************************
48 /* Define to prevent recursive inclusion -------------------------------------*/
52 /* Includes ------------------------------------------------------------------*/
53 #include "platform.h" // Required for inclusion of stm32Yxx_hal.h below within USB device library code
54 #include "common/maths.h" // Required for MIN & MAX within USB device library code
57 #include "stm32f7xx_hal.h"
58 #elif defined(STM32H7)
59 #include "stm32h7xx_hal.h"
63 #if (USBD_DEBUG_LEVEL > 0)
69 /* Exported types ------------------------------------------------------------*/
70 /* Exported constants --------------------------------------------------------*/
72 #define USBD_MAX_NUM_INTERFACES 3
73 #define USBD_MAX_NUM_CONFIGURATION 1
74 #define USBD_MAX_STR_DESC_SIZ 0x100
75 #define USBD_SUPPORT_USER_STRING 0
76 #define USBD_SELF_POWERED 1
77 #define USBD_DEBUG_LEVEL 0
78 #define MSC_MEDIA_PACKET 512U
81 /* Exported macro ------------------------------------------------------------*/
82 /* Memory management macros */
83 #define USBD_malloc malloc
84 #define USBD_free free
85 #define USBD_memset memset
86 #define USBD_memcpy memcpy
89 #if (USBD_DEBUG_LEVEL > 0)
90 #define USBD_UsrLog(...) printf(__VA_ARGS__);\
93 #define USBD_UsrLog(...)
96 #if (USBD_DEBUG_LEVEL > 1)
98 #define USBD_ErrLog(...) printf("ERROR: ") ;\
102 #define USBD_ErrLog(...)
105 #if (USBD_DEBUG_LEVEL > 2)
106 #define USBD_DbgLog(...) printf("DEBUG : ") ;\
107 printf(__VA_ARGS__);\
110 #define USBD_DbgLog(...)
113 /* Exported functions ------------------------------------------------------- */
115 #endif /* __USBD_CONF_H */
117 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/