rtic/examples/schedule-now.rs

71 lines
1.2 KiB
Rust
Raw Normal View History

// # Pointers (old)
//
// ~40~ 32 bytes .bss
//
// # Indices (new)
//
// 12 bytes .bss
#![deny(unsafe_code)]
#![deny(warnings)]
2018-04-29 08:45:31 +02:00
#![feature(proc_macro)]
2018-05-14 21:22:50 +02:00
#![no_main]
2018-04-29 08:45:31 +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-04-29 08:45:31 +02:00
extern crate cortex_m_rtfm as rtfm;
2018-05-14 21:22:50 +02:00
extern crate panic_semihosting;
2018-04-29 08:45:31 +02:00
extern crate stm32f103xx;
use cortex_m::asm;
2018-05-14 21:22:50 +02:00
use rt::ExceptionFrame;
use rtfm::app;
2018-04-29 08:45:31 +02:00
app! {
device: stm32f103xx,
init: {
2018-05-14 21:22:50 +02:00
schedule_now: [a],
2018-04-29 08:45:31 +02:00
},
free_interrupts: [EXTI1],
tasks: {
exti0: {
interrupt: EXTI0,
2018-05-14 21:22:50 +02:00
schedule_now: [a],
2018-04-29 08:45:31 +02:00
},
a: {},
},
}
#[inline(always)]
2018-05-14 21:22:50 +02:00
fn init(mut ctxt: init::Context) -> init::LateResources {
ctxt.tasks.a.schedule_now(&mut ctxt.priority).unwrap();
2018-04-29 08:45:31 +02:00
init::LateResources {}
}
fn exti0(mut ctxt: exti0::Context) {
2018-05-17 23:14:24 +02:00
ctxt.tasks.a.schedule_now(&mut ctxt.priority).unwrap();
2018-04-29 08:45:31 +02:00
}
fn a(_ctxt: a::Context) {
2018-04-29 08:45:31 +02:00
asm::bkpt();
}
2018-05-14 21:22:50 +02:00
exception!(HardFault, hard_fault);
fn hard_fault(ef: &ExceptionFrame) -> ! {
panic!("HardFault at {:#?}", ef);
}
exception!(*, default_handler);
fn default_handler(irqn: i16) {
panic!("Unhandled exception (IRQn = {})", irqn);
}