File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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( ) ) ,+)
You can’t perform that action at this time.
0 commit comments