Search found 3 matches

by noemasson
Tue May 17, 2022 2:18 pm
Forum: ESP-IDF
Topic: Need help with ESP32 ADC DMA continuous read configuration
Replies: 4
Views: 4026

Re: Need help with ESP32 ADC DMA continuous read configuration

Update : I finally settled for using i2s with DMA for this. However the SDK does not yet allow to use i2s on multiple ADC channels simultaneously. So I used an unmerged topic from github : https://github.com/espressif/esp-idf/pull/1991 I adapted the code from this for sdk v4.4.1. It allowed me to us...
by noemasson
Mon May 02, 2022 1:44 pm
Forum: ESP-IDF
Topic: ESP32 ADC DMA continuous read configuration
Replies: 1
Views: 3502

ESP32 ADC DMA continuous read configuration

Hello, I am trying to use DMA with two ADC channels in order to have two readings of a same signal. It means that the ADC writes the data of both channels into the same buffer in memory. However it seems that this buffer has only 256 slots available for both of these channels and the rest is filled ...
by noemasson
Mon May 02, 2022 11:08 am
Forum: ESP-IDF
Topic: Need help with ESP32 ADC DMA continuous read configuration
Replies: 4
Views: 4026

Need help with ESP32 ADC DMA continuous read configuration

Hello, I am trying to read an analog signal through two ADC1 channels. The signal comes from a frequency generator and the idea is to run an FFT with the data acquired. I am using ESP32 with SDK v4.4.1. When using continuous ADC, I am able to get a buffer containing the data from both channels (chan...