HAL + 0/2 examples
CodeScope will show references to UART_FLAG_TXE from the following samples and libraries:
Examples
STM32446E-Nucleo
Examples
UART
STM32F429ZI-Nucleo
Examples
UART
 
Symbols
loading...
Files
loading...

UART_FLAG_TXE macro

Syntax

#define UART_FLAG_TXE ((uint32_t)USART_SR_TXE)

Examples

UART_FLAG_TXE is referenced by 2 libraries and example projects.

References

LocationText
stm32f4xx_hal_uart.h:361
#define UART_FLAG_TXE ((uint32_t)USART_SR_TXE)
stm32f4xx_hal_uart.c:1172
if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK)
stm32f4xx_hal_uart.c:3200
if ((READ_BIT(huart->Instance->CR1, USART_CR1_RE) != 0U) && (Flag != UART_FLAG_TXE) && (Flag != UART_FLAG_TC))