File tree Expand file tree Collapse file tree 5 files changed +20
-2
lines changed Expand file tree Collapse file tree 5 files changed +20
-2
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/).
77
88## [ Unreleased]
99
10+ ## [ v0.11.0]
11+
1012### Changed
1113- Update ` riscv ` dependency to version 0.10
14+ - Regenerate code with ` svd2rust ` v0.26.0
1215
1316## [ v0.10.0] - 2022-09-04
1417
Original file line number Diff line number Diff line change 11[package ]
22name = " e310x"
3- version = " 0.10 .0"
3+ version = " 0.11 .0"
44repository = " https://github.com/riscv-rust/e310x"
55authors = [" David Craven <david@craven.ch>" , " The RISC-V Team <risc-v@teams.rust-embedded.org>" ]
66categories = [" embedded" , " hardware-support" , " no-std" ]
@@ -18,4 +18,4 @@ rt = []
1818g002 = []
1919
2020[package .metadata .docs .rs ]
21- features = [" rt" , " g002" ]
21+ features = [" rt" , " g002" , " critical-section " ]
Original file line number Diff line number Diff line change 1+ MEMORY
2+ {
3+ RAM : ORIGIN = 0x80000000 , LENGTH = 16 K
4+ }
5+
16PROVIDE (WATCHDOG = DefaultHandler );
27PROVIDE (RTC = DefaultHandler );
38PROVIDE (UART0 = DefaultHandler );
Original file line number Diff line number Diff line change 1+ MEMORY
2+ {
3+ RAM : ORIGIN = 0x80000000 , LENGTH = 16 K
4+ }
5+
Original file line number Diff line number Diff line change @@ -10,3 +10,8 @@ mv generic.rs src/
1010form -i lib.rs -o src/
1111rm lib.rs
1212cargo fmt
13+
14+ # combine generated device.x with memory.x
15+ mv device.x ints.x
16+ cat memory.x ints.x > device.x
17+ rm -f ints.x
You can’t perform that action at this time.
0 commit comments