Search found 3 matches
- Thu Apr 29, 2021 1:44 am
- Forum: General Discussion
- Topic: What are the ADC^PA pins on the ESP32 (aka ADC1_0 & ADC1_3)
- Replies: 2
- Views: 2751
Re: What are the ADC^PA pins on the ESP32 (aka ADC1_0 & ADC1_3)
There is no mention of ADC^PA in the Technical Reference Manual. I think PA just means "pre-amplifier". The only available amplifier is coupled to the Hall Sensor (TRM section 29.4.3).
- Wed Apr 28, 2021 11:35 pm
- Forum: General Discussion
- Topic: I2S - detect empty DMA queue
- Replies: 3
- Views: 6270
Re: I2S - detect empty DMA queue
Thanks palmerr23 ! I didn't think a task could solve my problem. I managed to generate exactly a single wave form in these conditions: On the I2S configuration, I created 4 buffers to match the exact data length: #define NUM_SAMPLES 160 #define DMA_BUF_CNT 4 #define DMA_BUF_LEN (NUM_SAMPLES / DMA_BU...
- Fri Mar 05, 2021 1:17 am
- Forum: General Discussion
- Topic: I2S - detect empty DMA queue
- Replies: 3
- Views: 6270
Re: I2S - detect empty DMA queue
Hi palmerr23 , I'm a newbie too. I'm having a similar problem, I want to trigger a wave sample every now and then. It's a random pulse generator. I want the I2S to stop whenever the buffer's empty. However, as you said, the I2S IDF driver hijacks the I2S interrupts to keep refilling the buffer. I tr...