Skip to content

Commit 96fb17c

Browse files
authored
Merge pull request #293 from stm32-rs/README-update
Update README.md with up-to-date information
2 parents b2a8d65 + be35702 commit 96fb17c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Changed
1111

1212
- Update the sdio driver to match the changes in the PAC
13+
- Update README.md with current information
1314

1415
## [v0.9.0] - 2021-04-04
1516

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ This crate relies on Adam Greigs fantastic [stm32f4][] crate to provide
3838
appropriate register definitions and implements a partial set of the
3939
[embedded-hal][] traits.
4040

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.
4343

4444
[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
4646
[embedded-hal]: https://github.com/rust-embedded/embedded-hal
4747

4848
Setting up your project
@@ -63,14 +63,14 @@ You also need to add some dependencies to your `Cargo.toml`:
6363
```toml
6464
[dependencies]
6565
embedded-hal = "0.2"
66-
nb = "0.1.2"
67-
cortex-m = "0.6"
66+
nb = "1"
67+
cortex-m = "0.7"
6868
cortex-m-rt = "0.6"
6969
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
7070
panic-halt = "0.2"
7171

7272
[dependencies.stm32f4xx-hal]
73-
version = "0.8"
73+
version = "0.9"
7474
features = ["rt", "stm32f407"] # replace the model of your microcontroller here
7575
```
7676

0 commit comments

Comments
 (0)