File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
### Changed
11
11
12
12
- Update the sdio driver to match the changes in the PAC
13
+ - Update README.md with current information
13
14
14
15
## [ v0.9.0] - 2021-04-04
15
16
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ This crate relies on Adam Greigs fantastic [stm32f4][] crate to provide
38
38
appropriate register definitions and implements a partial set of the
39
39
[ embedded-hal] [ ] traits.
40
40
41
- Some of the implementation was shamelessly adapted from the [ stm32f103xx -hal] [ ]
42
- crate by Jorge Aparicio.
41
+ Some of the implementation was shamelessly adapted from the [ stm32f1xx -hal] [ ]
42
+ crate originally started by Jorge Aparicio.
43
43
44
44
[ stm32f4 ] : https://crates.io/crates/stm32f4
45
- [ stm32f103xx -hal] : https://github.com/japaric/stm32f103xx -hal
45
+ [ stm32f1xx -hal] : https://github.com/stm32-rs/stm32f1xx -hal
46
46
[ embedded-hal ] : https://github.com/rust-embedded/embedded-hal
47
47
48
48
Setting up your project
@@ -63,14 +63,14 @@ You also need to add some dependencies to your `Cargo.toml`:
63
63
``` toml
64
64
[dependencies ]
65
65
embedded-hal = " 0.2"
66
- nb = " 0.1.2 "
67
- cortex-m = " 0.6 "
66
+ nb = " 1 "
67
+ cortex-m = " 0.7 "
68
68
cortex-m-rt = " 0.6"
69
69
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
70
70
panic-halt = " 0.2"
71
71
72
72
[dependencies .stm32f4xx-hal ]
73
- version = " 0.8 "
73
+ version = " 0.9 "
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