aboutsummaryrefslogtreecommitdiff
path: root/ui/local-err.stderr
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-07-09 11:00:11 +0000
committerGitHub <noreply@github.com>2021-07-09 11:00:11 +0000
commite1a4d001f8e724596cd9de3e90698ce7de473b3f (patch)
treef7aac5eae4cc2e19cc06bfd6fa8dab843dcfb276 /ui/local-err.stderr
parent13dc3992e616d817e38c167c4b47db816855f18b (diff)
parentf3d9fd9b638a25b497e1ca02e7ce5de86c9fc1c9 (diff)
Merge #494
494: Resoures take 2 r=korken89 a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'ui/local-err.stderr')
-rw-r--r--ui/local-err.stderr60
1 files changed, 0 insertions, 60 deletions
diff --git a/ui/local-err.stderr b/ui/local-err.stderr
deleted file mode 100644
index 88369d8..0000000
--- a/ui/local-err.stderr
+++ /dev/null
@@ -1,60 +0,0 @@
-error: task local resource "l2" is used by multiple tasks
- --> $DIR/local-err.rs:34:9
- |
-34 | l2: u32,
- | ^^
-
-error: task local resource "l2" is used by task "idle" with priority 0
- --> $DIR/local-err.rs:52:28
- |
-52 | #[idle(resources =[l1, l2, e2])]
- | ^^
-
-error: task local resource "l2" is used by task "uart0" with priority 1
- --> $DIR/local-err.rs:63:62
- |
-63 | #[task(priority = 1, binds = UART0, resources = [shared, l2, e1])]
- | ^^
-
-error: task local resource "l2" is used by task "uart1" with priority 2
- --> $DIR/local-err.rs:74:62
- |
-74 | #[task(priority = 2, binds = UART1, resources = [shared, l2, e1])]
- | ^^
-
-error: Lock free resource "e1" is used by tasks at different priorities
- --> $DIR/local-err.rs:30:9
- |
-30 | e1: u32,
- | ^^
-
-error: Resource "e1" is declared lock free but used by tasks at different priorities
- --> $DIR/local-err.rs:63:66
- |
-63 | #[task(priority = 1, binds = UART0, resources = [shared, l2, e1])]
- | ^^
-
-error: Resource "e1" is declared lock free but used by tasks at different priorities
- --> $DIR/local-err.rs:74:66
- |
-74 | #[task(priority = 2, binds = UART1, resources = [shared, l2, e1])]
- | ^^
-
-error: unused imports: `debug`, `hprintln`
- --> $DIR/local-err.rs:10:28
- |
-10 | use cortex_m_semihosting::{debug, hprintln};
- | ^^^^^ ^^^^^^^^
- |
-note: the lint level is defined here
- --> $DIR/local-err.rs:4:9
- |
-4 | #![deny(warnings)]
- | ^^^^^^^^
- = note: `#[deny(unused_imports)]` implied by `#[deny(warnings)]`
-
-error: unused import: `lm3s6965::Interrupt`
- --> $DIR/local-err.rs:11:5
- |
-11 | use lm3s6965::Interrupt;
- | ^^^^^^^^^^^^^^^^^^^