Home
last modified time | relevance | path

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

/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_uarte.c380 return nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_TXSTOPPED) || in is_tx_ready()
381 (!stop_on_end && nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_ENDTX)); in is_tx_ready()
391 if (nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_RXSTARTED)) in prepare_rx()
398 NRFX_WAIT_FOR(nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_RXTO) || in prepare_rx()
399 nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_ERROR), 100, 10, res); in prepare_rx()
663 if (nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_TXSTOPPED) && !is_rx_active(p_cb)) in disable_hw_from_tx()
683 if (nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_ENDTX)) in block_on_tx()
694 else if (!nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_TXSTOPPED)) in block_on_tx()
995 NRFX_WAIT_FOR(nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_TXSTARTED), 10, 1, res); in nrfx_uarte_tx()
1162 return !nrfy_uarte_event_check(p_uarte, NRF_UARTE_EVENT_TXSTOPPED) || in is_tx_active()
[all …]
/hal_nordic-latest/nrfx/haly/
Dnrfy_uarte.h336 NRFY_STATIC_INLINE bool nrfy_uarte_event_check(NRF_UARTE_Type const * p_reg, in nrfy_uarte_event_check() function