mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-29 15:04:32 +01:00
906278e310
* adjust esp32c3 codegen, bump pac to 0.21.0 * add esp32c3 example * adjust workflow flags * CI: Fix esp32c3 comment * esp32c3: Remove commented out git-dep * CI: Actually check the ESP32-C3 examples * Autoformat rtic/cargo.toml --------- Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
66 lines
1.7 KiB
Rust
66 lines
1.7 KiB
Rust
#![no_main]
|
|
#![no_std]
|
|
|
|
#[rtic::app(device = esp32c3, dispatchers=[FROM_CPU_INTR0, FROM_CPU_INTR1])]
|
|
mod app {
|
|
use esp_backtrace as _;
|
|
use esp_hal::{
|
|
gpio::{Event, Gpio9, Input, PullDown, IO},
|
|
peripherals::Peripherals,
|
|
prelude::*,
|
|
};
|
|
use esp_println::println;
|
|
#[shared]
|
|
struct Shared {}
|
|
|
|
#[local]
|
|
struct Local {
|
|
button: Gpio9<Input<PullDown>>,
|
|
}
|
|
|
|
// do nothing in init
|
|
#[init]
|
|
fn init(_: init::Context) -> (Shared, Local) {
|
|
println!("init");
|
|
let peripherals = Peripherals::take();
|
|
let io = IO::new(peripherals.GPIO, peripherals.IO_MUX);
|
|
let mut button = io.pins.gpio9.into_pull_down_input();
|
|
button.listen(Event::FallingEdge);
|
|
foo::spawn().unwrap();
|
|
(Shared {}, Local { button })
|
|
}
|
|
|
|
#[idle()]
|
|
fn idle(_: idle::Context) -> ! {
|
|
println!("idle");
|
|
loop {}
|
|
}
|
|
|
|
#[task(priority = 5)]
|
|
async fn foo(_: foo::Context) {
|
|
bar::spawn().unwrap(); //enqueue low prio task
|
|
println!("Inside high prio task, press button now!");
|
|
let mut x = 0;
|
|
while x < 5000000 {
|
|
x += 1; //burn cycles
|
|
esp_hal::riscv::asm::nop();
|
|
}
|
|
println!("Leaving high prio task.");
|
|
}
|
|
#[task(priority = 2)]
|
|
async fn bar(_: bar::Context) {
|
|
println!("Inside low prio task, press button now!");
|
|
let mut x = 0;
|
|
while x < 5000000 {
|
|
x += 1; //burn cycles
|
|
esp_hal::riscv::asm::nop();
|
|
}
|
|
println!("Leaving low prio task.");
|
|
}
|
|
|
|
#[task(binds=GPIO, local=[button], priority = 3)]
|
|
fn gpio_handler(cx: gpio_handler::Context) {
|
|
cx.local.button.clear_interrupt();
|
|
println!("button");
|
|
}
|
|
}
|