mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
26 lines
522 B
Rust
26 lines
522 B
Rust
//! [compile-pass] Split initialization of late resources
|
|
|
|
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use panic_halt as _;
|
|
|
|
#[rtfm::app(cores = 2, device = heterogeneous)]
|
|
const APP: () = {
|
|
extern "C" {
|
|
static mut X: u32;
|
|
static mut Y: u32;
|
|
}
|
|
|
|
#[init(core = 0, late = [X])]
|
|
fn a(_: a::Context) -> a::LateResources {
|
|
a::LateResources { X: 0 }
|
|
}
|
|
|
|
#[init(core = 1)]
|
|
fn b(_: b::Context) -> b::LateResources {
|
|
b::LateResources { Y: 0 }
|
|
}
|
|
};
|