2020-10-24 19:38:49 +02:00
|
|
|
//! examples/extern_spawn.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
2023-01-07 17:59:39 +01:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2020-10-24 19:38:49 +02:00
|
|
|
|
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
|
|
|
use panic_semihosting as _;
|
|
|
|
|
|
|
|
// Free function implementing the spawnable task `foo`.
|
2023-01-07 17:59:39 +01:00
|
|
|
// Notice, you need to indicate an anonymous lifetime <'a_>
|
|
|
|
async fn foo(_c: app::foo::Context<'_>) {
|
|
|
|
hprintln!("foo").unwrap();
|
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
2020-10-24 19:38:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
|
|
|
mod app {
|
|
|
|
use crate::foo;
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
2020-10-24 19:38:49 +02:00
|
|
|
#[init]
|
2023-01-07 17:59:39 +01:00
|
|
|
fn init(_: init::Context) -> (Shared, Local) {
|
|
|
|
foo::spawn().unwrap();
|
2020-10-24 19:38:49 +02:00
|
|
|
|
2023-01-07 17:59:39 +01:00
|
|
|
(Shared {}, Local {})
|
2020-10-24 19:38:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "Rust" {
|
|
|
|
#[task()]
|
2023-01-07 17:59:39 +01:00
|
|
|
async fn foo(_c: foo::Context);
|
2020-10-24 19:38:49 +02:00
|
|
|
}
|
|
|
|
}
|