aboutsummaryrefslogtreecommitdiff
path: root/tests/cpass/spawn.rs
blob: 3df606a4a024f4e512c55dddb2aee2282cc5e9b0 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Check code generation of `spawn`
#![no_main]
#![no_std]

extern crate lm3s6965;
extern crate panic_halt;
extern crate rtfm;

use rtfm::app;

#[app(device = lm3s6965)]
const APP: () = {
    #[init(spawn = [foo, bar, baz])]
    fn init() {
        let _: Result<(), ()> = spawn.foo();
        let _: Result<(), u32> = spawn.bar(0);
        let _: Result<(), (u32, u32)> = spawn.baz(0, 1);
    }

    #[idle(spawn = [foo, bar, baz])]
    fn idle() -> ! {
        let _: Result<(), ()> = spawn.foo();
        let _: Result<(), u32> = spawn.bar(0);
        let _: Result<(), (u32, u32)> = spawn.baz(0, 1);

        loop {}
    }

    #[exception(spawn = [foo, bar, baz])]
    fn SVCall() {
        let _: Result<(), ()> = spawn.foo();
        let _: Result<(), u32> = spawn.bar(0);
        let _: Result<(), (u32, u32)> = spawn.baz(0, 1);
    }

    #[interrupt(spawn = [foo, bar, baz])]
    fn UART0() {
        let _: Result<(), ()> = spawn.foo();
        let _: Result<(), u32> = spawn.bar(0);
        let _: Result<(), (u32, u32)> = spawn.baz(0, 1);
    }

    #[task(spawn = [foo, bar, baz])]
    fn foo() {
        let _: Result<(), ()> = spawn.foo();
        let _: Result<(), u32> = spawn.bar(0);
        let _: Result<(), (u32, u32)> = spawn.baz(0, 1);
    }

    #[task]
    fn bar(_x: u32) {}

    #[task]
    fn baz(_x: u32, _y: u32) {}

    extern "C" {
        fn UART1();
    }
};