Skip to content

Commit 60fe87d

Browse files
committed
Review
1 parent 27da4a2 commit 60fe87d

File tree

13 files changed

+3
-114
lines changed

13 files changed

+3
-114
lines changed

examples/hifive1/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ rtic = { path = "../../rtic" }
1313
heapless = "0.8.0"
1414
hifive1 = { git = "https://github.com/romancardenas/hifive1.git", features = ["board-redv"] }
1515
e310x = { git = "https://github.com/greenlsi/e310x.git", features = ["rt"]}
16-
# riscv-rt = {path = "../../../riscv/riscv-rt", features = ["single-hart"]}
1716
riscv-rt = {version = "0.12.1", features = ["single-hart"]}
1817
riscv = "0.11.0"
1918
semihosting = { version = "0.1", features = ["stdio", "panic-handler"] }

examples/hifive1/examples/prio_inheritance.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![no_main]
22
#![no_std]
3-
// #![feature(type_alias_impl_trait)]
43

54
use riscv_rt as _;
65

examples/hifive1/examples/static.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#![deny(warnings)]
55
#![deny(unsafe_code)]
66
#![deny(missing_docs)]
7-
// #![feature(type_alias_impl_trait)]
87

98
use hifive1 as _;
109
use riscv_rt as _;

examples/hifive1/examples/task.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#![deny(warnings)]
55
#![deny(unsafe_code)]
66
#![deny(missing_docs)]
7-
// #![feature(type_alias_impl_trait)]
87

98
use hifive1 as _;
109
use riscv_rt as _;

examples/hifive1/examples/zero_prio_task.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#![deny(warnings)]
55
#![deny(unsafe_code)]
66
#![deny(missing_docs)]
7-
// #![feature(type_alias_impl_trait)]
87

98
use core::marker::PhantomData;
109
use hifive1 as _;

rtic-macros/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
1111

1212
### Added
1313

14-
- RTIC v2 now works on stable.
1514
- Unstable support for RISC-V targets compatible with `riscv-slic`
15+
- RTIC v2 now works on stable.
1616
- Unstable ESP32-C3 support.
1717

1818
### Changed

rtic-macros/src/codegen/bindings/riscv_slic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub fn architecture_specific_analysis(app: &App, _analysis: &SyntaxAnalysis) ->
161161
));
162162
}
163163

164-
Ok(()) // TODO
164+
Ok(())
165165
}
166166

167167
/// Macro to add statements to be executed at the beginning of all the interrupt handlers.

rtic-monotonics/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
99

1010
### Changed
1111

12+
- Tweak `build.rs` to avoid warnings in Nightly 1.78+
1213
- Removed unused `rust-toolchain.toml`
13-
Tweak `build.rs` to avoid warnings in Nightly 1.78+
1414

1515
## v1.5.0 - 2024-01-10
1616

rtic/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ features = ["rtic-macros/test-template"]
3131
name = "rtic"
3232

3333
[dependencies]
34-
# riscv-slic = { path = "../../riscv-slic/riscv-slic", optional = true }
3534
riscv-slic = { git = "https://github.com/romancardenas/riscv-slic.git", rev = "2a91edb", optional = true }
3635
esp32c3 = { version = "0.20.0", optional = true}
3736
riscv = {version = "0.11.0", optional = true}

rtic/src/export/riscv_common.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// GENERIC RE-EXPORTS: needed for all RTIC backends
2-
// pub use riscv::interrupt;
32
43
/// Read the stack pointer.
54
#[inline(always)]

0 commit comments

Comments
 (0)