Select one of the symbols to view example projects that use it.
 
Outline
#define __USBD_CONF__H__
#include "stm32f4xx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define USBD_MAX_NUM_INTERFACES
#define USBD_MAX_NUM_CONFIGURATION
#define USBD_MAX_STR_DESC_SIZ
#define USBD_SELF_POWERED
#define USBD_DEBUG_LEVEL
#define MSC_MEDIA_PACKET
#define USBD_malloc
#define USBD_free
#define USBD_memset
#define USBD_memcpy
#define USBD_Delay
#define USBD_UsrLog
#define USBD_ErrLog
#define USBD_DbgLog
Files
loading...
CodeScopeSTM32 Libraries and SamplesDemonstrationsInc/usbd_conf.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file 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__ #include "stm32f4xx.h" #include <stdio.h> #include <stdlib.h> #include <string.h> /* Includes ------------------------------------------------------------------*/ /** @addtogroup USBD_OTG_DRIVER * @{ *//* ... */ /** @defgroup USBD_CONF * @brief usb otg low level driver configuration file * @{ *//* ... */ /** @defgroup USBD_CONF_Exported_Defines * @{ *//* ... */ /* Common Config */ #define USBD_MAX_NUM_INTERFACES 1 #define USBD_MAX_NUM_CONFIGURATION 1 #define USBD_MAX_STR_DESC_SIZ 0x100 #define USBD_SELF_POWERED 1 #define USBD_DEBUG_LEVEL 0 /* MSC Class Config */ #define MSC_MEDIA_PACKET 8192 /** @defgroup USBD_Exported_Macros * @{ *//* ... */ /* Memory management macros */ #define USBD_malloc malloc #define USBD_free free #define USBD_memset memset #define USBD_memcpy memcpy #define USBD_Delay HAL_Delay 11 defines /* DEBUG macros */ #if (USBD_DEBUG_LEVEL > 0) #define USBD_UsrLog(...) printf(__VA_ARGS__);\ printf("\n");... /* ... */#else #define USBD_UsrLog(...) #endif #if (USBD_DEBUG_LEVEL > 1) #define USBD_ErrLog(...) printf("ERROR: ") ;\ printf(__VA_ARGS__);\ printf("\n");... /* ... */#else #define USBD_ErrLog(...) #endif #if (USBD_DEBUG_LEVEL > 2) #define USBD_DbgLog(...) printf("DEBUG : ") ;\ printf(__VA_ARGS__);\ printf("\n");... /* ... */#else #define USBD_DbgLog(...) #endif /** * @} *//* ... */ /** * @} *//* ... */ /** @defgroup USBD_CONF_Exported_Types * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup USBD_CONF_Exported_Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup USBD_CONF_Exported_Variables * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup USBD_CONF_Exported_FunctionsPrototype * @{ *//* ... */ /** * @} *//* ... */ /* ... */ #endif //__USBD_CONF__H__ /** * @} *//* ... */ /** * @} *//* ... */