Searched refs:UART_FLAG_RXNE (Results 1 – 4 of 4) sorted by relevance
| /bsp/stm32/libraries/HAL_Drivers/drivers/ |
| A D | drv_usart.c | 368 if (__HAL_UART_GET_FLAG(&(uart->handle), UART_FLAG_RXNE) != RESET) in stm32_getc() 468 if ((__HAL_UART_GET_FLAG(&(uart->handle), UART_FLAG_RXNE) != RESET) && in uart_isr() 538 if (__HAL_UART_GET_FLAG(&(uart->handle), UART_FLAG_RXNE) != RESET) in uart_isr() 540 UART_INSTANCE_CLEAR_FUNCTION(&(uart->handle), UART_FLAG_RXNE); in uart_isr()
|
| A D | drv_usart_v2.c | 373 if (__HAL_UART_GET_FLAG(&(uart->handle), UART_FLAG_RXNE) != RESET) in stm32_getc() 448 …if ((__HAL_UART_GET_FLAG(&(uart->handle), UART_FLAG_RXNE)) && (__HAL_UART_GET_IT_SOURCE(&(uart->ha… in uart_isr() 458 } while (__HAL_UART_GET_FLAG(&uart->handle, UART_FLAG_RXNE) && rx_drain_limit > 0); in uart_isr()
|
| /bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Inc/ |
| A D | stm32l1xx_hal_uart.h | 351 #define UART_FLAG_RXNE ((uint32_t)USART_SR_RXNE) macro
|
| /bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Src/ |
| A D | stm32l1xx_hal_uart.c | 1260 if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_RXNE, RESET, tickstart, Timeout) != HAL_OK) in HAL_UART_Receive() 1675 if (__HAL_UART_GET_FLAG(huart, UART_FLAG_RXNE)) in HAL_UARTEx_ReceiveToIdle()
|
Completed in 27 milliseconds