mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
79b62797f5
Changes MSRV to 1.42, failing tests updated to match 1.42.
7 lines
96 B
Rust
7 lines
96 B
Rust
#![no_main]
|
|
|
|
#[rtic::app(device = lm3s6965)]
|
|
mod APP {
|
|
#[task]
|
|
fn a(_: a::Context) {}
|
|
}
|