2018-11-03 17:02:41 +01:00
|
|
|
//! examples/smallest.rs
|
|
|
|
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_semihosting as _; // panic handler
|
2018-11-03 17:02:41 +01:00
|
|
|
use rtfm::app;
|
|
|
|
|
|
|
|
#[app(device = lm3s6965)]
|
2019-06-13 23:56:59 +02:00
|
|
|
const APP: () = {};
|