mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
38 lines
796 B
Rust
38 lines
796 B
Rust
#![no_main]
|
|
|
|
#[rtic_macros::mock_app(device = mock)]
|
|
mod app {
|
|
#[shared]
|
|
struct Shared {
|
|
// An exclusive, early resource
|
|
#[lock_free]
|
|
e1: u32,
|
|
|
|
// An exclusive, late resource
|
|
#[lock_free]
|
|
e2: u32,
|
|
}
|
|
|
|
#[local]
|
|
struct Local {}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> (Shared, Local) {}
|
|
|
|
// e2 ok
|
|
#[idle(shared = [e2])]
|
|
fn idle(cx: idle::Context) -> ! {
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
loop {}
|
|
}
|
|
|
|
// e1 rejected (not lock_free)
|
|
#[task(binds = UART0, priority = 1, shared = [e1])]
|
|
fn uart0(cx: uart0::Context) {
|
|
*cx.resources.e1 += 10;
|
|
}
|
|
|
|
// e1 rejected (not lock_free)
|
|
#[task(binds = UART1, priority = 2, shared = [e1])]
|
|
fn uart1(cx: uart1::Context) {}
|
|
}
|