S3: Fix the number of GPIO pins (#898)

This commit is contained in:
Dániel Buga 2023-11-03 08:26:58 +01:00 committed by GitHub
parent 9f0d384ebf
commit 111d00617f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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;