aboutsummaryrefslogtreecommitdiff
path: root/examples/async-task-multiple-prios.rs
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2022-09-21 21:33:31 +0200
committerGravatar Emil Fresk <emil.fresk@gmail.com> 2022-09-24 14:07:33 +0200
commit1341cc5bbe912d3cafcdd87f30ff75627829f0f5 (patch)
treed0a9569a2cf34cb59c0932709d219ecfac56cfad /examples/async-task-multiple-prios.rs
parentb1d499a74416ce03bde2d88b6944f64a5cd55f26 (diff)
downloadrtic-1341cc5bbe912d3cafcdd87f30ff75627829f0f5.tar.gz
rtic-1341cc5bbe912d3cafcdd87f30ff75627829f0f5.tar.zst
rtic-1341cc5bbe912d3cafcdd87f30ff75627829f0f5.zip
Broke out async dispatchers into their own place
Diffstat (limited to 'examples/async-task-multiple-prios.rs')
-rw-r--r--examples/async-task-multiple-prios.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/async-task-multiple-prios.rs b/examples/async-task-multiple-prios.rs
index d47e87b1..3e197987 100644
--- a/examples/async-task-multiple-prios.rs
+++ b/examples/async-task-multiple-prios.rs
@@ -10,7 +10,7 @@ use panic_semihosting as _;
// task can have a mutable reference stored.
// - Spawning an async task equates to it being polled once.
-#[rtic::app(device = lm3s6965, dispatchers = [SSI0, UART0], peripherals = true)]
+#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0, UART0, UART1], peripherals = true)]
mod app {
use cortex_m_semihosting::{debug, hprintln};
use systick_monotonic::*;