Searched refs:p_tx_buffer (Results 1 – 13 of 13) sorted by relevance
/lk-master/external/platform/nrfx/drivers/src/ |
A D | nrfx_i2s.c | 271 p_initial_buffers->p_tx_buffer != NULL); in nrfx_i2s_start() 275 NRFX_ASSERT((p_initial_buffers->p_tx_buffer == NULL) || in nrfx_i2s_start() 295 ((p_initial_buffers->p_tx_buffer != NULL) in nrfx_i2s_start() 317 m_cb.current_buffers.p_tx_buffer = NULL; in nrfx_i2s_start() 322 m_cb.next_buffers.p_tx_buffer); in nrfx_i2s_start() 348 NRFX_ASSERT((p_buffers->p_tx_buffer == NULL) || in nrfx_i2s_next_buffers_set() 349 (nrfx_is_in_ram(p_buffers->p_tx_buffer) && in nrfx_i2s_next_buffers_set() 366 ((p_buffers->p_tx_buffer != NULL) in nrfx_i2s_next_buffers_set() 367 && !nrfx_is_in_ram(p_buffers->p_tx_buffer))) in nrfx_i2s_next_buffers_set() 378 NRFX_ASSERT(p_buffers->p_tx_buffer != NULL); in nrfx_i2s_next_buffers_set() [all …]
|
A D | nrfx_qspi.c | 164 void const * p_tx_buffer, in nrfx_qspi_cinstr_xfer() argument 178 if (p_tx_buffer) in nrfx_qspi_cinstr_xfer() 180 nrf_qspi_cinstrdata_set(NRF_QSPI, p_config->length, p_tx_buffer); in nrfx_qspi_cinstr_xfer() 208 void const * p_tx_buffer) in nrfx_qspi_cinstr_quick_send() argument 211 return nrfx_qspi_cinstr_xfer(&config, p_tx_buffer, NULL); in nrfx_qspi_cinstr_quick_send() 238 nrfx_err_t nrfx_qspi_lfm_xfer(void const * p_tx_buffer, in nrfx_qspi_lfm_xfer() argument 258 if (p_tx_buffer) in nrfx_qspi_lfm_xfer() 262 &((uint8_t const *)p_tx_buffer)[curr_byte]); in nrfx_qspi_lfm_xfer() 346 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, in nrfx_qspi_write() argument 351 NRFX_ASSERT(p_tx_buffer != NULL); in nrfx_qspi_write() [all …]
|
A D | nrfx_spis.c | 384 uint8_t const * p_tx_buffer, in nrfx_spis_buffers_set() argument 389 NRFX_ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); in nrfx_spis_buffers_set() 404 if ((p_tx_buffer != NULL && !nrfx_is_in_ram(p_tx_buffer)) || in nrfx_spis_buffers_set() 419 p_cb->tx_buffer = p_tx_buffer; in nrfx_spis_buffers_set()
|
A D | nrfx_spi.c | 282 nrf_spi_txd_set(p_spi, p_cb->evt.xfer_desc.p_tx_buffer[bytes_used]); in transfer_byte() 308 (p_xfer_desc->tx_length > 0 ? p_xfer_desc->p_tx_buffer[0] : p_cb->orc)); in spi_xfer() 316 nrf_spi_txd_set(p_spi, p_xfer_desc->p_tx_buffer[1]); in spi_xfer() 352 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spi_xfer()
|
A D | nrfx_uart.c | 58 uint8_t const * p_tx_buffer; member 238 uint8_t txd = p_cb->p_tx_buffer[p_cb->tx_counter]; in tx_byte() 286 p_cb->p_tx_buffer = p_data; in nrfx_uart_tx() 292 NRFX_LOG_HEXDUMP_DEBUG(p_cb->p_tx_buffer, in nrfx_uart_tx() 293 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uart_tx() 514 event.data.rxtx.p_data = (uint8_t *)p_cb->p_tx_buffer; in tx_done_event()
|
A D | nrfx_uarte.c | 92 uint8_t const * p_tx_buffer; member 382 p_cb->p_tx_buffer = p_data; in nrfx_uarte_tx() 386 NRFX_LOG_HEXDUMP_DEBUG(p_cb->p_tx_buffer, 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() 573 event.data.rxtx.p_data = (uint8_t *)p_cb->p_tx_buffer; in tx_done_event()
|
A D | nrfx_spim.c | 571 if ((p_xfer_desc->p_tx_buffer != NULL && !nrfx_is_in_ram(p_xfer_desc->p_tx_buffer)) || in spim_xfer() 587 nrf_spim_tx_buffer_set(p_spim, p_xfer_desc->p_tx_buffer, p_xfer_desc->tx_length); in spim_xfer() 593 anomaly_198_enable(p_xfer_desc->p_tx_buffer, p_xfer_desc->tx_length); in spim_xfer() 611 nrf_spim_tx_buffer_set(p_spim, p_xfer_desc->p_tx_buffer, 0); in spim_xfer() 663 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spim_xfer()
|
/lk-master/external/platform/nrfx/drivers/include/ |
A D | nrfx_qspi.h | 210 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, 274 void const * p_tx_buffer, 292 void const * p_tx_buffer); 327 nrfx_err_t nrfx_qspi_lfm_xfer(void const * p_tx_buffer,
|
A D | nrfx_spi.h | 143 uint8_t const * p_tx_buffer; ///< Pointer to TX buffer. member 156 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
A D | nrfx_spim.h | 195 uint8_t const * p_tx_buffer; ///< Pointer to TX buffer. member 208 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
A D | nrfx_i2s.h | 89 uint32_t const * p_tx_buffer; ///< Pointer to the buffer with data to be sent. member
|
A D | nrfx_spis.h | 238 uint8_t const * p_tx_buffer,
|
/lk-master/external/platform/nrfx/hal/ |
A D | nrf_i2s.h | 452 uint32_t const * p_tx_buffer);
|
Completed in 17 milliseconds