mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
d396da5950
and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic
27 lines
391 B
Rust
27 lines
391 B
Rust
#![deny(warnings)]
|
|
#![feature(proc_macro)]
|
|
#![no_std]
|
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
|
extern crate stm32f103xx;
|
|
|
|
use rtfm::app;
|
|
|
|
app! {
|
|
//~^ error proc macro panicked
|
|
device: stm32f103xx,
|
|
|
|
tasks: {
|
|
SYS_TICK: {
|
|
priority: 1,
|
|
},
|
|
|
|
SYS_TICK: {
|
|
priority: 2,
|
|
},
|
|
},
|
|
}
|
|
|
|
fn init(_p: init::Peripherals) {}
|
|
|
|
fn idle() -> ! {}
|