mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 12:55:23 +01:00
parent
eb528ef921
commit
0fb2726e6c
3 changed files with 49 additions and 260 deletions
15
tests/cfail/init-extra-late-resources.rs
Normal file
15
tests/cfail/init-extra-late-resources.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
extern crate lm3s6965;
|
||||
extern crate panic_halt;
|
||||
extern crate rtfm;
|
||||
|
||||
use rtfm::app;
|
||||
|
||||
#[app(device = lm3s6965)]
|
||||
const APP: () = {
|
||||
#[init]
|
||||
fn init(_: init::Context) -> init::LateResources {}
|
||||
//~^ error: `init` signature must be `fn(init::Context)` if there are no late resources
|
||||
};
|
||||
17
tests/cfail/init-missing-late-resources.rs
Normal file
17
tests/cfail/init-missing-late-resources.rs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
extern crate lm3s6965;
|
||||
extern crate panic_halt;
|
||||
extern crate rtfm;
|
||||
|
||||
use rtfm::app;
|
||||
|
||||
#[app(device = lm3s6965)]
|
||||
const APP: () = {
|
||||
static mut X: i32 = ();
|
||||
|
||||
#[init]
|
||||
fn init(_: init::Context) {}
|
||||
//~^ error: late resources have been specified so `init` must return `init::LateResources`
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue