Search found 1 match
- Wed May 02, 2018 5:05 pm
- Forum: ESP-IDF
- Topic: What is ADC lock and why it takes so long to read from multiple ADC1 pins?
- Replies: 7
- Views: 10656
What is ADC lock and why it takes so long to read from multiple ADC1 pins?
Why it takes so long to read from multiple ADC pins? It there a way to make it faster? uint32_t a1 = adc1_get_raw_custom(ADC1_CHANNEL_4); uint32_t a2 = adc1_get_raw_custom(ADC1_CHANNEL_5); uint32_t a3 = adc1_get_raw_custom(ADC1_CHANNEL_6); uint32_t a4 = adc1_get_raw_custom(ADC1_CHANNEL_7); I got thi...