mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
11 lines
164 B
Rust
11 lines
164 B
Rust
#![no_main]
|
|
|
|
#[rtic::app(device = lm3s6965)]
|
|
const APP: () = {
|
|
#[task(binds = UART0)]
|
|
fn a(_: a::Context) {}
|
|
|
|
extern "C" {
|
|
fn UART0();
|
|
}
|
|
};
|