mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-29 05:10:55 +00:00
C3: Fix the number of GPIO pins (#1361)
* C3: Fix the number of GPIO pins * update changelog
This commit is contained in:
parent
6f01b5aba3
commit
bd1e1fab1a
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user