mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
4c2c05a801
rtic-syntax is now part of RTIC repository
11 lines
437 B
Text
11 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) {}
|
|
| ^^^
|