File tree 3 files changed +12
-8
lines changed
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.8.0] - 2020-04-30
11
+
10
12
### Changed
11
13
14
+ - [ breaking-change] Updated stm32f4 dependency to v0.11.
12
15
- Wait 16 cycles after setting prescalers for some clock domains to follow manual.
13
16
- Fixed ` TIM9 ` ` pclk ` and ` ppre ` .
14
17
@@ -211,7 +214,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
211
214
212
215
- Support for stm32f407 and stm32f429.
213
216
214
- [ Unreleased ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.7.0...HEAD
217
+ [ Unreleased ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.8.0...HEAD
218
+ [ v0.8.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.7.0...v0.8.0
215
219
[ v0.7.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.6.0...v0.7.0
216
220
[ v0.6.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.5.0...v0.6.0
217
221
[ v0.5.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.4.0...v0.5.0
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ license = "0BSD"
19
19
name = " stm32f4xx-hal"
20
20
readme = " README.md"
21
21
repository = " https://github.com/stm32-rs/stm32f4xx-hal"
22
- version = " 0.7 .0"
22
+ version = " 0.8 .0"
23
23
24
24
[package .metadata .docs .rs ]
25
25
features = [" stm32f429" , " rt" , " usb_fs" ]
@@ -31,7 +31,7 @@ cortex-m = ">=0.5.8,<0.7"
31
31
cortex-m-rt = " 0.6.10"
32
32
nb = " 0.1.2"
33
33
rand_core = " 0.5.1"
34
- stm32f4 = " 0.10.0 "
34
+ stm32f4 = " 0.11 "
35
35
synopsys-usb-otg = { version = " 0.1.0" , features = [" cortex-m" ], optional = true }
36
36
37
37
[dependencies .bare-metal ]
Original file line number Diff line number Diff line change @@ -62,15 +62,15 @@ You also need to add some dependencies to your `Cargo.toml`:
62
62
63
63
``` toml
64
64
[dependencies ]
65
- embedded-hal = " 0.2.3 "
65
+ embedded-hal = " 0.2"
66
66
nb = " 0.1.2"
67
- cortex-m = " 0.6.2 "
68
- cortex-m-rt = " 0.6.11 "
67
+ cortex-m = " 0.6"
68
+ cortex-m-rt = " 0.6"
69
69
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
70
- panic-halt = " 0.2.0 "
70
+ panic-halt = " 0.2"
71
71
72
72
[dependencies .stm32f4xx-hal ]
73
- version = " 0.7 "
73
+ version = " 0.8 "
74
74
features = [" rt" , " stm32f407" ] # replace the model of your microcontroller here
75
75
```
76
76
You can’t perform that action at this time.
0 commit comments