mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
4f4c95be40
400: codegen and examples r=AfoHT a=perlindgren just a test Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
65 lines
1.4 KiB
Rust
65 lines
1.4 KiB
Rust
//! examples/cfg.rs
|
|
|
|
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use panic_semihosting as _;
|
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
|
|
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,
|
|
}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> init::LateResources {
|
|
foo::spawn().unwrap();
|
|
foo::spawn().unwrap();
|
|
|
|
init::LateResources {}
|
|
}
|
|
|
|
#[idle]
|
|
fn idle(_: idle::Context) -> ! {
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
loop {
|
|
cortex_m::asm::nop();
|
|
}
|
|
}
|
|
|
|
#[task(capacity = 2, resources = [count])]
|
|
fn foo(mut _cx: foo::Context) {
|
|
#[cfg(debug_assertions)]
|
|
{
|
|
_cx.resources.count.lock(|count| *count += 1);
|
|
|
|
log::spawn(_cx.resources.count.lock(|count| *count)).unwrap();
|
|
}
|
|
|
|
// 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();
|
|
}
|
|
}
|