rp-pac 7.0.0

Peripheral Access Crate (PAC) for Raspberry Pi Silicon chips.
#[doc = "brown-out detection control"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Bod(pub u32);
impl Bod {
    #[doc = "enable 0=not enabled, 1=enabled"]
    #[inline(always)]
    pub const fn en(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "enable 0=not enabled, 1=enabled"]
    #[inline(always)]
    pub fn set_en(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "threshold select 0000 - 0.473V 0001 - 0.516V 0010 - 0.559V 0011 - 0.602V 0100 - 0.645V 0101 - 0.688V 0110 - 0.731V 0111 - 0.774V 1000 - 0.817V 1001 - 0.860V (default) 1010 - 0.903V 1011 - 0.946V 1100 - 0.989V 1101 - 1.032V 1110 - 1.075V 1111 - 1.118V"]
    #[inline(always)]
    pub const fn vsel(&self) -> u8 {
        let val = (self.0 >> 4usize) & 0x0f;
        val as u8
    }
    #[doc = "threshold select 0000 - 0.473V 0001 - 0.516V 0010 - 0.559V 0011 - 0.602V 0100 - 0.645V 0101 - 0.688V 0110 - 0.731V 0111 - 0.774V 1000 - 0.817V 1001 - 0.860V (default) 1010 - 0.903V 1011 - 0.946V 1100 - 0.989V 1101 - 1.032V 1110 - 1.075V 1111 - 1.118V"]
    #[inline(always)]
    pub fn set_vsel(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 4usize)) | (((val as u32) & 0x0f) << 4usize);
    }
}
impl Default for Bod {
    #[inline(always)]
    fn default() -> Bod {
        Bod(0)
    }
}
impl core::fmt::Debug for Bod {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Bod")
            .field("en", &self.en())
            .field("vsel", &self.vsel())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Bod {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct Bod {
            en: bool,
            vsel: u8,
        }
        let proxy = Bod {
            en: self.en(),
            vsel: self.vsel(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "Chip reset control and status"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct ChipReset(pub u32);
impl ChipReset {
    #[doc = "Last reset was from the power-on reset or brown-out detection blocks"]
    #[inline(always)]
    pub const fn had_por(&self) -> bool {
        let val = (self.0 >> 8usize) & 0x01;
        val != 0
    }
    #[doc = "Last reset was from the power-on reset or brown-out detection blocks"]
    #[inline(always)]
    pub fn set_had_por(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 8usize)) | (((val as u32) & 0x01) << 8usize);
    }
    #[doc = "Last reset was from the RUN pin"]
    #[inline(always)]
    pub const fn had_run(&self) -> bool {
        let val = (self.0 >> 16usize) & 0x01;
        val != 0
    }
    #[doc = "Last reset was from the RUN pin"]
    #[inline(always)]
    pub fn set_had_run(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 16usize)) | (((val as u32) & 0x01) << 16usize);
    }
    #[doc = "Last reset was from the debug port"]
    #[inline(always)]
    pub const fn had_psm_restart(&self) -> bool {
        let val = (self.0 >> 20usize) & 0x01;
        val != 0
    }
    #[doc = "Last reset was from the debug port"]
    #[inline(always)]
    pub fn set_had_psm_restart(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 20usize)) | (((val as u32) & 0x01) << 20usize);
    }
    #[doc = "This is set by psm_restart from the debugger. Its purpose is to branch bootcode to a safe mode when the debugger has issued a psm_restart in order to recover from a boot lock-up. In the safe mode the debugger can repair the boot code, clear this flag then reboot the processor."]
    #[inline(always)]
    pub const fn psm_restart_flag(&self) -> bool {
        let val = (self.0 >> 24usize) & 0x01;
        val != 0
    }
    #[doc = "This is set by psm_restart from the debugger. Its purpose is to branch bootcode to a safe mode when the debugger has issued a psm_restart in order to recover from a boot lock-up. In the safe mode the debugger can repair the boot code, clear this flag then reboot the processor."]
    #[inline(always)]
    pub fn set_psm_restart_flag(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 24usize)) | (((val as u32) & 0x01) << 24usize);
    }
}
impl Default for ChipReset {
    #[inline(always)]
    fn default() -> ChipReset {
        ChipReset(0)
    }
}
impl core::fmt::Debug for ChipReset {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("ChipReset")
            .field("had_por", &self.had_por())
            .field("had_run", &self.had_run())
            .field("had_psm_restart", &self.had_psm_restart())
            .field("psm_restart_flag", &self.psm_restart_flag())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for ChipReset {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct ChipReset {
            had_por: bool,
            had_run: bool,
            had_psm_restart: bool,
            psm_restart_flag: bool,
        }
        let proxy = ChipReset {
            had_por: self.had_por(),
            had_run: self.had_run(),
            had_psm_restart: self.had_psm_restart(),
            psm_restart_flag: self.psm_restart_flag(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "Voltage regulator control and status"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Vreg(pub u32);
impl Vreg {
    #[doc = "enable 0=not enabled, 1=enabled"]
    #[inline(always)]
    pub const fn en(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "enable 0=not enabled, 1=enabled"]
    #[inline(always)]
    pub fn set_en(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "high impedance mode select 0=not in high impedance mode, 1=in high impedance mode"]
    #[inline(always)]
    pub const fn hiz(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "high impedance mode select 0=not in high impedance mode, 1=in high impedance mode"]
    #[inline(always)]
    pub fn set_hiz(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "output voltage select 0000 to 0101 - 0.80V 0110 - 0.85V 0111 - 0.90V 1000 - 0.95V 1001 - 1.00V 1010 - 1.05V 1011 - 1.10V (default) 1100 - 1.15V 1101 - 1.20V 1110 - 1.25V 1111 - 1.30V"]
    #[inline(always)]
    pub const fn vsel(&self) -> u8 {
        let val = (self.0 >> 4usize) & 0x0f;
        val as u8
    }
    #[doc = "output voltage select 0000 to 0101 - 0.80V 0110 - 0.85V 0111 - 0.90V 1000 - 0.95V 1001 - 1.00V 1010 - 1.05V 1011 - 1.10V (default) 1100 - 1.15V 1101 - 1.20V 1110 - 1.25V 1111 - 1.30V"]
    #[inline(always)]
    pub fn set_vsel(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 4usize)) | (((val as u32) & 0x0f) << 4usize);
    }
    #[doc = "regulation status 0=not in regulation, 1=in regulation"]
    #[inline(always)]
    pub const fn rok(&self) -> bool {
        let val = (self.0 >> 12usize) & 0x01;
        val != 0
    }
    #[doc = "regulation status 0=not in regulation, 1=in regulation"]
    #[inline(always)]
    pub fn set_rok(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 12usize)) | (((val as u32) & 0x01) << 12usize);
    }
}
impl Default for Vreg {
    #[inline(always)]
    fn default() -> Vreg {
        Vreg(0)
    }
}
impl core::fmt::Debug for Vreg {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Vreg")
            .field("en", &self.en())
            .field("hiz", &self.hiz())
            .field("vsel", &self.vsel())
            .field("rok", &self.rok())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Vreg {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct Vreg {
            en: bool,
            hiz: bool,
            vsel: u8,
            rok: bool,
        }
        let proxy = Vreg {
            en: self.en(),
            hiz: self.hiz(),
            vsel: self.vsel(),
            rok: self.rok(),
        };
        defmt::write!(f, "{}", proxy)
    }
}