Home
last modified time | relevance | path

Searched refs:nrf_uart_event_check (Results 1 – 2 of 2) sorted by relevance

/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_uart.c321 while (!nrf_uart_event_check(p_uart, NRF_UART_EVENT_TXDRDY)) in tx_blocking()
382 while (!nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_TXDRDY)) in nrfx_uart_tx()
488 error = nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_ERROR); in nrfx_uart_rx()
489 rxrdy = nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_RXDRDY); in nrfx_uart_rx()
490 rxto = nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_RXTO); in nrfx_uart_rx()
543 return nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_RXDRDY); in nrfx_uart_rx_ready()
640 nrf_uart_event_check(p_uart, NRF_UART_EVENT_ERROR)) in irq_handler()
663 nrf_uart_event_check(p_uart, NRF_UART_EVENT_RXDRDY)) in irq_handler()
694 if (nrf_uart_event_check(p_uart, NRF_UART_EVENT_TXDRDY)) in irq_handler()
713 if (nrf_uart_event_check(p_uart, NRF_UART_EVENT_RXTO)) in irq_handler()
/hal_nordic-latest/nrfx/hal/
Dnrf_uart.h193 NRF_STATIC_INLINE bool nrf_uart_event_check(NRF_UART_Type const * p_reg, nrf_uart_event_t event);
424 NRF_STATIC_INLINE bool nrf_uart_event_check(NRF_UART_Type const * p_reg, nrf_uart_event_t event) in nrf_uart_event_check() function