closes #32
closes #33
This commit is contained in:
Jorge Aparicio 2018-11-03 17:02:41 +01:00
parent 653338e799
commit c631049efc
154 changed files with 7538 additions and 3276 deletions

19
tests/cpass/peripheral.rs Normal file
View file

@ -0,0 +1,19 @@
//! Core and device peripherals
#![feature(extern_crate_item_prelude)] // ???
#![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() {
let _: rtfm::Peripherals = core;
let _: lm3s6965::Peripherals = device;
}
};