//! [compile-pass] Check `schedule` code generation #![deny(unsafe_code)] #![deny(warnings)] #![no_main] #![no_std] use panic_semihosting as _; pub struct SomeStruct; #[rtic::app(device = lm3s6965, dispatchers = [SSI0])] mod app { use dwt_systick_monotonic::DwtSystick; use rtic::time::duration::Seconds; use super::SomeStruct; #[monotonic(binds = SysTick, default = true)] type MyMono = DwtSystick<8_000_000>; // 8 MHz #[init] fn init(cx: init::Context) -> (init::LateResources, init::Monotonics) { let mut dcb = cx.core.DCB; let dwt = cx.core.DWT; let systick = cx.core.SYST; let mono = DwtSystick::new(&mut dcb, dwt, systick, 8_000_000); // Task without message passing // Not default let _: Result = foo::MyMono::spawn_at(monotonics::MyMono::now()); let handle: Result = foo::MyMono::spawn_after(Seconds(1_u32)); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = foo::MyMono::spawn_after(Seconds(1_u32)); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = foo::MyMono::spawn_after(Seconds(1_u32)); let _: Result<(), ()> = handle.unwrap().cancel(); // Using default let _: Result = foo::spawn_at(monotonics::now()); let handle: Result = foo::spawn_after(Seconds(1_u32)); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = foo::spawn_after(Seconds(1_u32)); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = foo::spawn_after(Seconds(1_u32)); let _: Result<(), ()> = handle.unwrap().cancel(); // Task with single message passing // Not default let _: Result = bar::MyMono::spawn_at(monotonics::MyMono::now(), 0); let handle: Result = bar::MyMono::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = bar::MyMono::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = bar::MyMono::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().cancel(); // Using default let _: Result = bar::spawn_at(monotonics::MyMono::now(), 0); let handle: Result = bar::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = bar::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = bar::spawn_after(Seconds(1_u32), 0); let _: Result = handle.unwrap().cancel(); // Task with multiple message passing // Not default let _: Result = baz::MyMono::spawn_at(monotonics::MyMono::now(), 0, 1); let handle: Result = baz::MyMono::spawn_after(Seconds(1_u32), 0, 1); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = baz::MyMono::spawn_after(Seconds(1_u32), 0, 1); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = baz::MyMono::spawn_after(Seconds(1_u32), 0, 1); let _: Result<(u32, u32), ()> = handle.unwrap().cancel(); // Using default let _: Result = baz::spawn_at(monotonics::MyMono::now(), 0, 1); let handle: Result = baz::spawn_after(Seconds(1_u32), 0, 1); let _: Result = handle.unwrap().reschedule_after(Seconds(1_u32)); let handle: Result = baz::spawn_after(Seconds(1_u32), 0, 1); let _: Result = handle.unwrap().reschedule_at(monotonics::MyMono::now()); let handle: Result = baz::spawn_after(Seconds(1_u32), 0, 1); let _: Result<(u32, u32), ()> = handle.unwrap().cancel(); (init::LateResources {}, init::Monotonics(mono)) } #[idle] fn idle(_: idle::Context) -> ! { loop { cortex_m::asm::nop(); } } #[task] fn foo(_: foo::Context) {} #[task] fn bar(_: bar::Context, _x: u32) {} #[task] fn baz(_: baz::Context, _x: u32, _y: u32) {} }