File tree Expand file tree Collapse file tree 5 files changed +209
-147
lines changed Expand file tree Collapse file tree 5 files changed +209
-147
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
19
19
- Update ` stm32f3 ` pac to v0.15.1 ([ #335 ] )
20
20
- Update ` bxcan ` pac to v0.7.0 ([ #335 ] )
21
21
- The MSRV was bumped to 1.59 ([ #335 ] )
22
+ No changes.
23
+ ### Breaking Changes
24
+
25
+ - The MSRV was bumped to 1.64 ([ ???] )
26
+ - Signature ` Uid ` struct LUF is returning a ` CStr ` now. ([ ???] )
27
+ - GPIO configuration functions no longer require registers as arguments ([ #213 ] )
28
+
29
+ ### Fixed
30
+
31
+ - Defmt output of ` Uid ` struct is fixed ([ ???] )
32
+
33
+ ### Added
34
+
35
+ - Implement ` into_xxx ` methods for erased pins ([ #213 ] )
22
36
23
37
## [ v0.9.1] - 2022-09-07
24
38
@@ -45,7 +59,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
45
59
- Add common derives to ` Toggle ` . ([ #281 ] )
46
60
- Add ` is_interrupt_configured ` and ` configured_interrupts ` function to
47
61
` serial::Serial ` and ` timer::Timer ` . ([ #281 ] )
48
- - Implement ` into_xxx ` methods for erased pins ([ #213 ] )
49
62
50
63
### Fixed
51
64
@@ -99,8 +112,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
112
- Add interrupt support.
100
113
101
114
[ here ] : https://github.com/eldruin/rtcc-rs/blob/master/CHANGELOG.md#030---2022-02-19
102
- - The MSRV was bumped to 1.59 ([ #213 ] )
103
- - GPIO configuration functions no longer require registers as arguments ([ #213 ] )
104
115
105
116
## [ v0.8.2] - 2021-12-14
106
117
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ fn main() -> ! {
87
87
88
88
// Set up pin PA0 as analog pin.
89
89
// This pin is connected to the user button on the stm32f3discovery board.
90
- let mut gpioa = dp. GPIOA . split ( & mut rcc. ahb ) ;
90
+ let gpioa = dp. GPIOA . split ( & mut rcc. ahb ) ;
91
91
let mut analog_pin = gpioa. pa0 . into_analog ( ) ;
92
92
93
93
let mut timer = timer:: Timer :: new ( dp. TIM2 , clocks, & mut rcc. apb1 ) ;
You can’t perform that action at this time.
0 commit comments