rtic/examples/generics.rs

66 lines
1.6 KiB
Rust
Raw Normal View History

//! examples/generics.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use cortex_m_semihosting::{debug, hprintln};
use lm3s6965::Interrupt;
use panic_semihosting as _;
2020-06-11 19:18:29 +02:00
use rtic::{Exclusive, Mutex};
2020-06-11 19:18:29 +02:00
#[rtic::app(device = lm3s6965)]
const APP: () = {
2019-07-10 22:42:44 +02:00
struct Resources {
#[init(0)]
shared: u32,
}
#[init]
2019-04-21 20:10:40 +02:00
fn init(_: init::Context) {
2020-06-11 19:18:29 +02:00
rtic::pend(Interrupt::UART0);
rtic::pend(Interrupt::UART1);
}
2019-07-10 22:42:44 +02:00
#[task(binds = UART0, resources = [shared])]
2019-06-20 06:19:59 +02:00
fn uart0(c: uart0::Context) {
static mut STATE: u32 = 0;
hprintln!("UART0(STATE = {})", *STATE).unwrap();
2019-08-21 10:17:27 +02:00
// second argument has type `resources::shared`
2019-07-10 22:42:44 +02:00
advance(STATE, c.resources.shared);
2020-06-11 19:18:29 +02:00
rtic::pend(Interrupt::UART1);
debug::exit(debug::EXIT_SUCCESS);
}
2019-07-10 22:42:44 +02:00
#[task(binds = UART1, priority = 2, resources = [shared])]
2019-06-20 06:19:59 +02:00
fn uart1(c: uart1::Context) {
static mut STATE: u32 = 0;
hprintln!("UART1(STATE = {})", *STATE).unwrap();
2019-07-10 22:42:44 +02:00
// just to show that `shared` can be accessed directly
*c.resources.shared += 0;
2019-08-21 10:17:27 +02:00
// second argument has type `Exclusive<u32>`
2019-07-10 22:42:44 +02:00
advance(STATE, Exclusive(c.resources.shared));
}
};
2019-08-21 10:17:27 +02:00
// the second parameter is generic: it can be any type that implements the `Mutex` trait
fn advance(state: &mut u32, mut shared: impl Mutex<T = u32>) {
*state += 1;
2019-08-21 10:17:27 +02:00
let (old, new) = shared.lock(|shared: &mut u32| {
let old = *shared;
*shared += *state;
(old, *shared)
});
2019-07-10 22:42:44 +02:00
hprintln!("shared: {} -> {}", old, new).unwrap();
}