Search found 1 match

by cgn_esp_user
Mon Jan 30, 2023 3:21 pm
Forum: ESP-IDF
Topic: adc Samples delivered in wrong order / dropped on ESP32 / continuous read with more than 2 channels
Replies: 0
Views: 872

adc Samples delivered in wrong order / dropped on ESP32 / continuous read with more than 2 channels

I changed examples/peripherals/adc/continuous_read/main/continuous_read_main.c to use 4 instead of only 2 adc channels. //static adc_channel_t channel[2] = {ADC_CHANNEL_6, ADC_CHANNEL_7}; static adc_channel_t channel[] = {ADC_CHANNEL_4, ADC_CHANNEL_5, ADC_CHANNEL_6, ADC_CHANNEL_7}; I would expect th...