aboutsummaryrefslogtreecommitdiff
path: root/examples/double_schedule.rs
blob: 6f24297e622b8e2ad5349ee2983e4abd5fb6f8a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! examples/double_schedule.rs

#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]

use panic_semihosting as _;

#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
mod app {
    use dwt_systick_monotonic::DwtSystick;
    use rtic::time::duration::Seconds;

    #[monotonic(binds = SysTick, default = true)]
    type MyMono = DwtSystick<8_000_000>; // 8 MHz

    #[shared]
    struct Shared {}

    #[local]
    struct Local {}

    #[init]
    fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
        task1::spawn().ok();

        let mut dcb = cx.core.DCB;
        let dwt = cx.core.DWT;
        let systick = cx.core.SYST;

        let mono = DwtSystick::new(&mut dcb, dwt, systick, 8_000_000);

        (Shared {}, Local {}, init::Monotonics(mono))
    }

    #[task]
    fn task1(_cx: task1::Context) {
        task2::spawn_after(Seconds(1_u32)).ok();
    }

    #[task]
    fn task2(_cx: task2::Context) {
        task1::spawn_after(Seconds(1_u32)).ok();
    }
}