pub type R = crate::R<APB1ENR1rs>;
pub type W = crate::W<APB1ENR1rs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TIM2EN {
        Disabled = 0,
        Enabled = 1,
}
impl From<TIM2EN> for bool {
    #[inline(always)]
    fn from(variant: TIM2EN) -> Self {
        variant as u8 != 0
    }
}
pub type TIM2EN_R = crate::BitReader<TIM2EN>;
impl TIM2EN_R {
        #[inline(always)]
    pub const fn variant(&self) -> TIM2EN {
        match self.bits {
            false => TIM2EN::Disabled,
            true => TIM2EN::Enabled,
        }
    }
        #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == TIM2EN::Disabled
    }
        #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == TIM2EN::Enabled
    }
}
pub type TIM2EN_W<'a, REG> = crate::BitWriter<'a, REG, TIM2EN>;
impl<'a, REG> TIM2EN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
        #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(TIM2EN::Disabled)
    }
        #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(TIM2EN::Enabled)
    }
}
pub use TIM2EN_R as TIM3EN_R;
pub use TIM2EN_R as TIM4EN_R;
pub use TIM2EN_R as TIM5EN_R;
pub use TIM2EN_R as TIM6EN_R;
pub use TIM2EN_R as TIM7EN_R;
pub use TIM2EN_R as CRSEN_R;
pub use TIM2EN_R as RTCAPBEN_R;
pub use TIM2EN_R as WWDGEN_R;
pub use TIM2EN_R as SPI2EN_R;
pub use TIM2EN_R as SPI3EN_R;
pub use TIM2EN_R as USART2EN_R;
pub use TIM2EN_R as USART3EN_R;
pub use TIM2EN_R as UART4EN_R;
pub use TIM2EN_R as UART5EN_R;
pub use TIM2EN_R as I2C1EN_R;
pub use TIM2EN_R as I2C2EN_R;
pub use TIM2EN_R as USBEN_R;
pub use TIM2EN_R as FDCANEN_R;
pub use TIM2EN_R as PWREN_R;
pub use TIM2EN_R as I2C3EN_R;
pub use TIM2EN_R as LPTIM1EN_R;
pub use TIM2EN_W as TIM3EN_W;
pub use TIM2EN_W as TIM4EN_W;
pub use TIM2EN_W as TIM5EN_W;
pub use TIM2EN_W as TIM6EN_W;
pub use TIM2EN_W as TIM7EN_W;
pub use TIM2EN_W as CRSEN_W;
pub use TIM2EN_W as RTCAPBEN_W;
pub use TIM2EN_W as WWDGEN_W;
pub use TIM2EN_W as SPI2EN_W;
pub use TIM2EN_W as SPI3EN_W;
pub use TIM2EN_W as USART2EN_W;
pub use TIM2EN_W as USART3EN_W;
pub use TIM2EN_W as UART4EN_W;
pub use TIM2EN_W as UART5EN_W;
pub use TIM2EN_W as I2C1EN_W;
pub use TIM2EN_W as I2C2EN_W;
pub use TIM2EN_W as USBEN_W;
pub use TIM2EN_W as FDCANEN_W;
pub use TIM2EN_W as PWREN_W;
pub use TIM2EN_W as I2C3EN_W;
pub use TIM2EN_W as LPTIM1EN_W;
impl R {
        #[inline(always)]
    pub fn tim2en(&self) -> TIM2EN_R {
        TIM2EN_R::new((self.bits & 1) != 0)
    }
        #[inline(always)]
    pub fn tim3en(&self) -> TIM3EN_R {
        TIM3EN_R::new(((self.bits >> 1) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim4en(&self) -> TIM4EN_R {
        TIM4EN_R::new(((self.bits >> 2) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim5en(&self) -> TIM5EN_R {
        TIM5EN_R::new(((self.bits >> 3) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim6en(&self) -> TIM6EN_R {
        TIM6EN_R::new(((self.bits >> 4) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim7en(&self) -> TIM7EN_R {
        TIM7EN_R::new(((self.bits >> 5) & 1) != 0)
    }
        #[inline(always)]
    pub fn crsen(&self) -> CRSEN_R {
        CRSEN_R::new(((self.bits >> 8) & 1) != 0)
    }
        #[inline(always)]
    pub fn rtcapben(&self) -> RTCAPBEN_R {
        RTCAPBEN_R::new(((self.bits >> 10) & 1) != 0)
    }
        #[inline(always)]
    pub fn wwdgen(&self) -> WWDGEN_R {
        WWDGEN_R::new(((self.bits >> 11) & 1) != 0)
    }
        #[inline(always)]
    pub fn spi2en(&self) -> SPI2EN_R {
        SPI2EN_R::new(((self.bits >> 14) & 1) != 0)
    }
        #[inline(always)]
    pub fn spi3en(&self) -> SPI3EN_R {
        SPI3EN_R::new(((self.bits >> 15) & 1) != 0)
    }
        #[inline(always)]
    pub fn usart2en(&self) -> USART2EN_R {
        USART2EN_R::new(((self.bits >> 17) & 1) != 0)
    }
        #[inline(always)]
    pub fn usart3en(&self) -> USART3EN_R {
        USART3EN_R::new(((self.bits >> 18) & 1) != 0)
    }
        #[inline(always)]
    pub fn uart4en(&self) -> UART4EN_R {
        UART4EN_R::new(((self.bits >> 19) & 1) != 0)
    }
        #[inline(always)]
    pub fn uart5en(&self) -> UART5EN_R {
        UART5EN_R::new(((self.bits >> 20) & 1) != 0)
    }
        #[inline(always)]
    pub fn i2c1en(&self) -> I2C1EN_R {
        I2C1EN_R::new(((self.bits >> 21) & 1) != 0)
    }
        #[inline(always)]
    pub fn i2c2en(&self) -> I2C2EN_R {
        I2C2EN_R::new(((self.bits >> 22) & 1) != 0)
    }
        #[inline(always)]
    pub fn usben(&self) -> USBEN_R {
        USBEN_R::new(((self.bits >> 23) & 1) != 0)
    }
        #[inline(always)]
    pub fn fdcanen(&self) -> FDCANEN_R {
        FDCANEN_R::new(((self.bits >> 25) & 1) != 0)
    }
        #[inline(always)]
    pub fn pwren(&self) -> PWREN_R {
        PWREN_R::new(((self.bits >> 28) & 1) != 0)
    }
        #[inline(always)]
    pub fn i2c3en(&self) -> I2C3EN_R {
        I2C3EN_R::new(((self.bits >> 30) & 1) != 0)
    }
        #[inline(always)]
    pub fn lptim1en(&self) -> LPTIM1EN_R {
        LPTIM1EN_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("APB1ENR1")
            .field("tim2en", &self.tim2en())
            .field("tim3en", &self.tim3en())
            .field("tim4en", &self.tim4en())
            .field("tim5en", &self.tim5en())
            .field("tim6en", &self.tim6en())
            .field("tim7en", &self.tim7en())
            .field("crsen", &self.crsen())
            .field("rtcapben", &self.rtcapben())
            .field("wwdgen", &self.wwdgen())
            .field("spi2en", &self.spi2en())
            .field("spi3en", &self.spi3en())
            .field("usart2en", &self.usart2en())
            .field("usart3en", &self.usart3en())
            .field("uart4en", &self.uart4en())
            .field("uart5en", &self.uart5en())
            .field("i2c1en", &self.i2c1en())
            .field("i2c2en", &self.i2c2en())
            .field("usben", &self.usben())
            .field("fdcanen", &self.fdcanen())
            .field("pwren", &self.pwren())
            .field("i2c3en", &self.i2c3en())
            .field("lptim1en", &self.lptim1en())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn tim2en(&mut self) -> TIM2EN_W<APB1ENR1rs> {
        TIM2EN_W::new(self, 0)
    }
        #[inline(always)]
    pub fn tim3en(&mut self) -> TIM3EN_W<APB1ENR1rs> {
        TIM3EN_W::new(self, 1)
    }
        #[inline(always)]
    pub fn tim4en(&mut self) -> TIM4EN_W<APB1ENR1rs> {
        TIM4EN_W::new(self, 2)
    }
        #[inline(always)]
    pub fn tim5en(&mut self) -> TIM5EN_W<APB1ENR1rs> {
        TIM5EN_W::new(self, 3)
    }
        #[inline(always)]
    pub fn tim6en(&mut self) -> TIM6EN_W<APB1ENR1rs> {
        TIM6EN_W::new(self, 4)
    }
        #[inline(always)]
    pub fn tim7en(&mut self) -> TIM7EN_W<APB1ENR1rs> {
        TIM7EN_W::new(self, 5)
    }
        #[inline(always)]
    pub fn crsen(&mut self) -> CRSEN_W<APB1ENR1rs> {
        CRSEN_W::new(self, 8)
    }
        #[inline(always)]
    pub fn rtcapben(&mut self) -> RTCAPBEN_W<APB1ENR1rs> {
        RTCAPBEN_W::new(self, 10)
    }
        #[inline(always)]
    pub fn wwdgen(&mut self) -> WWDGEN_W<APB1ENR1rs> {
        WWDGEN_W::new(self, 11)
    }
        #[inline(always)]
    pub fn spi2en(&mut self) -> SPI2EN_W<APB1ENR1rs> {
        SPI2EN_W::new(self, 14)
    }
        #[inline(always)]
    pub fn spi3en(&mut self) -> SPI3EN_W<APB1ENR1rs> {
        SPI3EN_W::new(self, 15)
    }
        #[inline(always)]
    pub fn usart2en(&mut self) -> USART2EN_W<APB1ENR1rs> {
        USART2EN_W::new(self, 17)
    }
        #[inline(always)]
    pub fn usart3en(&mut self) -> USART3EN_W<APB1ENR1rs> {
        USART3EN_W::new(self, 18)
    }
        #[inline(always)]
    pub fn uart4en(&mut self) -> UART4EN_W<APB1ENR1rs> {
        UART4EN_W::new(self, 19)
    }
        #[inline(always)]
    pub fn uart5en(&mut self) -> UART5EN_W<APB1ENR1rs> {
        UART5EN_W::new(self, 20)
    }
        #[inline(always)]
    pub fn i2c1en(&mut self) -> I2C1EN_W<APB1ENR1rs> {
        I2C1EN_W::new(self, 21)
    }
        #[inline(always)]
    pub fn i2c2en(&mut self) -> I2C2EN_W<APB1ENR1rs> {
        I2C2EN_W::new(self, 22)
    }
        #[inline(always)]
    pub fn usben(&mut self) -> USBEN_W<APB1ENR1rs> {
        USBEN_W::new(self, 23)
    }
        #[inline(always)]
    pub fn fdcanen(&mut self) -> FDCANEN_W<APB1ENR1rs> {
        FDCANEN_W::new(self, 25)
    }
        #[inline(always)]
    pub fn pwren(&mut self) -> PWREN_W<APB1ENR1rs> {
        PWREN_W::new(self, 28)
    }
        #[inline(always)]
    pub fn i2c3en(&mut self) -> I2C3EN_W<APB1ENR1rs> {
        I2C3EN_W::new(self, 30)
    }
        #[inline(always)]
    pub fn lptim1en(&mut self) -> LPTIM1EN_W<APB1ENR1rs> {
        LPTIM1EN_W::new(self, 31)
    }
}
pub struct APB1ENR1rs;
impl crate::RegisterSpec for APB1ENR1rs {
    type Ux = u32;
}
impl crate::Readable for APB1ENR1rs {}
impl crate::Writable for APB1ENR1rs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for APB1ENR1rs {
    const RESET_VALUE: u32 = 0x0400;
}