mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-20 06:45:36 +01:00
Fix failing UI test
This commit is contained in:
parent
4d2885e220
commit
796433fad2
2 changed files with 27 additions and 8 deletions
17
macros/ui/shared-lock-free.stderr
Normal file
17
macros/ui/shared-lock-free.stderr
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
error: Lock free shared resource "e1" is used by tasks at different priorities
|
||||
--> ui/shared-lock-free.rs:9:9
|
||||
|
|
||||
9 | e1: u32,
|
||||
| ^^
|
||||
|
||||
error: Shared resource "e1" is declared lock free but used by tasks at different priorities
|
||||
--> ui/shared-lock-free.rs:30:51
|
||||
|
|
||||
30 | #[task(binds = UART0, priority = 1, shared = [e1])]
|
||||
| ^^
|
||||
|
||||
error: Shared resource "e1" is declared lock free but used by tasks at different priorities
|
||||
--> ui/shared-lock-free.rs:36:51
|
||||
|
|
||||
36 | #[task(binds = UART1, priority = 2, shared = [e1])]
|
||||
| ^^
|
||||
Loading…
Add table
Add a link
Reference in a new issue