Searched refs:p_tx_buffer (Results 1 – 13 of 13) sorted by relevance
/nrf52832-nimble/nordic/nrfx/drivers/src/ |
H A D | nrfx_i2s.c | 212 p_initial_buffers->p_tx_buffer != NULL); in nrfx_i2s_start() 216 NRFX_ASSERT((p_initial_buffers->p_tx_buffer == NULL) || in nrfx_i2s_start() 217 (nrfx_is_in_ram(p_initial_buffers->p_tx_buffer) && in nrfx_i2s_start() 218 nrfx_is_word_aligned(p_initial_buffers->p_tx_buffer))); in nrfx_i2s_start() 236 ((p_initial_buffers->p_tx_buffer != NULL) in nrfx_i2s_start() 237 && !nrfx_is_in_ram(p_initial_buffers->p_tx_buffer))) in nrfx_i2s_start() 247 m_cb.use_tx = (p_initial_buffers->p_tx_buffer != NULL); in nrfx_i2s_start() 258 m_cb.current_buffers.p_tx_buffer = NULL; in nrfx_i2s_start() 263 m_cb.next_buffers.p_tx_buffer); in nrfx_i2s_start() 289 NRFX_ASSERT((p_buffers->p_tx_buffer == NULL) || in nrfx_i2s_next_buffers_set() [all …]
|
H A D | nrfx_qspi.c | 172 void const * p_tx_buffer, in nrfx_qspi_cinstr_xfer() argument 186 if (p_tx_buffer) in nrfx_qspi_cinstr_xfer() 188 nrf_qspi_cinstrdata_set(NRF_QSPI, p_config->length, p_tx_buffer); in nrfx_qspi_cinstr_xfer() 222 void const * p_tx_buffer) in nrfx_qspi_cinstr_quick_send() argument 225 return nrfx_qspi_cinstr_xfer(&config, p_tx_buffer, NULL); in nrfx_qspi_cinstr_quick_send() 268 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, in nrfx_qspi_write() argument 273 NRFX_ASSERT(p_tx_buffer != NULL); in nrfx_qspi_write() 274 NRFX_ASSERT(nrfx_is_in_ram(p_tx_buffer)); in nrfx_qspi_write() 275 NRFX_ASSERT(nrfx_is_word_aligned(p_tx_buffer)); in nrfx_qspi_write() 277 if (!nrfx_is_in_ram(p_tx_buffer)) in nrfx_qspi_write() [all …]
|
H A D | nrfx_spis.c | 369 uint8_t const * p_tx_buffer, in nrfx_spis_buffers_set() argument 374 NRFX_ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); in nrfx_spis_buffers_set() 389 if ((p_tx_buffer != NULL && !nrfx_is_in_ram(p_tx_buffer)) || in nrfx_spis_buffers_set() 404 p_cb->tx_buffer = p_tx_buffer; in nrfx_spis_buffers_set()
|
H A D | nrfx_spim.c | 466 if ((p_xfer_desc->p_tx_buffer != NULL && !nrfx_is_in_ram(p_xfer_desc->p_tx_buffer)) || in spim_xfer() 482 nrf_spim_tx_buffer_set(p_spim, p_xfer_desc->p_tx_buffer, p_xfer_desc->tx_length); in spim_xfer() 488 anomaly_198_enable(p_xfer_desc->p_tx_buffer, p_xfer_desc->tx_length); in spim_xfer() 506 nrf_spim_tx_buffer_set(p_spim, p_xfer_desc->p_tx_buffer, 0); in spim_xfer() 554 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spim_xfer()
|
H A D | nrfx_uarte.c | 93 uint8_t const * p_tx_buffer; member 310 p_cb->p_tx_buffer = p_data; in nrfx_uarte_tx() 314 NRFX_LOG_HEXDUMP_DEBUG(p_cb->p_tx_buffer, in nrfx_uarte_tx() 315 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uarte_tx() 321 nrf_uarte_tx_buffer_set(p_instance->p_reg, p_cb->p_tx_buffer, p_cb->tx_buffer_length); in nrfx_uarte_tx() 491 event.data.rxtx.p_data = (uint8_t *)p_cb->p_tx_buffer; in tx_done_event()
|
H A D | nrfx_spi.c | 278 nrf_spi_txd_set(p_spi, p_cb->evt.xfer_desc.p_tx_buffer[bytes_used]); in transfer_byte() 304 (p_xfer_desc->tx_length > 0 ? p_xfer_desc->p_tx_buffer[0] : p_cb->orc)); in spi_xfer() 312 nrf_spi_txd_set(p_spi, p_xfer_desc->p_tx_buffer[1]); in spi_xfer() 348 NRFX_ASSERT(p_xfer_desc->p_tx_buffer != NULL || p_xfer_desc->tx_length == 0); in nrfx_spi_xfer()
|
H 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() 283 p_cb->p_tx_buffer = p_data; in nrfx_uart_tx() 289 NRFX_LOG_HEXDUMP_DEBUG(p_cb->p_tx_buffer, in nrfx_uart_tx() 290 p_cb->tx_buffer_length * sizeof(p_cb->p_tx_buffer[0])); in nrfx_uart_tx() 511 event.data.rxtx.p_data = (uint8_t *)p_cb->p_tx_buffer; in tx_done_event()
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_qspi.h | 197 nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, 260 void const * p_tx_buffer, 277 void const * p_tx_buffer);
|
H A D | nrfx_spi.h | 135 uint8_t const * p_tx_buffer; ///< Pointer to TX buffer. member 148 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
H A D | nrfx_spim.h | 171 uint8_t const * p_tx_buffer; ///< Pointer to TX buffer. member 184 .p_tx_buffer = (uint8_t const *)(p_tx), \
|
H A D | nrfx_i2s.h | 86 uint32_t const * p_tx_buffer; member
|
H A D | nrfx_spis.h | 226 uint8_t const * p_tx_buffer,
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_i2s.h | 391 uint32_t const * p_tx_buffer);
|