Skip to content

Commit 8ada2bd

Browse files
authored
Merge pull request #603 from stm32-rs/yet-one-fix
fix complementary
2 parents ae11468 + 43addb9 commit 8ada2bd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10-
- Add `lapce` editor settrings
10+
- Add `lapce` editor settrings [#601]
1111
- Use `enum`s for alternate peripheral pins [#594]
1212
- Added missing U(S)ART DMA traits for HAL serial types [#593]
1313
- Improve SPI::new* docs [#587]
1414
- Add advanced timer dead time insertion example [#585]
1515
- Cleanups [#595]
16-
- Fix comlementary for independent channels [#599]
16+
- Fix comlementary for independent channels [#599] [#603]
1717
- I2c dma can now use single DMA channel for TX or RX only [#598]
1818

1919
## [v0.15.0] - 2023-03-13
@@ -52,6 +52,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5252
[#594]: https://github.com/stm32-rs/stm32f4xx-hal/pull/594
5353
[#595]: https://github.com/stm32-rs/stm32f4xx-hal/pull/595
5454
[#599]: https://github.com/stm32-rs/stm32f4xx-hal/pull/599
55+
[#601]: https://github.com/stm32-rs/stm32f4xx-hal/pull/601
56+
[#603]: https://github.com/stm32-rs/stm32f4xx-hal/pull/603
5557

5658

5759
## [v0.14.0] - 2022-12-12

src/timer/pwm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ macro_rules! pins_impl {
9797
$($PINX: PwmPin<TIM, $ENCHX, $COMP>,)+
9898
{
9999
$(const $ENCHX: bool = true;)+
100-
$(const $COMP: bool = true;)+
100+
$(const $COMP: bool = $COMP;)+
101101
type Channels = ($(PwmChannel<TIM, $ENCHX, $COMP>),+);
102102
fn split() -> Self::Channels {
103103
($(PwmChannel::<TIM, $ENCHX, $COMP>::new()),+)

0 commit comments

Comments
 (0)