Home
last modified time | relevance | path

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

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_saadc.h148 #define NRFX_SAADC_SAMPLES_TO_BYTES(_resolution, _samples) \ argument
149 ((_resolution) == NRF_SAADC_RESOLUTION_8BIT ? _samples : (_samples * 2))
151 #define NRFX_SAADC_SAMPLES_TO_BYTES(_resolution, _samples) (_samples)
164 #define NRFX_SAADC_SAMPLE_GET(_resolution, _samples, _index) \ argument
165 ((_resolution) == NRF_SAADC_RESOLUTION_8BIT ? (((int8_t *) (_samples))[(_index)]) : \
168 #define NRFX_SAADC_SAMPLE_GET(_resolution, _samples, _index) (((int16_t *)(_samples))[(_index)])