Make interrupt module more standard.
- Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
This commit is contained in:
@ -3,10 +3,10 @@ use core::future::Future;
|
||||
use core::pin::Pin as FuturePin;
|
||||
use core::task::{Context, Poll};
|
||||
|
||||
use embassy_cortex_m::interrupt::Interrupt;
|
||||
use embassy_hal_common::{impl_peripheral, into_ref, PeripheralRef};
|
||||
use embassy_sync::waitqueue::AtomicWaker;
|
||||
|
||||
use crate::interrupt::InterruptExt;
|
||||
use crate::pac::common::{Reg, RW};
|
||||
use crate::pac::SIO;
|
||||
use crate::{interrupt, pac, peripherals, Peripheral, RegExt};
|
||||
@ -137,9 +137,9 @@ pub enum InterruptTrigger {
|
||||
}
|
||||
|
||||
pub(crate) unsafe fn init() {
|
||||
interrupt::IO_IRQ_BANK0::disable();
|
||||
interrupt::IO_IRQ_BANK0::set_priority(interrupt::Priority::P3);
|
||||
interrupt::IO_IRQ_BANK0::enable();
|
||||
interrupt::IO_IRQ_BANK0.disable();
|
||||
interrupt::IO_IRQ_BANK0.set_priority(interrupt::Priority::P3);
|
||||
interrupt::IO_IRQ_BANK0.enable();
|
||||
}
|
||||
|
||||
#[interrupt]
|
||||
|
Reference in New Issue
Block a user