Searched refs:p_tx_buffer (Results 1 – 13 of 13) sorted by relevance
| /hal_nordic-latest/nrfx/drivers/src/ |
| D | nrfx_i2s.c | 353 p_initial_buffers->p_tx_buffer != NULL); in nrfx_i2s_start() 357 NRFX_ASSERT((p_initial_buffers->p_tx_buffer == NULL) || in nrfx_i2s_start() 358 (nrfx_is_in_ram(p_initial_buffers->p_tx_buffer) && in nrfx_i2s_start() 359 nrfx_is_word_aligned(p_initial_buffers->p_tx_buffer))); in nrfx_i2s_start() 382 ((p_initial_buffers->p_tx_buffer != NULL) in nrfx_i2s_start() 383 && !nrfx_is_in_ram(p_initial_buffers->p_tx_buffer))) in nrfx_i2s_start() 393 p_cb->use_tx = (p_initial_buffers->p_tx_buffer != NULL); in nrfx_i2s_start() 406 p_cb->current_buffers.p_tx_buffer = NULL; in nrfx_i2s_start() 427 .p_tx_buffer = p_cb->next_buffers.p_tx_buffer, in nrfx_i2s_start() 450 NRFX_ASSERT((p_buffers->p_tx_buffer == NULL) || in nrfx_i2s_next_buffers_set() [all …]
|
| D | nrfx_qspi.c | 513 void const * p_tx_buffer, in nrfx_qspi_cinstr_xfer() argument 551 if (p_tx_buffer) in nrfx_qspi_cinstr_xfer() 553 nrf_qspi_cinstrdata_set(NRF_QSPI, p_config->length, p_tx_buffer); in nrfx_qspi_cinstr_xfer() 582 void const * p_tx_buffer) in nrfx_qspi_cinstr_quick_send() argument 585 NRFX_ASSERT(p_tx_buffer); in nrfx_qspi_cinstr_quick_send() 588 return nrfx_qspi_cinstr_xfer(&config, p_tx_buffer, NULL); in nrfx_qspi_cinstr_quick_send() 644 nrfx_err_t nrfx_qspi_lfm_xfer(void const * p_tx_buffer, in nrfx_qspi_lfm_xfer() argument 671 if (p_tx_buffer) in nrfx_qspi_lfm_xfer() 675 &((uint8_t const *)p_tx_buffer)[curr_byte]); in nrfx_qspi_lfm_xfer() 792 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, in nrfx_qspi_write() argument [all …]
|
| D | nrfx_spis.c | 522 uint8_t const * p_tx_buffer, in nrfx_spis_buffers_set() argument 531 NRFX_ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); in nrfx_spis_buffers_set() 543 if ((p_tx_buffer != NULL && !nrfx_is_in_ram(p_tx_buffer)) || in nrfx_spis_buffers_set() 558 p_cb->tx_buffer = p_tx_buffer; in nrfx_spis_buffers_set()
|
| D | nrfx_spi.c | 325 nrf_spi_txd_set(p_spi, p_cb->evt.xfer_desc.p_tx_buffer[bytes_used]); in transfer_byte() 351 (p_xfer_desc->tx_length > 0 ? p_xfer_desc->p_tx_buffer[0] : p_cb->orc)); in spi_xfer() 359 nrf_spi_txd_set(p_spi, p_xfer_desc->p_tx_buffer[1]); in spi_xfer() 396 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spi_xfer()
|
| D | nrfx_uart.c | 60 uint8_t const * p_tx_buffer; member 307 uint8_t txd = p_cb->p_tx_buffer[p_cb->tx_counter]; in tx_byte() 356 p_cb->p_tx_buffer = p_data; in nrfx_uart_tx() 362 NRFX_LOG_HEXDUMP_DEBUG(p_cb->p_tx_buffer, in nrfx_uart_tx() 363 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uart_tx() 600 event.data.rxtx.p_data = (uint8_t *)p_cb->p_tx_buffer; in tx_done_event()
|
| D | nrfx_spim.c | 808 if ((p_xfer_desc->p_tx_buffer != NULL && in spim_xfer() 809 !nrf_dma_accessible_check(p_spim, p_xfer_desc->p_tx_buffer)) || in spim_xfer() 824 anomaly_198_enable(p_xfer_desc->p_tx_buffer, p_xfer_desc->tx_length); in spim_xfer() 914 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spim_xfer()
|
| /hal_nordic-latest/nrfx/drivers/include/ |
| D | nrfx_qspi.h | 347 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, 461 void const * p_tx_buffer, 485 void const * p_tx_buffer); 537 nrfx_err_t nrfx_qspi_lfm_xfer(void const * p_tx_buffer,
|
| D | nrfx_spi.h | 158 uint8_t const * p_tx_buffer; ///< Pointer to TX buffer. member 171 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
| D | nrfx_spis.h | 268 uint8_t const * p_tx_buffer,
|
| D | nrfx_spim.h | 213 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
| /hal_nordic-latest/nrfx/haly/ |
| D | nrfy_i2s.h | 92 uint32_t const * p_tx_buffer; ///< Pointer to the buffer with data to be sent. member 100 uint32_t const * p_tx_buffer; ///< Pointer to the buffer with data to be sent. member 200 if (p_xfer->p_tx_buffer != NULL) in nrfy_i2s_buffers_set() 202 NRFY_CACHE_WB(p_xfer->p_tx_buffer, (p_xfer->buffer_size * sizeof(uint32_t))); in nrfy_i2s_buffers_set() 208 p_xfer->p_tx_buffer); in nrfy_i2s_buffers_set() 235 while (!((tx_done || (p_xfer->p_tx_buffer == NULL)) && in nrfy_i2s_xfer_start() 472 uint32_t const * p_tx_buffer) in nrfy_i2s_transfer_set() argument 474 nrf_i2s_transfer_set(p_reg, size, p_rx_buffer, p_tx_buffer); in nrfy_i2s_transfer_set()
|
| D | nrfy_spim.h | 126 uint8_t const * p_tx_buffer; ///< Pointer to the TX data buffer. member 308 if (p_xfer->p_tx_buffer) in nrfy_spim_buffers_set() 310 NRFY_CACHE_WB(p_xfer->p_tx_buffer, p_xfer->tx_length); in nrfy_spim_buffers_set() 312 nrf_spim_tx_buffer_set(p_reg, p_xfer->p_tx_buffer, p_xfer->tx_length); in nrfy_spim_buffers_set()
|
| /hal_nordic-latest/nrfx/hal/ |
| D | nrf_i2s.h | 532 uint32_t const * p_tx_buffer);
|