5085100df2
- Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
37 lines
802 B
Rust
37 lines
802 B
Rust
use crate::interrupt::Interrupt;
|
|
|
|
use crate::rcc::RccPeripheral;
|
|
|
|
#[cfg(feature = "nightly")]
|
|
mod usb;
|
|
#[cfg(feature = "nightly")]
|
|
pub use usb::*;
|
|
|
|
pub(crate) mod sealed {
|
|
pub trait Instance {
|
|
fn regs() -> crate::pac::usb::Usb;
|
|
}
|
|
}
|
|
|
|
pub trait Instance: sealed::Instance + RccPeripheral + 'static {
|
|
type Interrupt: Interrupt;
|
|
}
|
|
|
|
// Internal PHY pins
|
|
pin_trait!(DpPin, Instance);
|
|
pin_trait!(DmPin, Instance);
|
|
|
|
foreach_interrupt!(
|
|
($inst:ident, usb, $block:ident, LP, $irq:ident) => {
|
|
impl sealed::Instance for crate::peripherals::$inst {
|
|
fn regs() -> crate::pac::usb::Usb {
|
|
crate::pac::$inst
|
|
}
|
|
}
|
|
|
|
impl Instance for crate::peripherals::$inst {
|
|
type Interrupt = crate::interrupt::$irq;
|
|
}
|
|
};
|
|
);
|