S3: Fix the number of GPIO pins (#898)
This commit is contained in:
parent
9f0d384ebf
commit
111d00617f
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- ESP32-C2/C3 examples: fix build error (#899)
|
- ESP32-C2/C3 examples: fix build error (#899)
|
||||||
|
- ESP32-S3: Fix GPIO interrupt handler crashing when using GPIO48. (#898)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,7 @@ use crate::{
|
|||||||
peripherals::GPIO,
|
peripherals::GPIO,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const NUM_PINS: usize = 48;
|
pub const NUM_PINS: usize = 49;
|
||||||
|
|
||||||
pub type OutputSignalType = u16;
|
pub type OutputSignalType = u16;
|
||||||
pub const OUTPUT_SIGNAL_MAX: u16 = 256;
|
pub const OUTPUT_SIGNAL_MAX: u16 = 256;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user