2019-06-13 23:56:59 +02:00
|
|
|
//! [compile-pass] Check `schedule` code generation
|
|
|
|
|
2019-04-21 20:13:15 +02:00
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
2018-11-03 17:02:41 +01:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2021-03-03 08:53:03 +01:00
|
|
|
use panic_semihosting as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-02-20 19:22:45 +01:00
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2021-09-22 13:22:45 +02:00
|
|
|
use cortex_m_semihosting::debug;
|
2021-10-31 10:09:40 +01:00
|
|
|
use systick_monotonic::*;
|
2021-02-23 19:35:26 +01:00
|
|
|
|
|
|
|
#[monotonic(binds = SysTick, default = true)]
|
2021-09-22 13:22:45 +02:00
|
|
|
type MyMono = Systick<100>; // 100 Hz / 10 ms granularity
|
2020-10-15 18:50:17 +02:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[init]
|
2021-07-07 22:50:59 +02:00
|
|
|
fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-02-23 19:35:26 +01:00
|
|
|
let systick = cx.core.SYST;
|
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
let mono = Systick::new(systick, 12_000_000);
|
2020-10-01 19:38:49 +02:00
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
|
|
|
|
|
|
|
(Shared {}, Local {}, init::Monotonics(mono))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[idle]
|
|
|
|
fn idle(_: idle::Context) -> ! {
|
2021-03-20 08:38:37 +01:00
|
|
|
// Task without message passing
|
2021-03-11 19:12:02 +01:00
|
|
|
|
2021-03-20 08:38:37 +01:00
|
|
|
// Not default
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<foo::MyMono::SpawnHandle, ()> =
|
|
|
|
foo::MyMono::spawn_at(monotonics::MyMono::now());
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::MyMono::SpawnHandle, ()> = foo::MyMono::spawn_after(1.secs());
|
|
|
|
let _: Result<foo::MyMono::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::MyMono::SpawnHandle, ()> = foo::MyMono::spawn_after(1.secs());
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<foo::MyMono::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::MyMono::SpawnHandle, ()> = foo::MyMono::spawn_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<(), ()> = handle.unwrap().cancel();
|
|
|
|
|
|
|
|
// Using default
|
2021-04-20 10:34:26 +02:00
|
|
|
let _: Result<foo::SpawnHandle, ()> = foo::spawn_at(monotonics::now());
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::SpawnHandle, ()> = foo::spawn_after(1.secs());
|
|
|
|
let _: Result<foo::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::SpawnHandle, ()> = foo::spawn_after(1.secs());
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<foo::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<foo::SpawnHandle, ()> = foo::spawn_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<(), ()> = handle.unwrap().cancel();
|
|
|
|
|
|
|
|
// Task with single message passing
|
|
|
|
|
|
|
|
// Not default
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<bar::MyMono::SpawnHandle, u32> =
|
|
|
|
bar::MyMono::spawn_at(monotonics::MyMono::now(), 0);
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::MyMono::SpawnHandle, u32> = bar::MyMono::spawn_after(1.secs(), 1);
|
|
|
|
let _: Result<bar::MyMono::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::MyMono::SpawnHandle, u32> = bar::MyMono::spawn_after(1.secs(), 1);
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<bar::MyMono::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::MyMono::SpawnHandle, u32> = bar::MyMono::spawn_after(1.secs(), 1);
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<u32, ()> = handle.unwrap().cancel();
|
2021-03-11 19:12:02 +01:00
|
|
|
|
2021-03-20 08:38:37 +01:00
|
|
|
// Using default
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<bar::SpawnHandle, u32> = bar::spawn_at(monotonics::MyMono::now(), 0);
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::SpawnHandle, u32> = bar::spawn_after(1.secs(), 1);
|
|
|
|
let _: Result<bar::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::SpawnHandle, u32> = bar::spawn_after(1.secs(), 1);
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<bar::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<bar::SpawnHandle, u32> = bar::spawn_after(1.secs(), 1);
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<u32, ()> = handle.unwrap().cancel();
|
|
|
|
|
|
|
|
// Task with multiple message passing
|
|
|
|
|
|
|
|
// Not default
|
2021-03-11 19:12:02 +01:00
|
|
|
let _: Result<baz::MyMono::SpawnHandle, (u32, u32)> =
|
2021-04-07 11:06:57 +02:00
|
|
|
baz::MyMono::spawn_at(monotonics::MyMono::now(), 0, 1);
|
2021-03-20 08:38:37 +01:00
|
|
|
let handle: Result<baz::MyMono::SpawnHandle, (u32, u32)> =
|
2021-10-31 10:09:40 +01:00
|
|
|
baz::MyMono::spawn_after(1.secs(), 1, 2);
|
|
|
|
let _: Result<baz::MyMono::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
|
|
|
let handle: Result<baz::MyMono::SpawnHandle, (u32, u32)> =
|
2021-10-31 10:09:40 +01:00
|
|
|
baz::MyMono::spawn_after(1.secs(), 1, 2);
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<baz::MyMono::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
|
|
|
let handle: Result<baz::MyMono::SpawnHandle, (u32, u32)> =
|
2021-10-31 10:09:40 +01:00
|
|
|
baz::MyMono::spawn_after(1.secs(), 1, 2);
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<(u32, u32), ()> = handle.unwrap().cancel();
|
|
|
|
|
|
|
|
// Using default
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<baz::SpawnHandle, (u32, u32)> =
|
|
|
|
baz::spawn_at(monotonics::MyMono::now(), 0, 1);
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<baz::SpawnHandle, (u32, u32)> = baz::spawn_after(1.secs(), 1, 2);
|
|
|
|
let _: Result<baz::SpawnHandle, ()> = handle.unwrap().reschedule_after(1.secs());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<baz::SpawnHandle, (u32, u32)> = baz::spawn_after(1.secs(), 1, 2);
|
2021-04-07 11:06:57 +02:00
|
|
|
let _: Result<baz::SpawnHandle, ()> =
|
|
|
|
handle.unwrap().reschedule_at(monotonics::MyMono::now());
|
2021-03-20 08:38:37 +01:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
let handle: Result<baz::SpawnHandle, (u32, u32)> = baz::spawn_after(1.secs(), 1, 2);
|
2021-03-20 08:38:37 +01:00
|
|
|
let _: Result<(u32, u32), ()> = handle.unwrap().cancel();
|
2021-02-23 19:35:26 +01:00
|
|
|
|
2020-09-14 09:35:10 +02:00
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[task]
|
2021-02-23 19:35:26 +01:00
|
|
|
fn foo(_: foo::Context) {}
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn bar(_: bar::Context, _x: u32) {}
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn baz(_: baz::Context, _x: u32, _y: u32) {}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|