rtic/examples/cfg-whole-task.rs

95 lines
2 KiB
Rust
Raw Normal View History

//! examples/cfg-whole-task.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_semihosting as _;
2020-10-23 10:35:56 +02:00
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
mod app {
use cortex_m_semihosting::debug;
#[cfg(debug_assertions)]
use cortex_m_semihosting::hprintln;
2021-07-07 22:50:59 +02:00
#[shared]
struct Shared {
count: u32,
#[cfg(never)]
unused: u32,
}
2021-07-07 22:50:59 +02:00
#[local]
struct Local {}
#[init]
2021-07-07 22:50:59 +02:00
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
foo::spawn().unwrap();
foo::spawn().unwrap();
2021-07-07 22:50:59 +02:00
(
Shared {
count: 0,
#[cfg(never)]
unused: 1,
},
Local {},
init::Monotonics(),
)
}
#[idle]
fn idle(_: idle::Context) -> ! {
2021-09-22 13:22:45 +02:00
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
loop {
cortex_m::asm::nop();
}
}
2021-07-07 22:50:59 +02:00
#[task(capacity = 2, shared = [count])]
fn foo(mut _cx: foo::Context) {
#[cfg(debug_assertions)]
{
2021-07-07 22:50:59 +02:00
_cx.shared.count.lock(|count| *count += 1);
2021-07-07 22:50:59 +02:00
log::spawn(_cx.shared.count.lock(|count| *count)).unwrap();
}
// this wouldn't compile in `release` mode
2021-07-07 22:50:59 +02:00
// *_cx.shared.count += 1;
// ..
}
// The whole task should disappear,
// currently still present in the Tasks enum
#[cfg(never)]
2021-07-07 22:50:59 +02:00
#[task(capacity = 2, shared = [count])]
fn foo2(mut _cx: foo2::Context) {
#[cfg(debug_assertions)]
{
2021-07-07 22:50:59 +02:00
_cx.shared.count.lock(|count| *count += 10);
2021-07-07 22:50:59 +02:00
log::spawn(_cx.shared.count.lock(|count| *count)).unwrap();
}
// this wouldn't compile in `release` mode
2021-07-07 22:50:59 +02:00
// *_cx.shared.count += 1;
// ..
}
#[cfg(debug_assertions)]
#[task(capacity = 2)]
fn log(_: log::Context, n: u32) {
hprintln!(
"foo has been called {} time{}",
n,
if n == 1 { "" } else { "s" }
2023-01-02 14:34:05 +01:00
)
.ok();
}
}