vtx: fix VTX_SETTINGS_POWER_COUNT and add dummy entries to saPowerNames
[inav.git] / src / main / vcp_hal / usbd_conf.h
blobd104c79bfdb594b573df3ce7e6ff49dbb6b20a39
1 /**
2 ******************************************************************************
3 * @file USB_Device/CDC_Standalone/Inc/usbd_conf.h
4 * @author MCD Application Team
5 * @version V1.0.0
6 * @date 22-April-2016
7 * @brief General low level driver configuration
8 ******************************************************************************
9 * @attention
11 * <h2><center>&copy; 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
30 * this license.
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 -------------------------------------*/
49 #ifndef __USBD_CONF_H
50 #define __USBD_CONF_H
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
56 #if defined(STM32F7)
57 #include "stm32f7xx_hal.h"
58 #elif defined(STM32H7)
59 #include "stm32h7xx_hal.h"
60 #else
61 #error Unknown MCU
62 #endif
63 #if (USBD_DEBUG_LEVEL > 0)
64 #include <stdio.h>
65 #endif
66 #include <stdlib.h>
67 #include <string.h>
69 /* Exported types ------------------------------------------------------------*/
70 /* Exported constants --------------------------------------------------------*/
71 /* Common Config */
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
79 #define USE_USB_FS
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
88 /* DEBUG macros */
89 #if (USBD_DEBUG_LEVEL > 0)
90 #define USBD_UsrLog(...) printf(__VA_ARGS__);\
91 printf("\n");
92 #else
93 #define USBD_UsrLog(...)
94 #endif
96 #if (USBD_DEBUG_LEVEL > 1)
98 #define USBD_ErrLog(...) printf("ERROR: ") ;\
99 printf(__VA_ARGS__);\
100 printf("\n");
101 #else
102 #define USBD_ErrLog(...)
103 #endif
105 #if (USBD_DEBUG_LEVEL > 2)
106 #define USBD_DbgLog(...) printf("DEBUG : ") ;\
107 printf(__VA_ARGS__);\
108 printf("\n");
109 #else
110 #define USBD_DbgLog(...)
111 #endif
113 /* Exported functions ------------------------------------------------------- */
115 #endif /* __USBD_CONF_H */
117 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/