Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Added an example to show how to do DMA with UART (Rx only) [#698]

### Fixed
- Missing alternate function definition for LTDC pins PB0 PB1

## [v0.18.0] - 2023-11-19

Expand Down
4 changes: 2 additions & 2 deletions src/gpio/f4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -770,8 +770,8 @@ gpio!(GPIOA, gpioa, PA, 'A', PAn, [

#[cfg(feature = "gpio-f427")]
gpio!(GPIOB, gpiob, PB, 'B', PBn, [
PB0: (pb0, 0, [1, 2, 3, 9, 10, 11, 14]),
PB1: (pb1, 1, [1, 2, 3, 9, 10, 11, 14]),
PB0: (pb0, 0, [1, 2, 3, 9, 10, 11]),
PB1: (pb1, 1, [1, 2, 3, 9, 10, 11]),
PB2: (pb2, 2, []),
PB3: (pb3, 3, [0, 1, 5, 6], super::Debugger),
PB4: (pb4, 4, [0, 2, 5, 6, 7], super::Debugger),
Expand Down