2018-11-03 17:02:41 +01:00
|
|
|
//! examples/capacity.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
extern crate panic_semihosting;
|
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
2018-11-03 17:02:41 +01:00
|
|
|
use lm3s6965::Interrupt;
|
|
|
|
use rtfm::app;
|
|
|
|
|
|
|
|
#[app(device = lm3s6965)]
|
|
|
|
const APP: () = {
|
2018-11-04 18:50:42 +01:00
|
|
|
#[init]
|
2018-11-03 17:02:41 +01:00
|
|
|
fn init() {
|
|
|
|
rtfm::pend(Interrupt::UART0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[interrupt(spawn = [foo, bar])]
|
|
|
|
fn UART0() {
|
|
|
|
spawn.foo(0).unwrap();
|
|
|
|
spawn.foo(1).unwrap();
|
|
|
|
spawn.foo(2).unwrap();
|
|
|
|
spawn.foo(3).unwrap();
|
|
|
|
|
|
|
|
spawn.bar().unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(capacity = 4)]
|
|
|
|
fn foo(x: u32) {
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("foo({})", x).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
|
|
|
fn bar() {
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("bar").unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interrupt handlers used to dispatch software tasks
|
|
|
|
extern "C" {
|
|
|
|
fn UART1();
|
|
|
|
}
|
|
|
|
};
|