mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
12 lines
437 B
Text
12 lines
437 B
Text
|
error: Software task "foo" has priority 0, but `#[idle]` is defined. 0-priority software tasks are only allowed if there is no `#[idle]`.
|
||
|
--> ui/async-zero-prio-tasks.rs:15:8
|
||
|
|
|
||
|
15 | fn foo(_: foo::Context) {}
|
||
|
| ^^^
|
||
|
|
||
|
error: Software task "foo" has priority 0, but is not `async`. 0-priority software tasks must be `async`.
|
||
|
--> ui/async-zero-prio-tasks.rs:15:8
|
||
|
|
|
||
|
15 | fn foo(_: foo::Context) {}
|
||
|
| ^^^
|