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 @@ -22,6 +22,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
22
22
- Deprecate ` Toggle ` enum and use ` Switch ` instead for better naming purposes
23
23
([ #334 ] )
24
24
- Add ` impl From<Toggle> for Switch ` to reduce churn.
25
+ No changes.
26
+ ### Breaking Changes
27
+
28
+ - The MSRV was bumped to 1.64 ([ ???] )
29
+ - Signature ` Uid ` struct LUF is returning a ` CStr ` now. ([ ???] )
30
+ - GPIO configuration functions no longer require registers as arguments ([ #213 ] )
31
+
32
+ ### Fixed
33
+
34
+ - Defmt output of ` Uid ` struct is fixed ([ ???] )
35
+
36
+ ### Added
37
+
38
+ - Implement ` into_xxx ` methods for erased pins ([ #213 ] )
25
39
26
40
## [ v0.9.1] - 2022-09-07
27
41
@@ -48,7 +62,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
48
62
- Add common derives to ` Toggle ` . ([ #281 ] )
49
63
- Add ` is_interrupt_configured ` and ` configured_interrupts ` function to
50
64
` serial::Serial ` and ` timer::Timer ` . ([ #281 ] )
51
- - Implement ` into_xxx ` methods for erased pins ([ #213 ] )
52
65
53
66
### Fixed
54
67
@@ -102,8 +115,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
102
115
- Add interrupt support.
103
116
104
117
[ here ] : https://github.com/eldruin/rtcc-rs/blob/master/CHANGELOG.md#030---2022-02-19
105
- - The MSRV was bumped to 1.59 ([ #213 ] )
106
- - GPIO configuration functions no longer require registers as arguments ([ #213 ] )
107
118
108
119
## [ v0.8.2] - 2021-12-14
109
120
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