Select one of the symbols to view example projects that use it.
 
Outline
#define __USBD_CONF_H
Includes
#include "stm32f4xx_hal.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 USBD_AUDIO_FREQ
#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 SamplesAUDIO_StandaloneInc/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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file USB_Device/AUDIO_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 */ #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 /* AUDIO Class Config */ #define USBD_AUDIO_FREQ 48000 /* Exported macro ------------------------------------------------------------*/ /* 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 /* Exported functions ------------------------------------------------------- */ /* ... */ #endif /* __USBD_CONF_H */