| /hal_nordic-latest/nrfx/hal/ |
| D | nrf_twis.h | 434 uint8_t * p_buf, 455 NRF_STATIC_INLINE void nrf_twis_rx_prepare(NRF_TWIS_Type * p_reg, uint8_t * p_buf, size_t length); 474 uint8_t const * p_buf, 496 uint8_t const * p_buf, 808 NRF_STATIC_INLINE void nrf_twis_rx_buffer_set(NRF_TWIS_Type * p_reg, uint8_t * p_buf, size_t length) in nrf_twis_rx_buffer_set() argument 811 p_reg->DMA.RX.PTR = (uint32_t)p_buf; in nrf_twis_rx_buffer_set() 814 p_reg->RXD.PTR = (uint32_t)p_buf; in nrf_twis_rx_buffer_set() 828 NRF_STATIC_INLINE void nrf_twis_rx_prepare(NRF_TWIS_Type * p_reg, uint8_t * p_buf, size_t length) in nrf_twis_rx_prepare() argument 830 nrf_twis_rx_buffer_set(p_reg, p_buf, length); in nrf_twis_rx_prepare() 844 uint8_t const * p_buf, in nrf_twis_tx_buffer_set() argument [all …]
|
| /hal_nordic-latest/nrfx/drivers/include/ |
| D | nrfx_spi.h | 182 #define NRFX_SPI_XFER_TX(p_buf, length) \ argument 183 NRFX_SPI_SINGLE_XFER(p_buf, length, NULL, 0) 186 #define NRFX_SPI_XFER_RX(p_buf, length) \ argument 187 NRFX_SPI_SINGLE_XFER(NULL, 0, p_buf, length)
|
| D | nrfx_spim.h | 224 #define NRFX_SPIM_XFER_TX(p_buf, length) \ argument 225 NRFX_SPIM_SINGLE_XFER(p_buf, length, NULL, 0) 228 #define NRFX_SPIM_XFER_RX(p_buf, length) \ argument 229 NRFX_SPIM_SINGLE_XFER(NULL, 0, p_buf, length)
|
| D | nrfx_twis.h | 298 void const * p_buf, 332 void * p_buf,
|
| D | nrfx_cracen.h | 80 nrfx_err_t nrfx_cracen_ctr_drbg_random_get(uint8_t * p_buf, size_t size);
|
| /hal_nordic-latest/nrfx/drivers/src/ |
| D | nrfx_cracen.c | 212 static cracen_ret_t trng_entropy_get(uint8_t * p_buf, size_t size) in trng_entropy_get() argument 231 ret = trng_get(p_buf, size); in trng_entropy_get() 492 nrfx_err_t nrfx_cracen_ctr_drbg_random_get(uint8_t * p_buf, size_t size) in nrfx_cracen_ctr_drbg_random_get() argument 498 if (size > 0 && p_buf == NULL) in nrfx_cracen_ctr_drbg_random_get() 530 memcpy(p_buf, temp, cur_len); in nrfx_cracen_ctr_drbg_random_get() 533 p_buf += cur_len; in nrfx_cracen_ctr_drbg_random_get()
|
| D | nrfx_uarte.c | 707 uint8_t const * p_buf, in wait_for_endtx() argument 724 if (ready || (p_tx != p_buf)) in wait_for_endtx() 735 err = ((p_tx == p_buf) && (length > amount)) ? NRFX_ERROR_FORBIDDEN : NRFX_SUCCESS; in wait_for_endtx() 752 uint8_t const * p_buf; in poll_out() local 780 p_buf = &p_cb->tx.cache.p_buffer[p_cb->tx.cache.length]; in poll_out() 784 p_buf = p_byte; in poll_out() 786 tx_start(p_uarte, p_buf, 1, early_ret); in poll_out() 793 err = wait_for_endtx(p_uarte, p_buf, 1, p_cb->flags & UARTE_FLAG_TX_STOP_ON_END); in poll_out() 815 uint8_t const * p_buf; in tx_prepare_start() local 823 p_buf = p_cb->tx.cache.p_buffer; in tx_prepare_start() [all …]
|
| D | nrfx_twis.c | 746 void const * p_buf, in nrfx_twis_tx_prepare() argument 749 NRFX_ASSERT(p_buf); in nrfx_twis_tx_prepare() 764 if (!nrfx_is_in_ram(p_buf)) in nrfx_twis_tx_prepare() 783 (uint8_t const *)p_buf, in nrfx_twis_tx_prepare() 791 void * p_buf, in nrfx_twis_rx_prepare() argument 794 NRFX_ASSERT(p_buf); in nrfx_twis_rx_prepare() 809 if (!nrfx_is_in_ram(p_buf)) in nrfx_twis_rx_prepare() 828 (uint8_t *)p_buf, in nrfx_twis_rx_prepare()
|