Fix C3 ADC2 channel assignment

This commit is contained in:
Dániel Buga 2023-05-26 19:30:37 +02:00 committed by Jesse Braham
parent 748512f849
commit df76905408
2 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ESP32-S3: Move PSRAM related function to RAM (#546)
- ADC driver will now apply attenuation values to the correct ADC's channels. (#554)
- Sometimes half-duplex non-DMA SPI reads were reading garbage in non-release mode (#552)
- ESP32-C3: Fix GPIO5 ADC channel id (#562)
### Changed

View File

@ -337,7 +337,7 @@ pub mod implementation {
impl_adc_interface! {
ADC2 [
(Gpio5, 4),
(Gpio5, 0),
]
}
}