2018-11-03 17:02:41 +01:00
|
|
|
//! examples/periodic.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_semihosting as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-02-20 19:22:45 +01:00
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2021-09-22 13:22:45 +02:00
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
2021-10-31 10:09:40 +01:00
|
|
|
use systick_monotonic::*;
|
2020-10-15 18:50:17 +02:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
#[monotonic(binds = SysTick, default = true)]
|
2021-09-22 13:22:45 +02:00
|
|
|
type MyMono = Systick<100>; // 100 Hz / 10 ms granularity
|
2020-05-19 20:00:13 +02:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[init]
|
2021-07-07 22:50:59 +02:00
|
|
|
fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-02-23 19:35:26 +01:00
|
|
|
let systick = cx.core.SYST;
|
2019-10-16 01:44:49 +02:00
|
|
|
|
2021-12-26 11:42:14 +01:00
|
|
|
// Initialize the monotonic (SysTick rate in QEMU is 12 MHz)
|
2021-09-22 13:22:45 +02:00
|
|
|
let mono = Systick::new(systick, 12_000_000);
|
2020-10-01 19:38:49 +02:00
|
|
|
|
2021-10-31 10:09:40 +01:00
|
|
|
foo::spawn_after(1.secs()).unwrap();
|
2021-02-23 19:35:26 +01:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
(Shared {}, Local {}, init::Monotonics(mono))
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
#[task(local = [cnt: u32 = 0])]
|
|
|
|
fn foo(cx: foo::Context) {
|
|
|
|
hprintln!("foo").ok();
|
|
|
|
*cx.local.cnt += 1;
|
|
|
|
|
|
|
|
if *cx.local.cnt == 4 {
|
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
|
|
|
}
|
|
|
|
|
|
|
|
// Periodic ever 1 seconds
|
2021-10-31 10:09:40 +01:00
|
|
|
foo::spawn_after(1.secs()).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|