2018-11-04 18:50:42 +01:00
|
|
|
//! examples/generics.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
2018-11-04 18:50:42 +01:00
|
|
|
use lm3s6965::Interrupt;
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_semihosting as _;
|
|
|
|
use rtfm::{Exclusive, Mutex};
|
2018-11-04 18:50:42 +01:00
|
|
|
|
2019-04-21 20:10:40 +02:00
|
|
|
#[rtfm::app(device = lm3s6965)]
|
2018-11-04 18:50:42 +01:00
|
|
|
const APP: () = {
|
2019-07-10 22:42:44 +02:00
|
|
|
struct Resources {
|
|
|
|
#[init(0)]
|
|
|
|
shared: u32,
|
|
|
|
}
|
2018-11-04 18:50:42 +01:00
|
|
|
|
|
|
|
#[init]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn init(_: init::Context) {
|
2018-11-04 18:50:42 +01:00
|
|
|
rtfm::pend(Interrupt::UART0);
|
|
|
|
rtfm::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) {
|
2018-11-04 18:50:42 +01:00
|
|
|
static mut STATE: u32 = 0;
|
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("UART0(STATE = {})", *STATE).unwrap();
|
2018-11-04 18:50:42 +01:00
|
|
|
|
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);
|
2018-11-04 18:50:42 +01:00
|
|
|
|
|
|
|
rtfm::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) {
|
2018-11-04 18:50:42 +01:00
|
|
|
static mut STATE: u32 = 0;
|
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("UART1(STATE = {})", *STATE).unwrap();
|
2018-11-04 18:50:42 +01:00
|
|
|
|
2019-07-10 22:42:44 +02:00
|
|
|
// just to show that `shared` can be accessed directly
|
|
|
|
*c.resources.shared += 0;
|
2018-11-04 18:50:42 +01:00
|
|
|
|
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));
|
2018-11-04 18:50:42 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-21 10:17:27 +02:00
|
|
|
// the second parameter is generic: it can be any type that implements the `Mutex` trait
|
2018-11-04 18:50:42 +01:00
|
|
|
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| {
|
2018-11-04 18:50:42 +01:00
|
|
|
let old = *shared;
|
|
|
|
*shared += *state;
|
|
|
|
(old, *shared)
|
|
|
|
});
|
|
|
|
|
2019-07-10 22:42:44 +02:00
|
|
|
hprintln!("shared: {} -> {}", old, new).unwrap();
|
2018-11-04 18:50:42 +01:00
|
|
|
}
|