Continuous ADC does not function correctly with ADC1_CH8 and ADC1_CH9 #9676
Labels
Area: Peripherals API
Relates to peripheral's APIs.
Chip: ESP32-S3
Issue is related to support of ESP32-S3 Chip
Status: Solved
Milestone
Board
ESP32-S3-DevKitC-1
Device Description
ESP32-S3-DevKitC-1 v1.0, plain module on breadboard
Hardware Configuration
All pins left floating.
Jumper wire used only to pull up or pull down individual pins being tested.
Version
latest development Release Candidate (RC-X)
IDE Name
PlatformIO
Operating System
macOS 14.4
Flash frequency
40Mhz
PSRAM enabled
no
Upload speed
460800
Description
The ADC continuous driver does not work with channels 8 and 9 of ADC1 (GPIOs 9 and 10).
The issue seems to be with this line, "
& 0x7
" appears to change channel 8 to channel 0 and channel 9 to 1.By changing the line to
adc_pattern[i].channel = channel[i];
the sketch appears to function as expected.Is this limitation intended?
Sketch
Debug Message
Other Steps to Reproduce
platformio.ini:
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: