rtic/examples/t-cfg.rs

51 lines
993 B
Rust
Raw Normal View History

//! [compile-pass] check that `#[cfg]` attributes are respected
#![no_main]
#![no_std]
2021-03-03 08:53:03 +01:00
use panic_semihosting as _;
2021-02-20 19:22:45 +01:00
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
2020-05-19 20:00:13 +02:00
mod app {
#[resources]
2019-07-10 22:42:44 +02:00
struct Resources {
#[cfg(never)]
#[init(0)]
foo: u32,
}
#[init]
2021-02-20 19:22:45 +01:00
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
#[cfg(never)]
static mut BAR: u32 = 0;
2020-10-01 19:38:49 +02:00
2021-02-20 19:22:45 +01:00
(init::LateResources {}, init::Monotonics())
}
#[idle]
2019-04-21 20:13:15 +02:00
fn idle(_: idle::Context) -> ! {
#[cfg(never)]
static mut BAR: u32 = 0;
loop {
cortex_m::asm::nop();
}
}
#[task(resources = [foo])]
2019-04-21 20:13:15 +02:00
fn foo(_: foo::Context) {
#[cfg(never)]
static mut BAR: u32 = 0;
}
#[task(priority = 3, resources = [foo])]
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) {}
2020-04-22 12:58:14 +02:00
}