Hello,
I want to use the ADC for a burst @ 8khz.
I use this sample "test_adc_sample_with_interval" from https://github.com/zephyrproject-rtos/zephyr/blob/master/tests/drivers/adc/adc_api/src/test_adc.c
I set the interval regarding to 8khz to 125us.
const struct adc_sequence_options sequence_opt = { .interval_us = 125, .callback = adc_finished, .extra_samplings = 399, };
But when i execute the code i have got a samplerate from 100hz.
Could you help me?