2020-04-08 16:43:47 +02:00
|
|
|
//! [compile-pass] check that `#[cfg]` attributes applied on resources work
|
2023-01-19 13:56:59 +01:00
|
|
|
|
2020-04-08 16:43:47 +02:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
2023-01-19 13:56:59 +01:00
|
|
|
#![deny(missing_docs)]
|
2020-04-08 16:43:47 +02:00
|
|
|
|
2021-03-03 08:53:03 +01:00
|
|
|
use panic_semihosting as _;
|
2020-04-08 16:43:47 +02:00
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2021-09-22 13:22:45 +02:00
|
|
|
use cortex_m_semihosting::debug;
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {
|
2020-06-10 14:07:23 +02:00
|
|
|
// A conditionally compiled resource behind feature_x
|
|
|
|
#[cfg(feature = "feature_x")]
|
|
|
|
x: u32,
|
|
|
|
}
|
2021-07-07 22:50:59 +02:00
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
2020-06-10 14:07:23 +02:00
|
|
|
#[init]
|
2023-01-07 17:59:39 +01:00
|
|
|
fn init(_: init::Context) -> (Shared, Local) {
|
2021-09-22 13:22:45 +02:00
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
|
|
|
|
2021-02-20 19:22:45 +01:00
|
|
|
(
|
2021-07-07 22:50:59 +02:00
|
|
|
Shared {
|
2021-02-20 19:22:45 +01:00
|
|
|
#[cfg(feature = "feature_x")]
|
|
|
|
x: 0,
|
|
|
|
},
|
2021-07-07 22:50:59 +02:00
|
|
|
Local {},
|
2021-02-20 19:22:45 +01:00
|
|
|
)
|
2020-06-10 14:07:23 +02:00
|
|
|
}
|
2020-04-08 16:43:47 +02:00
|
|
|
|
2020-06-10 14:07:23 +02:00
|
|
|
#[idle]
|
|
|
|
fn idle(_cx: idle::Context) -> ! {
|
2020-09-14 09:35:10 +02:00
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
2020-06-10 14:07:23 +02:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|