2020-10-16 10:20:43 +02:00
|
|
|
//! 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])]
|
2020-10-16 10:20:43 +02:00
|
|
|
mod app {
|
|
|
|
use cortex_m_semihosting::debug;
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
use cortex_m_semihosting::hprintln;
|
|
|
|
|
|
|
|
#[resources]
|
|
|
|
struct Resources {
|
|
|
|
#[cfg(debug_assertions)] // <- `true` when using the `dev` profile
|
|
|
|
#[init(0)]
|
|
|
|
count: u32,
|
|
|
|
#[cfg(never)]
|
|
|
|
#[init(0)]
|
|
|
|
unused: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[init]
|
2021-02-20 19:22:45 +01:00
|
|
|
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
|
2020-10-16 10:20:43 +02:00
|
|
|
foo::spawn().unwrap();
|
|
|
|
foo::spawn().unwrap();
|
|
|
|
|
2021-02-20 19:22:45 +01:00
|
|
|
(init::LateResources {}, init::Monotonics())
|
2020-10-16 10:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[idle]
|
|
|
|
fn idle(_: idle::Context) -> ! {
|
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(capacity = 2, resources = [count])]
|
2020-10-22 21:36:32 +02:00
|
|
|
fn foo(mut _cx: foo::Context) {
|
2020-10-16 10:20:43 +02:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
2020-10-22 21:36:32 +02:00
|
|
|
_cx.resources.count.lock(|count| *count += 1);
|
2020-10-16 10:20:43 +02:00
|
|
|
|
2020-10-22 21:36:32 +02:00
|
|
|
log::spawn(_cx.resources.count.lock(|count| *count)).unwrap();
|
2020-10-16 10:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// this wouldn't compile in `release` mode
|
|
|
|
// *_cx.resources.count += 1;
|
|
|
|
|
|
|
|
// ..
|
|
|
|
}
|
|
|
|
|
|
|
|
// The whole task should disappear,
|
|
|
|
// currently still present in the Tasks enum
|
|
|
|
#[cfg(never)]
|
|
|
|
#[task(capacity = 2, resources = [count])]
|
2020-10-22 21:36:32 +02:00
|
|
|
fn foo2(mut _cx: foo2::Context) {
|
2020-10-16 10:20:43 +02:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
2020-10-22 21:36:32 +02:00
|
|
|
_cx.resources.count.lock(|count| *count += 10);
|
2020-10-16 10:20:43 +02:00
|
|
|
|
2020-10-22 21:36:32 +02:00
|
|
|
log::spawn(_cx.resources.count.lock(|count| *count)).unwrap();
|
2020-10-16 10:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// this wouldn't compile in `release` mode
|
|
|
|
// *_cx.resources.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" }
|
|
|
|
)
|
|
|
|
.ok();
|
|
|
|
}
|
|
|
|
}
|