mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-20 14:55:30 +01:00
update the cfail tests
This commit is contained in:
parent
205aa44ed5
commit
e34abea704
22 changed files with 258 additions and 187 deletions
|
|
@ -4,17 +4,19 @@
|
|||
#![no_std]
|
||||
|
||||
extern crate cortex_m_rtfm as rtfm;
|
||||
extern crate panic_abort;
|
||||
extern crate stm32f103xx;
|
||||
|
||||
use rtfm::app;
|
||||
|
||||
app! { //~ error mismatched types
|
||||
app! { //~ error incorrect number of function parameters
|
||||
//~^ note expected type `fn(init::Context) -> _ZN4init13LateResourcesE`
|
||||
device: stm32f103xx,
|
||||
}
|
||||
|
||||
// ERROR `init` must have signature `fn (init::Peripherals)`
|
||||
fn init() {}
|
||||
|
||||
fn idle() -> ! {
|
||||
fn idle(_ctxt: idle::Context) -> ! {
|
||||
loop {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue