aboutsummaryrefslogtreecommitdiff
path: root/homogeneous/examples/x-init-2.rs
blob: de35cf6f5f691912d6ad3b340f7caf8bf1f3f69f (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
//! [compile-pass] Cross initialization of late resources

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

use panic_halt as _;

#[rtfm::app(cores = 2, device = homogeneous)]
const APP: () = {
    struct Resources {
        // owned by core #1 but initialized by core #0
        x: u32,

        // owned by core #0 but initialized by core #1
        y: u32,
    }

    #[init(core = 0, late = [x])]
    fn a(_: a::Context) -> a::LateResources {
        a::LateResources { x: 0 }
    }

    #[idle(core = 0, resources = [y])]
    fn b(_: b::Context) -> ! {
        loop {}
    }

    #[init(core = 1)]
    fn c(_: c::Context) -> c::LateResources {
        c::LateResources { y: 0 }
    }

    #[idle(core = 1, resources = [x])]
    fn d(_: d::Context) -> ! {
        loop {}
    }
};