2018-12-16 20:56:57 +01:00
|
|
|
//! examples/cfg.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-08-21 10:17:27 +02:00
|
|
|
use cortex_m_semihosting::debug;
|
2018-12-16 20:56:57 +01:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
use cortex_m_semihosting::hprintln;
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_semihosting as _;
|
2018-12-16 20:56:57 +01:00
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-06-04 17:24:21 +02:00
|
|
|
#[resources]
|
2019-07-10 22:42:44 +02:00
|
|
|
struct Resources {
|
|
|
|
#[cfg(debug_assertions)] // <- `true` when using the `dev` profile
|
|
|
|
#[init(0)]
|
|
|
|
count: u32,
|
|
|
|
}
|
2018-12-16 20:56:57 +01:00
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[init]
|
|
|
|
fn init(_: init::Context) -> init::LateResources {
|
|
|
|
foo::spawn().unwrap();
|
|
|
|
foo::spawn().unwrap();
|
2020-10-01 19:38:49 +02:00
|
|
|
|
|
|
|
init::LateResources {}
|
2019-08-21 10:17:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[idle]
|
|
|
|
fn idle(_: idle::Context) -> ! {
|
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
|
2020-09-14 09:35:10 +02:00
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
2018-12-16 20:56:57 +01:00
|
|
|
}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[task(capacity = 2, resources = [count])]
|
2019-08-21 10:17:27 +02:00
|
|
|
fn foo(_cx: foo::Context) {
|
2018-12-16 20:56:57 +01:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
2019-08-21 10:17:27 +02:00
|
|
|
*_cx.resources.count += 1;
|
2018-12-16 20:56:57 +01:00
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
log::spawn(*_cx.resources.count).unwrap();
|
2018-12-16 20:56:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// this wouldn't compile in `release` mode
|
2019-08-21 10:17:27 +02:00
|
|
|
// *_cx.resources.count += 1;
|
2018-12-16 20:56:57 +01:00
|
|
|
|
|
|
|
// ..
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(debug_assertions)]
|
2019-08-21 10:17:27 +02:00
|
|
|
#[task(capacity = 2)]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn log(_: log::Context, n: u32) {
|
2018-12-16 20:56:57 +01:00
|
|
|
hprintln!(
|
|
|
|
"foo has been called {} time{}",
|
|
|
|
n,
|
|
|
|
if n == 1 { "" } else { "s" }
|
|
|
|
)
|
|
|
|
.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-26 23:46:09 +02:00
|
|
|
// RTIC requires that unused interrupts are declared in an extern block when
|
|
|
|
// using software tasks; these free interrupts will be used to dispatch the
|
|
|
|
// software tasks.
|
2018-12-16 20:56:57 +01:00
|
|
|
extern "C" {
|
2020-06-26 23:46:09 +02:00
|
|
|
fn SSI0();
|
|
|
|
fn QEI0();
|
2018-12-16 20:56:57 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|