C3: Fix the number of GPIO pins (#1361)

* C3: Fix the number of GPIO pins

* update changelog
This commit is contained in:
Mateusz 2024-03-30 17:04:34 +01:00 committed by GitHub
parent 6f01b5aba3
commit bd1e1fab1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed `LCD_CAM I8080` driver potentially sending garbage to display (#1301)
- The TWAI driver can now be used without requiring the `embedded-hal` traits (#1355)
- USB pullup/pulldown now gets properly cleared and does not interfere anymore on esp32c3 and esp32s3 (#1244)
- Fixed number of GPIO pins in C3 (#1361)
### Changed

View File

@ -51,7 +51,7 @@ use crate::{
peripherals::GPIO,
};
pub const NUM_PINS: usize = 21;
pub const NUM_PINS: usize = 22;
pub(crate) const FUNC_IN_SEL_OFFSET: usize = 0;