mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
0fb2726e6c
that was added in #140 but it's no longer required
15 lines
315 B
Rust
15 lines
315 B
Rust
#![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
|
|
};
|