Select one of the symbols to view example projects that use it.
 
Outline
#define __USBD_CDC_IF_H
Includes
#include "usbd_cdc.h"
Exported constants
#define USARTx
#define USARTx_CLK_ENABLE
#define DMAx_CLK_ENABLE
#define USARTx_RX_GPIO_CLK_ENABLE
#define USARTx_TX_GPIO_CLK_ENABLE
#define USARTx_FORCE_RESET
#define USARTx_RELEASE_RESET
#define USARTx_TX_PIN
#define USARTx_TX_GPIO_PORT
#define USARTx_TX_AF
#define USARTx_RX_PIN
#define USARTx_RX_GPIO_PORT
#define USARTx_RX_AF
#define USARTx_IRQn
#define USARTx_IRQHandler
#define USARTx_TX_DMA_CHANNEL
#define USARTx_TX_DMA_STREAM
#define USARTx_DMA_TX_IRQHandler
#define USARTx_DMA_TX_IRQn
#define TIMx
#define TIMx_CLK_ENABLE
#define TIMx_FORCE_RESET
#define TIMx_RELEASE_RESET
#define TIMx_IRQn
#define TIMx_IRQHandler
#define CDC_POLLING_INTERVAL
USBD_CDC_fops;
Files
loading...
SourceVuSTM32 Libraries and SamplesCDC_StandaloneInc/usbd_cdc_interface.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/CDC_Standalone/Inc/usbd_cdc_interface.h * @author MCD Application Team * @brief Header for usbd_cdc_interface.c file. ****************************************************************************** * @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_CDC_IF_H #define __USBD_CDC_IF_H /* Includes ------------------------------------------------------------------*/ #include "usbd_cdc.h" Includes /* Exported types ------------------------------------------------------------*/ /* Exported constants --------------------------------------------------------*/ /* User can use this section to tailor USARTx/UARTx instance used and associated resources *//* ... */ /* Definition for USARTx clock resources */ #define USARTx USART1 #define USARTx_CLK_ENABLE() __HAL_RCC_USART1_CLK_ENABLE(); #define DMAx_CLK_ENABLE() __HAL_RCC_DMA2_CLK_ENABLE() #define USARTx_RX_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() #define USARTx_TX_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() #define USARTx_FORCE_RESET() __HAL_RCC_USART1_FORCE_RESET() #define USARTx_RELEASE_RESET() __HAL_RCC_USART1_RELEASE_RESET() /* Definition for USARTx Pins */ #define USARTx_TX_PIN GPIO_PIN_9 #define USARTx_TX_GPIO_PORT GPIOA #define USARTx_TX_AF GPIO_AF7_USART1 #define USARTx_RX_PIN GPIO_PIN_10 #define USARTx_RX_GPIO_PORT GPIOA #define USARTx_RX_AF GPIO_AF7_USART1 /* Definition for USARTx's NVIC: used for receiving data over Rx pin */ #define USARTx_IRQn USART1_IRQn #define USARTx_IRQHandler USART1_IRQHandler /* Definition for USARTx's DMA: used for transmitting data over Tx pin */ #define USARTx_TX_DMA_CHANNEL DMA_CHANNEL_4 #define USARTx_TX_DMA_STREAM DMA2_Stream7 #define USARTx_DMA_TX_IRQHandler DMA2_Stream7_IRQHandler #define USARTx_DMA_TX_IRQn DMA2_Stream7_IRQn /* Definition for TIMx clock resources */ #define TIMx TIM3 #define TIMx_CLK_ENABLE __HAL_RCC_TIM3_CLK_ENABLE #define TIMx_FORCE_RESET() __HAL_RCC_USART3_FORCE_RESET() #define TIMx_RELEASE_RESET() __HAL_RCC_USART3_RELEASE_RESET() /* Definition for TIMx's NVIC */ #define TIMx_IRQn TIM3_IRQn #define TIMx_IRQHandler TIM3_IRQHandler /* Periodically, the state of the buffer "UserTxBuffer" is checked. The period depends on CDC_POLLING_INTERVAL *//* ... */ #define CDC_POLLING_INTERVAL 5 /* in ms. The max is 65ms and the min is 1ms */ 26 defines extern USBD_CDC_ItfTypeDef USBD_CDC_fops; Exported constants /* Exported macro ------------------------------------------------------------*/ /* Exported functions ------------------------------------------------------- *//* ... */ #endif /* __USBD_CDC_IF_H */
Details