rtic/examples/smallest.rs
Jorge Aparicio 07b2b4d830 doc up
2019-08-21 10:17:27 +02:00

10 lines
157 B
Rust

//! examples/smallest.rs
#![no_main]
#![no_std]
use panic_semihosting as _; // panic handler
use rtfm::app;
#[app(device = lm3s6965)]
const APP: () = {};