Broke out async dispatchers into their own place

This commit is contained in:
Emil Fresk 2022-09-21 21:33:31 +02:00
parent b1d499a744
commit 1341cc5bbe
18 changed files with 419 additions and 266 deletions

View file

@ -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::*;