2019-06-13 23:56:59 +02:00
|
|
|
//! [compile-pass] Check code generation of `spawn`
|
|
|
|
|
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 09:48:54 +01:00
|
|
|
use panic_semihosting as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2018-11-03 17:02:41 +01:00
|
|
|
const APP: () = {
|
|
|
|
#[init(spawn = [foo, bar, baz])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn init(c: init::Context) {
|
|
|
|
let _: Result<(), ()> = c.spawn.foo();
|
|
|
|
let _: Result<(), u32> = c.spawn.bar(0);
|
|
|
|
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[idle(spawn = [foo, bar, baz])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn idle(c: idle::Context) -> ! {
|
|
|
|
let _: Result<(), ()> = c.spawn.foo();
|
|
|
|
let _: Result<(), u32> = c.spawn.bar(0);
|
|
|
|
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
2019-06-20 06:19:59 +02:00
|
|
|
#[task(binds = SVCall, spawn = [foo, bar, baz])]
|
|
|
|
fn svcall(c: svcall::Context) {
|
2019-04-21 20:13:15 +02:00
|
|
|
let _: Result<(), ()> = c.spawn.foo();
|
|
|
|
let _: Result<(), u32> = c.spawn.bar(0);
|
|
|
|
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2019-06-20 06:19:59 +02:00
|
|
|
#[task(binds = UART0, spawn = [foo, bar, baz])]
|
|
|
|
fn uart0(c: uart0::Context) {
|
2019-04-21 20:13:15 +02:00
|
|
|
let _: Result<(), ()> = c.spawn.foo();
|
|
|
|
let _: Result<(), u32> = c.spawn.bar(0);
|
|
|
|
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task(spawn = [foo, bar, baz])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn foo(c: foo::Context) {
|
|
|
|
let _: Result<(), ()> = c.spawn.foo();
|
|
|
|
let _: Result<(), u32> = c.spawn.bar(0);
|
|
|
|
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
|
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) {}
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2020-06-26 23:46:09 +02:00
|
|
|
// RTIC requires that unused interrupts are declared in an extern block when
|
|
|
|
// using software tasks; these free interrupts will be used to dispatch the
|
|
|
|
// software tasks.
|
2018-11-03 17:02:41 +01:00
|
|
|
extern "C" {
|
2020-06-26 23:46:09 +02:00
|
|
|
fn SSI0();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
};
|