pub trait _esp_hal_system_SystemExt<'d> {
    type Parts;

    // Required method
    fn split(self) -> Self::Parts;
}
Expand description

Extension trait to split a SYSTEM/DPORT peripheral in independent logical parts

Required Associated Types§

Required Methods§

source

fn split(self) -> Self::Parts

Splits the SYSTEM/DPORT peripheral into it’s parts.

Implementors§

source§

impl<'d, T> SystemExt<'d> for T
where T: Peripheral<P = SYSTEM> + 'd,

§

type Parts = SystemParts<'d>