stm32f7-staging 0.18.1

Device support crates for STM32F7 devices
Documentation
///Register `SSCGR` reader
pub type R = crate::R<SSCGRrs>;
///Register `SSCGR` writer
pub type W = crate::W<SSCGRrs>;
///Field `MODPER` reader - Modulation period
pub type MODPER_R = crate::FieldReader<u16>;
///Field `MODPER` writer - Modulation period
pub type MODPER_W<'a, REG> = crate::FieldWriter<'a, REG, 13, u16, crate::Safe>;
///Field `INCSTEP` reader - Incrementation step
pub type INCSTEP_R = crate::FieldReader<u16>;
///Field `INCSTEP` writer - Incrementation step
pub type INCSTEP_W<'a, REG> = crate::FieldWriter<'a, REG, 15, u16, crate::Safe>;
/**Spread Select

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SPREADSEL {
    ///0: Center spread
    Center = 0,
    ///1: Down spread
    Down = 1,
}
impl From<SPREADSEL> for bool {
    #[inline(always)]
    fn from(variant: SPREADSEL) -> Self {
        variant as u8 != 0
    }
}
///Field `SPREADSEL` reader - Spread Select
pub type SPREADSEL_R = crate::BitReader<SPREADSEL>;
impl SPREADSEL_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> SPREADSEL {
        match self.bits {
            false => SPREADSEL::Center,
            true => SPREADSEL::Down,
        }
    }
    ///Center spread
    #[inline(always)]
    pub fn is_center(&self) -> bool {
        *self == SPREADSEL::Center
    }
    ///Down spread
    #[inline(always)]
    pub fn is_down(&self) -> bool {
        *self == SPREADSEL::Down
    }
}
///Field `SPREADSEL` writer - Spread Select
pub type SPREADSEL_W<'a, REG> = crate::BitWriter<'a, REG, SPREADSEL>;
impl<'a, REG> SPREADSEL_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///Center spread
    #[inline(always)]
    pub fn center(self) -> &'a mut crate::W<REG> {
        self.variant(SPREADSEL::Center)
    }
    ///Down spread
    #[inline(always)]
    pub fn down(self) -> &'a mut crate::W<REG> {
        self.variant(SPREADSEL::Down)
    }
}
/**Spread spectrum modulation enable

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SSCGEN {
    ///0: Spread spectrum modulation disabled
    Disabled = 0,
    ///1: Spread spectrum modulation enabled
    Enabled = 1,
}
impl From<SSCGEN> for bool {
    #[inline(always)]
    fn from(variant: SSCGEN) -> Self {
        variant as u8 != 0
    }
}
///Field `SSCGEN` reader - Spread spectrum modulation enable
pub type SSCGEN_R = crate::BitReader<SSCGEN>;
impl SSCGEN_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> SSCGEN {
        match self.bits {
            false => SSCGEN::Disabled,
            true => SSCGEN::Enabled,
        }
    }
    ///Spread spectrum modulation disabled
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == SSCGEN::Disabled
    }
    ///Spread spectrum modulation enabled
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == SSCGEN::Enabled
    }
}
///Field `SSCGEN` writer - Spread spectrum modulation enable
pub type SSCGEN_W<'a, REG> = crate::BitWriter<'a, REG, SSCGEN>;
impl<'a, REG> SSCGEN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///Spread spectrum modulation disabled
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(SSCGEN::Disabled)
    }
    ///Spread spectrum modulation enabled
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(SSCGEN::Enabled)
    }
}
impl R {
    ///Bits 0:12 - Modulation period
    #[inline(always)]
    pub fn modper(&self) -> MODPER_R {
        MODPER_R::new((self.bits & 0x1fff) as u16)
    }
    ///Bits 13:27 - Incrementation step
    #[inline(always)]
    pub fn incstep(&self) -> INCSTEP_R {
        INCSTEP_R::new(((self.bits >> 13) & 0x7fff) as u16)
    }
    ///Bit 30 - Spread Select
    #[inline(always)]
    pub fn spreadsel(&self) -> SPREADSEL_R {
        SPREADSEL_R::new(((self.bits >> 30) & 1) != 0)
    }
    ///Bit 31 - Spread spectrum modulation enable
    #[inline(always)]
    pub fn sscgen(&self) -> SSCGEN_R {
        SSCGEN_R::new(((self.bits >> 31) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("SSCGR")
            .field("sscgen", &self.sscgen())
            .field("spreadsel", &self.spreadsel())
            .field("incstep", &self.incstep())
            .field("modper", &self.modper())
            .finish()
    }
}
impl W {
    ///Bits 0:12 - Modulation period
    #[inline(always)]
    pub fn modper(&mut self) -> MODPER_W<SSCGRrs> {
        MODPER_W::new(self, 0)
    }
    ///Bits 13:27 - Incrementation step
    #[inline(always)]
    pub fn incstep(&mut self) -> INCSTEP_W<SSCGRrs> {
        INCSTEP_W::new(self, 13)
    }
    ///Bit 30 - Spread Select
    #[inline(always)]
    pub fn spreadsel(&mut self) -> SPREADSEL_W<SSCGRrs> {
        SPREADSEL_W::new(self, 30)
    }
    ///Bit 31 - Spread spectrum modulation enable
    #[inline(always)]
    pub fn sscgen(&mut self) -> SSCGEN_W<SSCGRrs> {
        SSCGEN_W::new(self, 31)
    }
}
/**spread spectrum clock generation register

You can [`read`](crate::Reg::read) this register and get [`sscgr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`sscgr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F777.html#RCC:SSCGR)*/
pub struct SSCGRrs;
impl crate::RegisterSpec for SSCGRrs {
    type Ux = u32;
}
///`read()` method returns [`sscgr::R`](R) reader structure
impl crate::Readable for SSCGRrs {}
///`write(|w| ..)` method takes [`sscgr::W`](W) writer structure
impl crate::Writable for SSCGRrs {
    type Safety = crate::Unsafe;
}
///`reset()` method sets SSCGR to value 0
impl crate::Resettable for SSCGRrs {}