2019-06-13 23:56:59 +02:00
|
|
|
//! [compile-pass] check that `#[cfg]` attributes are respected
|
2018-12-16 18:37:36 +01:00
|
|
|
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_halt as _;
|
2018-12-16 18:37:36 +01:00
|
|
|
|
2020-10-23 10:35:56 +02:00
|
|
|
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT, dispatchers = [SSI0, QEI0])]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-06-04 17:24:21 +02:00
|
|
|
#[resources]
|
2019-07-10 22:42:44 +02:00
|
|
|
struct Resources {
|
|
|
|
#[cfg(never)]
|
|
|
|
#[init(0)]
|
|
|
|
foo: u32,
|
|
|
|
}
|
2018-12-16 18:37:36 +01:00
|
|
|
|
|
|
|
#[init]
|
2020-10-01 19:38:49 +02:00
|
|
|
fn init(_: init::Context) -> init::LateResources {
|
2018-12-16 18:37:36 +01:00
|
|
|
#[cfg(never)]
|
|
|
|
static mut BAR: u32 = 0;
|
2020-10-01 19:38:49 +02:00
|
|
|
|
|
|
|
init::LateResources {}
|
2018-12-16 18:37:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[idle]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn idle(_: idle::Context) -> ! {
|
2018-12-16 18:37:36 +01:00
|
|
|
#[cfg(never)]
|
|
|
|
static mut BAR: u32 = 0;
|
|
|
|
|
2020-09-14 09:35:10 +02:00
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
2018-12-16 18:37:36 +01:00
|
|
|
}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[task(resources = [foo])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn foo(_: foo::Context) {
|
2018-12-16 18:37:36 +01:00
|
|
|
#[cfg(never)]
|
|
|
|
static mut BAR: u32 = 0;
|
|
|
|
}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[task(priority = 3, resources = [foo])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn bar(_: bar::Context) {
|
2018-12-16 18:37:36 +01:00
|
|
|
#[cfg(never)]
|
|
|
|
static mut BAR: u32 = 0;
|
|
|
|
}
|
|
|
|
|
2018-12-16 19:10:36 +01:00
|
|
|
#[cfg(never)]
|
|
|
|
#[task]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn quux(_: quux::Context) {}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|