rtic/examples/t-cfg-resources.rs
2021-07-07 23:07:09 +02:00

38 lines
750 B
Rust

//! [compile-pass] check that `#[cfg]` attributes applied on resources work
//!
#![no_main]
#![no_std]
use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[shared]
struct Shared {
// A conditionally compiled resource behind feature_x
#[cfg(feature = "feature_x")]
x: u32,
}
#[local]
struct Local {}
#[init]
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
(
Shared {
#[cfg(feature = "feature_x")]
x: 0,
},
Local {},
init::Monotonics(),
)
}
#[idle]
fn idle(_cx: idle::Context) -> ! {
loop {
cortex_m::asm::nop();
}
}
}