Home
last modified time | relevance | path

Searched refs:nrfx_is_in_ram (Results 1 – 9 of 9) sorted by relevance

/dports/devel/tinygo/tinygo-0.14.1/lib/nrfx/drivers/src/
H A Dnrfx_i2s.c226 && !nrfx_is_in_ram(p_initial_buffers->p_rx_buffer)) in nrfx_i2s_start()
229 && !nrfx_is_in_ram(p_initial_buffers->p_tx_buffer))) in nrfx_i2s_start()
291 && !nrfx_is_in_ram(p_buffers->p_rx_buffer)) in nrfx_i2s_next_buffers_set()
294 && !nrfx_is_in_ram(p_buffers->p_tx_buffer))) in nrfx_i2s_next_buffers_set()
H A Dnrfx_qspi.c278 if (!nrfx_is_in_ram(p_tx_buffer)) in nrfx_qspi_write()
295 if (!nrfx_is_in_ram(p_rx_buffer)) in nrfx_qspi_read()
H A Dnrfx_pwm.c275 NRFX_ASSERT(nrfx_is_in_ram(p_sequence->values.p_raw)); in nrfx_pwm_simple_playback()
321 NRFX_ASSERT(nrfx_is_in_ram(p_sequence_0->values.p_raw)); in nrfx_pwm_complex_playback()
322 NRFX_ASSERT(nrfx_is_in_ram(p_sequence_1->values.p_raw)); in nrfx_pwm_complex_playback()
H A Dnrfx_spis.c377 if ((p_tx_buffer != NULL && !nrfx_is_in_ram(p_tx_buffer)) || in nrfx_spis_buffers_set()
378 (p_rx_buffer != NULL && !nrfx_is_in_ram(p_rx_buffer))) in nrfx_spis_buffers_set()
H A Dnrfx_twim.c301 if (!nrfx_is_in_ram(p_xfer_desc->p_primary_buf)) in twim_xfer()
340 if (!nrfx_is_in_ram(p_xfer_desc->p_secondary_buf)) in twim_xfer()
364 if (!nrfx_is_in_ram(p_xfer_desc->p_secondary_buf)) in twim_xfer()
H A Dnrfx_spim.c466 if ((p_xfer_desc->p_tx_buffer != NULL && !nrfx_is_in_ram(p_xfer_desc->p_tx_buffer)) || in spim_xfer()
467 (p_xfer_desc->p_rx_buffer != NULL && !nrfx_is_in_ram(p_xfer_desc->p_rx_buffer))) in spim_xfer()
H A Dnrfx_uarte.c269 if (!nrfx_is_in_ram(p_data)) in nrfx_uarte_tx()
343 if (!nrfx_is_in_ram(p_data)) in nrfx_uarte_rx()
H A Dnrfx_twis.c704 if (!nrfx_is_in_ram(p_buf)) in nrfx_twis_tx_prepare()
748 if (!nrfx_is_in_ram(p_buf)) in nrfx_twis_rx_prepare()
/dports/devel/tinygo/tinygo-0.14.1/lib/nrfx/drivers/
H A Dnrfx_common.h200 __STATIC_INLINE bool nrfx_is_in_ram(void const * p_object);
246 __STATIC_INLINE bool nrfx_is_in_ram(void const * p_object) in nrfx_is_in_ram() function