rtic/examples/cfg.rs

56 lines
1.1 KiB
Rust
Raw Normal View History

//! examples/cfg.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
#[cfg(debug_assertions)]
use cortex_m_semihosting::hprintln;
use panic_semihosting as _;
2019-04-21 20:10:40 +02:00
#[rtfm::app(device = lm3s6965)]
const APP: () = {
2019-07-10 22:42:44 +02:00
struct Resources {
#[cfg(debug_assertions)] // <- `true` when using the `dev` profile
#[init(0)]
count: u32,
}
#[init]
2019-04-21 20:10:40 +02:00
fn init(_: init::Context) {
// ..
}
2019-07-10 22:42:44 +02:00
#[task(priority = 3, resources = [count], spawn = [log])]
fn foo(_c: foo::Context) {
#[cfg(debug_assertions)]
{
2019-07-10 22:42:44 +02:00
*_c.resources.count += 1;
2019-07-10 22:42:44 +02:00
_c.spawn.log(*_c.resources.count).ok();
}
// this wouldn't compile in `release` mode
2019-07-10 22:42:44 +02:00
// *resources.count += 1;
// ..
}
#[cfg(debug_assertions)]
#[task]
2019-04-21 20:10:40 +02:00
fn log(_: log::Context, n: u32) {
hprintln!(
"foo has been called {} time{}",
n,
if n == 1 { "" } else { "s" }
)
.ok();
}
extern "C" {
fn UART0();
fn UART1();
}
};