blob: 03f9dbdcb2cd2110d382065d58de3297036f8bb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//! examples/cfg.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
extern crate panic_semihosting;
#[cfg(debug_assertions)]
use cortex_m_semihosting::hprintln;
#[rtfm::app(device = lm3s6965)]
const APP: () = {
#[cfg(debug_assertions)] // <- `true` when using the `dev` profile
static mut COUNT: u32 = 0;
#[init]
fn init(_: init::Context) {
// ..
}
#[task(priority = 3, resources = [COUNT], spawn = [log])]
fn foo(c: foo::Context) {
#[cfg(debug_assertions)]
{
*c.resources.COUNT += 1;
c.spawn.log(*c.resources.COUNT).ok();
}
// this wouldn't compile in `release` mode
// *resources.COUNT += 1;
// ..
}
#[cfg(debug_assertions)]
#[task]
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();
}
};
|