rtic/examples/user-struct.rs

75 lines
1.2 KiB
Rust
Raw Normal View History

2018-05-07 17:46:26 +02:00
#![deny(unsafe_code)]
#![deny(warnings)]
#![feature(proc_macro)]
2018-05-14 21:22:50 +02:00
#![no_main]
2018-05-07 17:46:26 +02:00
#![no_std]
extern crate cortex_m;
2018-05-14 21:22:50 +02:00
#[macro_use]
extern crate cortex_m_rt as rt;
2018-05-07 17:46:26 +02:00
extern crate cortex_m_rtfm as rtfm;
extern crate panic_abort;
extern crate stm32f103xx;
use cortex_m::asm;
2018-05-14 21:22:50 +02:00
use rt::ExceptionFrame;
2018-05-07 17:46:26 +02:00
use rtfm::app;
pub struct Foo(u32);
app! {
device: stm32f103xx,
resources: {
static FOO: Foo = Foo(0);
static BAR: Foo;
},
free_interrupts: [EXTI0],
init: {
2018-05-14 21:22:50 +02:00
schedule_now: [a],
schedule_after: [b],
2018-05-07 17:46:26 +02:00
},
tasks: {
a: {
input: Foo,
},
b: {
input: Foo,
},
},
}
#[inline(always)]
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources { BAR: Foo(0) }
}
#[inline(always)]
fn idle(_ctxt: idle::Context) -> ! {
loop {
asm::wfi();
}
}
fn a(_ctxt: a::Context) {}
fn b(_ctxt: b::Context) {}
2018-05-14 21:22:50 +02:00
exception!(HardFault, hard_fault);
#[inline(always)]
fn hard_fault(ef: &ExceptionFrame) -> ! {
panic!("HardFault at {:#?}", ef);
}
exception!(*, default_handler);
#[inline(always)]
fn default_handler(irqn: i16) {
panic!("Unhandled exception (IRQn = {})", irqn);
}