update the cfail tests

This commit is contained in:
Jorge Aparicio 2018-05-01 14:01:51 +02:00
parent 205aa44ed5
commit e34abea704
22 changed files with 258 additions and 187 deletions

View file

@ -4,15 +4,18 @@
#![no_std]
extern crate cortex_m_rtfm as rtfm;
extern crate panic_abort;
extern crate stm32f103xx;
use rtfm::app;
app! { //~ error mismatched types
app! { //~ mismatched types
device: stm32f103xx,
}
fn init(_p: init::Peripherals) {}
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources {}
}
// ERROR `idle` must be a diverging function
fn idle() {}
fn idle(_ctxt: idle::Context) {}