mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-19 06:15:45 +01:00
parent
653338e799
commit
c631049efc
154 changed files with 7538 additions and 3276 deletions
19
tests/cpass/peripheral.rs
Normal file
19
tests/cpass/peripheral.rs
Normal 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;
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue