embassy/examples/rp/src/bin/multicore.rs

65 lines
1.9 KiB
Rust
Raw Normal View History

//! This example shows how to send messages between the two cores in the RP2040 chip.
//!
//! The LED on the RP Pico W board is connected differently. See wifi_blinky.rs.
2022-12-10 08:26:35 +01:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::Executor;
use embassy_rp::gpio::{Level, Output};
2022-12-13 13:49:51 +01:00
use embassy_rp::multicore::{spawn_core1, Stack};
2022-12-10 08:26:35 +01:00
use embassy_rp::peripherals::PIN_25;
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
use embassy_sync::channel::Channel;
use embassy_time::{Duration, Timer};
2023-06-01 01:32:11 +02:00
use static_cell::StaticCell;
2022-12-10 08:26:35 +01:00
use {defmt_rtt as _, panic_probe as _};
static mut CORE1_STACK: Stack<4096> = Stack::new();
static EXECUTOR0: StaticCell<Executor> = StaticCell::new();
static EXECUTOR1: StaticCell<Executor> = StaticCell::new();
static CHANNEL: Channel<CriticalSectionRawMutex, LedState, 1> = Channel::new();
enum LedState {
On,
Off,
}
#[cortex_m_rt::entry]
fn main() -> ! {
let p = embassy_rp::init(Default::default());
let led = Output::new(p.PIN_25, Level::Low);
2022-12-13 13:49:51 +01:00
spawn_core1(p.CORE1, unsafe { &mut CORE1_STACK }, move || {
2022-12-10 08:26:35 +01:00
let executor1 = EXECUTOR1.init(Executor::new());
executor1.run(|spawner| unwrap!(spawner.spawn(core1_task(led))));
});
let executor0 = EXECUTOR0.init(Executor::new());
executor0.run(|spawner| unwrap!(spawner.spawn(core0_task())));
}
#[embassy_executor::task]
async fn core0_task() {
info!("Hello from core 0");
loop {
CHANNEL.send(LedState::On).await;
Timer::after(Duration::from_millis(100)).await;
CHANNEL.send(LedState::Off).await;
Timer::after(Duration::from_millis(400)).await;
}
}
#[embassy_executor::task]
async fn core1_task(mut led: Output<'static, PIN_25>) {
info!("Hello from core 1");
loop {
2023-08-11 11:58:22 +02:00
match CHANNEL.receive().await {
2022-12-10 08:26:35 +01:00
LedState::On => led.set_high(),
LedState::Off => led.set_low(),
}
}
2022-12-10 08:33:09 +01:00
}