Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a pwm pin configuration for D5x #720

Merged
merged 1 commit into from
Jan 22, 2024
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: 1 addition & 0 deletions hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Fix warnings for thumbv7 targets
- Update README.md - moves some content to wiki
- Remove pin `pa28` from the `d21el` target (#717)
- Fix a pwm configuration for the `tc4` on `D5x` targets (#720)

# v0.16.0

Expand Down
4 changes: 2 additions & 2 deletions hal/src/thumbv7em/pwm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ impl_tc_pinout!(TC3Pinout: [
#[cfg(feature = "has-tc4")]
impl_tc_pinout!(TC4Pinout: [
(Pa23, PA23),
#[cfg(feature = "has-pb00")]
(Pb0, PB09),
#[cfg(feature = "pins-48")]
(Pb9, PB09),
#[cfg(feature = "pins-64")]
(Pb13, PB13)
]);
Expand Down