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
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic::app;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
#[app(device = lm3s6965)]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {}
|