rtic/examples/smallest.rs

11 lines
157 B
Rust
Raw Permalink Normal View History

2018-11-03 17:02:41 +01:00
//! examples/smallest.rs
#![no_main]
#![no_std]
use panic_semihosting as _; // panic handler
2020-06-11 19:18:29 +02:00
use rtic::app;
2018-11-03 17:02:41 +01:00
#[app(device = lm3s6965)]
const APP: () = {};