mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
8 lines
103 B
Rust
8 lines
103 B
Rust
|
#![no_main]
|
||
|
#![no_std]
|
||
|
|
||
|
use panic_halt as _;
|
||
|
|
||
|
#[rtfm::app(cores = 2, device = mc)]
|
||
|
const APP: () = {};
|