File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
- * Updated to svd2rust 0.24.1
5
+ ## [ v0.15.1] 2022-07-04
6
+
7
+ * Updated to svd2rust 0.24.1 to fix critical codegen issue (#751 )
8
+ * Fix FSDEF field being marked read-only in SAI (#752 )
6
9
7
10
## [ v0.15.0] 2022-07-04
8
11
12
+ This release has been yanked from crates.io as it was generated using svd2rust
13
+ 0.24.0 which suffered from a codegen bug (see #748 ).
14
+
9
15
Common changes:
10
16
11
17
* Strip prefixes from many peripheral registers (#661 )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ to drill down into each field on each register on each peripheral.
49
49
In your own project's ` Cargo.toml ` :
50
50
``` toml
51
51
[dependencies .stm32f4 ]
52
- version = " 0.15.0 "
52
+ version = " 0.15.1 "
53
53
features = [" stm32f405" , " rt" ]
54
54
```
55
55
Original file line number Diff line number Diff line change 16
16
import re
17
17
import yaml
18
18
19
- VERSION = "0.15.0 "
19
+ VERSION = "0.15.1 "
20
20
SVD2RUST_VERSION = "0.24.1"
21
21
22
22
CRATE_DOC_FEATURES = {
You can’t perform that action at this time.
0 commit comments