rtic/examples/t-cfg.rs

51 lines
978 B
Rust
Raw Permalink Normal View History

//! [compile-pass] check that `#[cfg]` attributes are respected
#![no_main]
#![no_std]
use panic_halt as _;
#[rtfm::app(device = lm3s6965, monotonic = rtfm::cyccnt::CYCCNT)]
const APP: () = {
2019-07-10 22:42:44 +02:00
struct Resources {
#[cfg(never)]
#[init(0)]
foo: u32,
}
#[init]
2019-04-21 20:13:15 +02:00
fn init(_: init::Context) {
#[cfg(never)]
static mut BAR: u32 = 0;
}
#[idle]
2019-04-21 20:13:15 +02:00
fn idle(_: idle::Context) -> ! {
#[cfg(never)]
static mut BAR: u32 = 0;
loop {}
}
2019-07-10 22:42:44 +02:00
#[task(resources = [foo], schedule = [quux], spawn = [quux])]
2019-04-21 20:13:15 +02:00
fn foo(_: foo::Context) {
#[cfg(never)]
static mut BAR: u32 = 0;
}
2019-07-10 22:42:44 +02:00
#[task(priority = 3, resources = [foo], schedule = [quux], spawn = [quux])]
2019-04-21 20:13:15 +02:00
fn bar(_: bar::Context) {
#[cfg(never)]
static mut BAR: u32 = 0;
}
#[cfg(never)]
#[task]
2019-04-21 20:13:15 +02:00
fn quux(_: quux::Context) {}
extern "C" {
fn UART0();
fn UART1();
}
};