aboutsummaryrefslogtreecommitdiff
path: root/examples/t-schedule-core-stable.rs
blob: 10539014a79b3de3ff12826f4d8b960c2607f485 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! [compile-pass] Check `schedule` code generation

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

use panic_halt as _;

#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT, dispatchers = [SSI0])]
mod app {
    #[init]
    fn init(c: init::Context) -> init::LateResources {
        let _c: rtic::Peripherals = c.core;

        init::LateResources {}
    }

    #[task]
    fn some_task(_: some_task::Context) {}
}