2017-07-21 05:53:44 +02:00
|
|
|
//! A showcase of the `app!` macro syntax
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! #![deny(unsafe_code)]
|
|
|
|
//! #![feature(proc_macro)]
|
|
|
|
//! #![no_std]
|
|
|
|
//!
|
|
|
|
//! extern crate cortex_m_rtfm as rtfm;
|
|
|
|
//! extern crate stm32f103xx;
|
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! use rtfm::{app, Threshold};
|
2017-07-21 05:53:44 +02:00
|
|
|
//!
|
|
|
|
//! app! {
|
|
|
|
//! device: stm32f103xx,
|
|
|
|
//!
|
|
|
|
//! resources: {
|
|
|
|
//! static CO_OWNED: u32 = 0;
|
2017-07-28 05:40:47 +02:00
|
|
|
//! static ON: bool = false;
|
2017-07-21 05:53:44 +02:00
|
|
|
//! static OWNED: bool = false;
|
|
|
|
//! static SHARED: bool = false;
|
|
|
|
//! },
|
|
|
|
//!
|
|
|
|
//! init: {
|
2017-07-28 05:40:47 +02:00
|
|
|
//! // This is the path to the `init` function
|
|
|
|
//! //
|
|
|
|
//! // `init` doesn't necessarily has to be in the root of the crate
|
|
|
|
//! path: main::init,
|
2017-07-21 05:53:44 +02:00
|
|
|
//! },
|
|
|
|
//!
|
|
|
|
//! idle: {
|
2017-07-28 05:40:47 +02:00
|
|
|
//! // This is a path to the `idle` function
|
|
|
|
//! //
|
|
|
|
//! // `idle` doesn't necessarily has to be in the root of the crate
|
|
|
|
//! path: main::idle,
|
2017-07-21 05:53:44 +02:00
|
|
|
//! resources: [OWNED, SHARED],
|
|
|
|
//! },
|
|
|
|
//!
|
|
|
|
//! tasks: {
|
|
|
|
//! SYS_TICK: {
|
2017-07-28 05:40:47 +02:00
|
|
|
//! path: sys_tick,
|
|
|
|
//! // If omitted priority is assumed to be 1
|
|
|
|
//! // priority: 1,
|
|
|
|
//! resources: [CO_OWNED, ON, SHARED],
|
2017-07-21 05:53:44 +02:00
|
|
|
//! },
|
|
|
|
//!
|
|
|
|
//! TIM2: {
|
2017-07-28 05:40:47 +02:00
|
|
|
//! // Tasks are enabled, between `init` and `idle`, by default but they
|
|
|
|
//! // can start disabled if `false` is specified here
|
|
|
|
//! enabled: false,
|
|
|
|
//! path: tim2,
|
2017-07-21 05:53:44 +02:00
|
|
|
//! priority: 1,
|
|
|
|
//! resources: [CO_OWNED],
|
|
|
|
//! },
|
|
|
|
//! },
|
|
|
|
//! }
|
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! mod main {
|
|
|
|
//! use rtfm::{self, Resource, Threshold};
|
2017-07-21 05:53:44 +02:00
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! pub fn init(_p: ::init::Peripherals, _r: ::init::Resources) {}
|
2017-07-21 05:53:44 +02:00
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! pub fn idle(t: &mut Threshold, mut r: ::idle::Resources) -> ! {
|
|
|
|
//! loop {
|
|
|
|
//! *r.OWNED != *r.OWNED;
|
2017-07-21 05:53:44 +02:00
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! if *r.OWNED {
|
|
|
|
//! if r.SHARED.claim(t, |shared, _| **shared) {
|
|
|
|
//! rtfm::wfi();
|
|
|
|
//! }
|
|
|
|
//! } else {
|
|
|
|
//! r.SHARED.claim_mut(t, |shared, _| **shared = !**shared);
|
2017-07-21 05:53:44 +02:00
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
2017-07-28 05:40:47 +02:00
|
|
|
//! fn sys_tick(_t: &mut Threshold, r: SYS_TICK::Resources) {
|
|
|
|
//! **r.ON = !**r.ON;
|
2017-07-21 05:53:44 +02:00
|
|
|
//!
|
|
|
|
//! **r.CO_OWNED += 1;
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn tim2(_t: &mut Threshold, r: TIM2::Resources) {
|
|
|
|
//! **r.CO_OWNED += 1;
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
// Auto-generated. Do not modify.
|