mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00
154 lines
4.1 KiB
Rust
154 lines
4.1 KiB
Rust
//! Software Interrupts
|
|
//!
|
|
//! An example of how software interrupts can be raised and reset
|
|
//! Should rotate through all of the available interrupts printing their number
|
|
//! when raised.
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::cell::RefCell;
|
|
|
|
use critical_section::Mutex;
|
|
use esp32s3_hal::{
|
|
clock::ClockControl,
|
|
interrupt::{self},
|
|
peripherals::{self, Peripherals},
|
|
prelude::*,
|
|
system::{SoftwareInterrupt, SoftwareInterruptControl},
|
|
timer::TimerGroup,
|
|
Delay,
|
|
Rtc,
|
|
};
|
|
use esp_backtrace as _;
|
|
|
|
static SWINT: Mutex<RefCell<Option<SoftwareInterruptControl>>> = Mutex::new(RefCell::new(None));
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = Peripherals::take();
|
|
let mut system = peripherals.SYSTEM.split();
|
|
let sw_int = system.software_interrupt_control;
|
|
let clocks = ClockControl::boot_defaults(system.clock_control).freeze();
|
|
|
|
let timer_group0 = TimerGroup::new(
|
|
peripherals.TIMG0,
|
|
&clocks,
|
|
&mut system.peripheral_clock_control,
|
|
);
|
|
let mut wdt = timer_group0.wdt;
|
|
let mut rtc = Rtc::new(peripherals.RTC_CNTL);
|
|
|
|
// Disable MWDT and RWDT (Watchdog) flash boot protection
|
|
wdt.disable();
|
|
rtc.rwdt.disable();
|
|
|
|
critical_section::with(|cs| SWINT.borrow_ref_mut(cs).replace(sw_int));
|
|
|
|
interrupt::enable(
|
|
peripherals::Interrupt::FROM_CPU_INTR0,
|
|
interrupt::Priority::Priority3,
|
|
)
|
|
.unwrap();
|
|
interrupt::enable(
|
|
peripherals::Interrupt::FROM_CPU_INTR1,
|
|
interrupt::Priority::Priority3,
|
|
)
|
|
.unwrap();
|
|
interrupt::enable(
|
|
peripherals::Interrupt::FROM_CPU_INTR2,
|
|
interrupt::Priority::Priority3,
|
|
)
|
|
.unwrap();
|
|
interrupt::enable(
|
|
peripherals::Interrupt::FROM_CPU_INTR3,
|
|
interrupt::Priority::Priority3,
|
|
)
|
|
.unwrap();
|
|
let mut delay = Delay::new(&clocks);
|
|
let mut counter = 0;
|
|
loop {
|
|
delay.delay_ms(500u32);
|
|
match counter {
|
|
0 => critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.raise(SoftwareInterrupt::SoftwareInterrupt0);
|
|
}),
|
|
1 => critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.raise(SoftwareInterrupt::SoftwareInterrupt1);
|
|
}),
|
|
2 => critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.raise(SoftwareInterrupt::SoftwareInterrupt2);
|
|
}),
|
|
3 => {
|
|
critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.raise(SoftwareInterrupt::SoftwareInterrupt3);
|
|
});
|
|
counter = -1
|
|
}
|
|
_ => {}
|
|
}
|
|
counter += 1;
|
|
}
|
|
}
|
|
|
|
#[interrupt]
|
|
fn FROM_CPU_INTR0() {
|
|
esp_println::println!("SW interrupt0");
|
|
critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.reset(SoftwareInterrupt::SoftwareInterrupt0);
|
|
});
|
|
}
|
|
#[interrupt]
|
|
fn FROM_CPU_INTR1() {
|
|
esp_println::println!("SW interrupt1");
|
|
critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.reset(SoftwareInterrupt::SoftwareInterrupt1);
|
|
});
|
|
}
|
|
#[interrupt]
|
|
fn FROM_CPU_INTR2() {
|
|
esp_println::println!("SW interrupt2");
|
|
critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.reset(SoftwareInterrupt::SoftwareInterrupt2);
|
|
});
|
|
}
|
|
#[interrupt]
|
|
fn FROM_CPU_INTR3() {
|
|
esp_println::println!("SW interrupt3");
|
|
critical_section::with(|cs| {
|
|
SWINT
|
|
.borrow_ref_mut(cs)
|
|
.as_mut()
|
|
.unwrap()
|
|
.reset(SoftwareInterrupt::SoftwareInterrupt3);
|
|
});
|
|
}
|