mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
29 lines
546 B
Rust
29 lines
546 B
Rust
|
#![no_main]
|
||
|
|
||
|
#[rtic_macros::mock_app(device = mock)]
|
||
|
mod app {
|
||
|
#[shared]
|
||
|
struct Shared {
|
||
|
#[lock_free]
|
||
|
e: u32,
|
||
|
}
|
||
|
|
||
|
#[local]
|
||
|
struct Local {}
|
||
|
|
||
|
#[init]
|
||
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {}
|
||
|
|
||
|
// e ok
|
||
|
#[task(priority = 1, shared = [e])]
|
||
|
fn uart0(cx: uart0::Context) {}
|
||
|
|
||
|
// e ok
|
||
|
#[task(priority = 1, shared = [e])]
|
||
|
fn uart1(cx: uart1::Context) {}
|
||
|
|
||
|
// e not ok
|
||
|
#[task(priority = 1, shared = [e])]
|
||
|
async fn async_task(cx: async_task::Context) {}
|
||
|
}
|