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/).
7
7
8
8
## [ Unreleased]
9
9
10
- - Add ` lapce ` editor settrings
10
+ - Add ` lapce ` editor settrings [ # 601 ]
11
11
- Use ` enum ` s for alternate peripheral pins [ #594 ]
12
12
- Added missing U(S)ART DMA traits for HAL serial types [ #593 ]
13
13
- Improve SPI::new* docs [ #587 ]
14
14
- Add advanced timer dead time insertion example [ #585 ]
15
15
- Cleanups [ #595 ]
16
- - Fix comlementary for independent channels [ #599 ]
16
+ - Fix comlementary for independent channels [ #599 ] [ # 603 ]
17
17
- I2c dma can now use single DMA channel for TX or RX only [ #598 ]
18
18
19
19
## [ v0.15.0] - 2023-03-13
@@ -52,6 +52,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
52
52
[ #594 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/594
53
53
[ #595 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/595
54
54
[ #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
55
57
56
58
57
59
## [ v0.14.0] - 2022-12-12
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ macro_rules! pins_impl {
97
97
$( $PINX: PwmPin <TIM , $ENCHX, $COMP>, ) +
98
98
{
99
99
$( const $ENCHX: bool = true ; ) +
100
- $( const $COMP: bool = true ; ) +
100
+ $( const $COMP: bool = $COMP ; ) +
101
101
type Channels = ( $( PwmChannel <TIM , $ENCHX, $COMP>) ,+) ;
102
102
fn split( ) -> Self :: Channels {
103
103
( $( PwmChannel :: <TIM , $ENCHX, $COMP>:: new( ) ) ,+)
You can’t perform that action at this time.
0 commit comments