rtic/examples/t-spawn.rs

66 lines
1.7 KiB
Rust
Raw Normal View History

//! [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]
use panic_halt as _;
2018-11-03 17:02:41 +01:00
2020-06-11 19:18:29 +02:00
#[rtic::app(device = lm3s6965)]
2020-05-19 20:00:13 +02:00
mod app {
#[init]
fn init(_: init::Context) -> init::LateResources {
let _: Result<(), ()> = foo::spawn();
let _: Result<(), u32> = bar::spawn(0);
let _: Result<(), (u32, u32)> = baz::spawn(0, 1);
2020-10-01 19:38:49 +02:00
init::LateResources {}
2018-11-03 17:02:41 +01:00
}
#[idle]
fn idle(_: idle::Context) -> ! {
let _: Result<(), ()> = foo::spawn();
let _: Result<(), u32> = bar::spawn(0);
let _: Result<(), (u32, u32)> = baz::spawn(0, 1);
2018-11-03 17:02:41 +01:00
loop {
cortex_m::asm::nop();
}
2018-11-03 17:02:41 +01:00
}
#[task(binds = SVCall)]
fn svcall(_: svcall::Context) {
let _: Result<(), ()> = foo::spawn();
let _: Result<(), u32> = bar::spawn(0);
let _: Result<(), (u32, u32)> = baz::spawn(0, 1);
2018-11-03 17:02:41 +01:00
}
#[task(binds = UART0)]
fn uart0(_: uart0::Context) {
let _: Result<(), ()> = foo::spawn();
let _: Result<(), u32> = bar::spawn(0);
let _: Result<(), (u32, u32)> = baz::spawn(0, 1);
2018-11-03 17:02:41 +01:00
}
#[task]
fn foo(_: foo::Context) {
let _: Result<(), ()> = foo::spawn();
let _: Result<(), u32> = bar::spawn(0);
let _: Result<(), (u32, u32)> = baz::spawn(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
// 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" {
fn SSI0();
2018-11-03 17:02:41 +01:00
}
2020-04-22 12:58:14 +02:00
}