diff --git a/CHANGELOG.md b/CHANGELOG.md index e9ab9126cd4..70adf1ee5ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - ESP32-C2/C3 examples: fix build error (#899) +- ESP32-S3: Fix GPIO interrupt handler crashing when using GPIO48. (#898) ### Removed diff --git a/esp-hal-common/src/soc/esp32s3/gpio.rs b/esp-hal-common/src/soc/esp32s3/gpio.rs index fec3a915d16..483fc3cff43 100644 --- a/esp-hal-common/src/soc/esp32s3/gpio.rs +++ b/esp-hal-common/src/soc/esp32s3/gpio.rs @@ -52,7 +52,7 @@ use crate::{ peripherals::GPIO, }; -pub const NUM_PINS: usize = 48; +pub const NUM_PINS: usize = 49; pub type OutputSignalType = u16; pub const OUTPUT_SIGNAL_MAX: u16 = 256;