aboutsummaryrefslogtreecommitdiff
path: root/ui/single
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-29 18:34:35 +0000
committerGitHub <noreply@github.com>2020-10-29 18:34:35 +0000
commitad50b54530b7068dde3227dfb72f2a641171af61 (patch)
treee1190b395650334f834c218ff33583b783f81054 /ui/single
parentd11b2ddd3559b29480b9bbcf9d5b7836de190f77 (diff)
parent96cd625223404a3b32a62384055ccd4765f92312 (diff)
Merge #402
402: Extern task r=AfoHT a=perlindgren Allows hardware and software task to be externally declared. CI test, don't merge yet (squash needed). Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
Diffstat (limited to 'ui/single')
-rw-r--r--ui/single/extern-interrupt-used.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/single/extern-interrupt-used.rs b/ui/single/extern-interrupt-used.rs
index 2ba3168..240e736 100644
--- a/ui/single/extern-interrupt-used.rs
+++ b/ui/single/extern-interrupt-used.rs
@@ -4,8 +4,4 @@
mod app {
#[task(binds = UART0)]
fn a(_: a::Context) {}
-
- extern "C" {
- fn UART0();
- }
}