Searched refs:tx_buffer_length (Results 1 – 7 of 7) sorted by relevance
| /external/platform/nrfx/drivers/src/ |
| A D | nrfx_uart.c | 61 volatile size_t tx_buffer_length; member 205 p_cb->tx_buffer_length = 0; in nrfx_uart_init() 247 size_t const tx_buffer_length = p_cb->tx_buffer_length; in tx_blocking() local 248 while (p_cb->tx_counter < tx_buffer_length) in tx_blocking() 285 p_cb->tx_buffer_length = length; in nrfx_uart_tx() 290 NRFX_LOG_INFO("Transfer tx_len: %d.", p_cb->tx_buffer_length); in nrfx_uart_tx() 316 p_cb->tx_buffer_length = 0; in nrfx_uart_tx() 516 p_cb->tx_buffer_length = 0; in tx_done_event() 606 size_t const tx_buffer_length = p_cb->tx_buffer_length; in uart_irq_handler() local 614 if (p_cb->tx_buffer_length) in uart_irq_handler() [all …]
|
| A D | nrfx_uarte.c | 95 volatile size_t tx_buffer_length; member 293 p_cb->tx_buffer_length = 0; in nrfx_uarte_init() 381 p_cb->tx_buffer_length = length; in nrfx_uarte_tx() 384 NRFX_LOG_INFO("Transfer tx_len: %d.", p_cb->tx_buffer_length); in nrfx_uarte_tx() 387 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uarte_tx() 393 nrf_uarte_tx_buffer_set(p_instance->p_reg, p_cb->p_tx_buffer, p_cb->tx_buffer_length); in nrfx_uarte_tx() 420 p_cb->tx_buffer_length = 0; in nrfx_uarte_tx() 429 return (m_cb[p_instance->drv_inst_idx].tx_buffer_length != 0); in nrfx_uarte_tx_in_progress() 575 p_cb->tx_buffer_length = 0; in tx_done_event() 676 if (p_cb->tx_buffer_length != 0) in uarte_irq_handler() [all …]
|
| A D | nrfx_spis.c | 385 size_t tx_buffer_length, in nrfx_spis_buffers_set() argument 389 NRFX_ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); in nrfx_spis_buffers_set() 397 tx_buffer_length)) in nrfx_spis_buffers_set() 421 p_cb->tx_buffer_size = tx_buffer_length; in nrfx_spis_buffers_set()
|
| A D | nrfx_qspi.c | 347 size_t tx_buffer_length, in nrfx_qspi_write() argument 358 nrf_qspi_write_buffer_set(NRF_QSPI, p_tx_buffer, tx_buffer_length, dst_address); in nrfx_qspi_write()
|
| /external/platform/nrfx/drivers/include/ |
| A D | nrfx_spis.h | 239 size_t tx_buffer_length,
|
| A D | nrfx_qspi.h | 211 size_t tx_buffer_length,
|
| /external/platform/nrfx/ |
| A D | CHANGELOG.md | 155 - Declared the tx_buffer_length field in the UART driver's control block as volatile to prevent iss… 215 …uld return an incorrect value. The driver now correctly updates the tx_buffer_length variable inte…
|
Completed in 11 milliseconds