Home
last modified time | relevance | path

Searched refs:tx_buffer_length (Results 1 – 6 of 6) sorted by relevance

/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_uart.c63 volatile size_t tx_buffer_length; member
240 p_cb->tx_buffer_length = 0; in nrfx_uart_init()
316 size_t const tx_buffer_length = p_cb->tx_buffer_length; in tx_blocking() local
317 while (p_cb->tx_counter < tx_buffer_length) in tx_blocking()
355 p_cb->tx_buffer_length = length; in nrfx_uart_tx()
360 NRFX_LOG_INFO("Transfer tx_len: %d.", p_cb->tx_buffer_length); in nrfx_uart_tx()
363 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uart_tx()
386 p_cb->tx_buffer_length = 0; in nrfx_uart_tx()
397 return (m_cb[p_instance->drv_inst_idx].tx_buffer_length != 0); in nrfx_uart_tx_in_progress()
605 p_cb->tx_buffer_length = 0; in tx_done_event()
[all …]
Dnrfx_spis.c523 size_t tx_buffer_length, in nrfx_spis_buffers_set() argument
531 NRFX_ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); in nrfx_spis_buffers_set()
536 tx_buffer_length)) in nrfx_spis_buffers_set()
560 p_cb->tx_buffer_size = tx_buffer_length; in nrfx_spis_buffers_set()
Dnrfx_qspi.c793 size_t tx_buffer_length, in nrfx_qspi_write() argument
800 return qspi_xfer((void *)p_tx_buffer, tx_buffer_length, dst_address, NRFX_QSPI_STATE_WRITE); in nrfx_qspi_write()
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_spis.h269 size_t tx_buffer_length,
Dnrfx_qspi.h348 size_t tx_buffer_length,
/hal_nordic-latest/nrfx/
DCHANGELOG.md551 - Declared the tx_buffer_length field in the UART driver's control block as volatile to prevent iss…
611 …uld return an incorrect value. The driver now correctly updates the tx_buffer_length variable inte…