Home
last modified time | relevance | path

Searched refs:nrf_adc_value_t (Results 1 – 3 of 3) sorted by relevance

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_adc.h61 nrf_adc_value_t * p_buffer; ///< Pointer to the buffer with converted samples.
68 nrf_adc_value_t sample; ///< Converted sample.
232 nrf_adc_value_t * p_value);
263 nrfx_err_t nrfx_adc_buffer_convert(nrf_adc_value_t * buffer, uint16_t size);
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_adc.c50 nrf_adc_value_t * p_buffer;
177 nrf_adc_value_t * p_value) in nrfx_adc_sample_convert()
202 *p_value = (nrf_adc_value_t)nrf_adc_result_get(NRF_ADC); in nrfx_adc_sample_convert()
225 m_cb.p_buffer[m_cb.idx] = (nrf_adc_value_t)nrf_adc_result_get(NRF_ADC); in adc_sample_process()
257 nrfx_err_t nrfx_adc_buffer_convert(nrf_adc_value_t * buffer, uint16_t size) in nrfx_adc_buffer_convert()
325 evt.data.sample.sample = (nrf_adc_value_t)nrf_adc_result_get(NRF_ADC); in nrfx_adc_irq_handler()
327 NRFX_LOG_HEXDUMP_DEBUG((uint8_t *)(&evt.data.sample.sample), sizeof(nrf_adc_value_t)); in nrfx_adc_irq_handler()
341 NRFX_LOG_HEXDUMP_DEBUG((uint8_t *)m_cb.p_buffer, m_cb.size * sizeof(nrf_adc_value_t)); in nrfx_adc_irq_handler()
/hal_nordic-latest/nrfx/hal/
Dnrf_adc.h132 typedef uint16_t nrf_adc_value_t; typedef
258 NRF_STATIC_INLINE nrf_adc_value_t nrf_adc_result_get(NRF_ADC_Type const * p_reg);
336 NRF_STATIC_INLINE nrf_adc_value_t nrf_adc_result_get(NRF_ADC_Type const * p_reg) in nrf_adc_result_get()
338 return (nrf_adc_value_t)p_reg->RESULT; in nrf_adc_result_get()