|
STM32G474xx HAL用户手册
|
定义 | |
| #define | USART_STOPBITS_0_5 USART_CR2_STOP_0 |
| #define | USART_STOPBITS_1 0x00000000U |
| #define | USART_STOPBITS_1_5 (USART_CR2_STOP_0 | USART_CR2_STOP_1) |
| #define | USART_STOPBITS_2 USART_CR2_STOP_1 |
| #define USART_STOPBITS_0_5 USART_CR2_STOP_0 |
具有0.5个停止位的USART帧
定义位于文件 stm32g4xx_hal_usart.h 的第240行
| #define USART_STOPBITS_1 0x00000000U |
具有1个停止位的USART帧
定义位于文件 stm32g4xx_hal_usart.h 的第241行
| #define USART_STOPBITS_1_5 (USART_CR2_STOP_0 | USART_CR2_STOP_1) |
具有1.5个停止位的USART帧
定义位于文件 stm32g4xx_hal_usart.h 的第242行
| #define USART_STOPBITS_2 USART_CR2_STOP_1 |
具有2个停止位的USART帧
定义位于文件 stm32g4xx_hal_usart.h 的第243行
1.7.6.1