Cleanup NVIC prio too high example

This commit is contained in:
Henrik Tjäder 2023-01-22 00:55:21 +01:00
parent 86ce8919ae
commit c29e477aa1
2 changed files with 1 additions and 9 deletions

View file

@ -9,7 +9,7 @@ mod app {
struct Local {}
#[init]
fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
(Shared {}, Local {}, init::Monotonics())
}

View file

@ -1,11 +1,3 @@
warning: unused variable: `cx`
--> ui/task-priority-too-high.rs:12:13
|
12 | fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
| ^^ help: if this is intentional, prefix it with an underscore: `_cx`
|
= note: `#[warn(unused_variables)]` on by default
error[E0080]: evaluation of constant value failed
--> ui/task-priority-too-high.rs:3:1
|