@@ -6,8 +6,8 @@ This crate is not yet published to crates.io, see issue [#149] for details.
6
6
Until then please pin the version you use.
7
7
8
8
``` toml
9
- [dependencies .stm32wl -hal ]
10
- git = " https://github.com/newAM/stm32wl -hal.git"
9
+ [dependencies .stm32wlxx -hal ]
10
+ git = " https://github.com/newAM/stm32wlxx -hal.git"
11
11
rev = " " # put a specific git commit hash here
12
12
features = [
13
13
# use exactly one of the following depending on your target hardware
@@ -21,7 +21,7 @@ features = [
21
21
]
22
22
23
23
# include cortex-m-rt directly in your crate if you need interrupts
24
- # use the interrupt macro from the hal with `use stm32wl_hal ::pac::interrupt;`
24
+ # use the interrupt macro from the hal with `use stm32wlxx_hal ::pac::interrupt;`
25
25
# DO NOT use the interrupt macro from cortex-m-rt, it will fail to compile
26
26
[dependencies ]
27
27
cortex-m-rt = " 0.6"
@@ -31,7 +31,7 @@ cortex-m-rt = "0.6"
31
31
or ` stm32wl ` (the PAC) directly, these are re-exported by the hal.
32
32
33
33
``` rust
34
- use stm32wl_hal as hal;
34
+ use stm32wlxx_hal as hal;
35
35
36
36
use hal :: cortex_m;
37
37
use hal :: cortex_m_rt; // requires "rt" feature
@@ -64,7 +64,7 @@ simple enough. That being said if you find somthing missing it is likely
64
64
because this crate is incomplete, and not an intentional design decision.
65
65
66
66
``` rust
67
- use stm32wl_hal as hal;
67
+ use stm32wlxx_hal as hal;
68
68
use hal :: pac;
69
69
70
70
use hal :: {aes :: Aes , pka :: Pka };
@@ -97,5 +97,5 @@ this is not consistent (see [#78])
97
97
98
98
[ stm32-rs ] : https://github.com/stm32-rs/stm32-rs
99
99
[ svd2rust ] : https://github.com/rust-embedded/svd2rust
100
- [ #78 ] : https://github.com/newAM/stm32wl -hal/issues/78
101
- [ #149 ] : https://github.com/newAM/stm32wl -hal/issues/149
100
+ [ #78 ] : https://github.com/newAM/stm32wlxx -hal/issues/78
101
+ [ #149 ] : https://github.com/newAM/stm32wlxx -hal/issues/149
0 commit comments