pub type R = crate::R<APB1ENRrs>;
pub type W = crate::W<APB1ENRrs>;
#[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 TIM12EN_R;
pub use TIM2EN_R as TIM13EN_R;
pub use TIM2EN_R as TIM14EN_R;
pub use TIM2EN_R as TIM18EN_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 I2C1EN_R;
pub use TIM2EN_R as I2C2EN_R;
pub use TIM2EN_R as USBEN_R;
pub use TIM2EN_R as CANEN_R;
pub use TIM2EN_R as DAC2EN_R;
pub use TIM2EN_R as PWREN_R;
pub use TIM2EN_R as DAC1EN_R;
pub use TIM2EN_R as CECEN_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 TIM12EN_W;
pub use TIM2EN_W as TIM13EN_W;
pub use TIM2EN_W as TIM14EN_W;
pub use TIM2EN_W as TIM18EN_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 I2C1EN_W;
pub use TIM2EN_W as I2C2EN_W;
pub use TIM2EN_W as USBEN_W;
pub use TIM2EN_W as CANEN_W;
pub use TIM2EN_W as DAC2EN_W;
pub use TIM2EN_W as PWREN_W;
pub use TIM2EN_W as DAC1EN_W;
pub use TIM2EN_W as CECEN_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 tim12en(&self) -> TIM12EN_R {
        TIM12EN_R::new(((self.bits >> 6) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim13en(&self) -> TIM13EN_R {
        TIM13EN_R::new(((self.bits >> 7) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim14en(&self) -> TIM14EN_R {
        TIM14EN_R::new(((self.bits >> 8) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim18en(&self) -> TIM18EN_R {
        TIM18EN_R::new(((self.bits >> 9) & 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 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 canen(&self) -> CANEN_R {
        CANEN_R::new(((self.bits >> 25) & 1) != 0)
    }
        #[inline(always)]
    pub fn dac2en(&self) -> DAC2EN_R {
        DAC2EN_R::new(((self.bits >> 26) & 1) != 0)
    }
        #[inline(always)]
    pub fn pwren(&self) -> PWREN_R {
        PWREN_R::new(((self.bits >> 28) & 1) != 0)
    }
        #[inline(always)]
    pub fn dac1en(&self) -> DAC1EN_R {
        DAC1EN_R::new(((self.bits >> 29) & 1) != 0)
    }
        #[inline(always)]
    pub fn cecen(&self) -> CECEN_R {
        CECEN_R::new(((self.bits >> 30) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("APB1ENR")
            .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("tim12en", &self.tim12en())
            .field("tim13en", &self.tim13en())
            .field("tim14en", &self.tim14en())
            .field("tim18en", &self.tim18en())
            .field("wwdgen", &self.wwdgen())
            .field("spi2en", &self.spi2en())
            .field("spi3en", &self.spi3en())
            .field("usart2en", &self.usart2en())
            .field("usart3en", &self.usart3en())
            .field("i2c1en", &self.i2c1en())
            .field("i2c2en", &self.i2c2en())
            .field("usben", &self.usben())
            .field("canen", &self.canen())
            .field("dac2en", &self.dac2en())
            .field("pwren", &self.pwren())
            .field("dac1en", &self.dac1en())
            .field("cecen", &self.cecen())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn tim2en(&mut self) -> TIM2EN_W<APB1ENRrs> {
        TIM2EN_W::new(self, 0)
    }
        #[inline(always)]
    pub fn tim3en(&mut self) -> TIM3EN_W<APB1ENRrs> {
        TIM3EN_W::new(self, 1)
    }
        #[inline(always)]
    pub fn tim4en(&mut self) -> TIM4EN_W<APB1ENRrs> {
        TIM4EN_W::new(self, 2)
    }
        #[inline(always)]
    pub fn tim5en(&mut self) -> TIM5EN_W<APB1ENRrs> {
        TIM5EN_W::new(self, 3)
    }
        #[inline(always)]
    pub fn tim6en(&mut self) -> TIM6EN_W<APB1ENRrs> {
        TIM6EN_W::new(self, 4)
    }
        #[inline(always)]
    pub fn tim7en(&mut self) -> TIM7EN_W<APB1ENRrs> {
        TIM7EN_W::new(self, 5)
    }
        #[inline(always)]
    pub fn tim12en(&mut self) -> TIM12EN_W<APB1ENRrs> {
        TIM12EN_W::new(self, 6)
    }
        #[inline(always)]
    pub fn tim13en(&mut self) -> TIM13EN_W<APB1ENRrs> {
        TIM13EN_W::new(self, 7)
    }
        #[inline(always)]
    pub fn tim14en(&mut self) -> TIM14EN_W<APB1ENRrs> {
        TIM14EN_W::new(self, 8)
    }
        #[inline(always)]
    pub fn tim18en(&mut self) -> TIM18EN_W<APB1ENRrs> {
        TIM18EN_W::new(self, 9)
    }
        #[inline(always)]
    pub fn wwdgen(&mut self) -> WWDGEN_W<APB1ENRrs> {
        WWDGEN_W::new(self, 11)
    }
        #[inline(always)]
    pub fn spi2en(&mut self) -> SPI2EN_W<APB1ENRrs> {
        SPI2EN_W::new(self, 14)
    }
        #[inline(always)]
    pub fn spi3en(&mut self) -> SPI3EN_W<APB1ENRrs> {
        SPI3EN_W::new(self, 15)
    }
        #[inline(always)]
    pub fn usart2en(&mut self) -> USART2EN_W<APB1ENRrs> {
        USART2EN_W::new(self, 17)
    }
        #[inline(always)]
    pub fn usart3en(&mut self) -> USART3EN_W<APB1ENRrs> {
        USART3EN_W::new(self, 18)
    }
        #[inline(always)]
    pub fn i2c1en(&mut self) -> I2C1EN_W<APB1ENRrs> {
        I2C1EN_W::new(self, 21)
    }
        #[inline(always)]
    pub fn i2c2en(&mut self) -> I2C2EN_W<APB1ENRrs> {
        I2C2EN_W::new(self, 22)
    }
        #[inline(always)]
    pub fn usben(&mut self) -> USBEN_W<APB1ENRrs> {
        USBEN_W::new(self, 23)
    }
        #[inline(always)]
    pub fn canen(&mut self) -> CANEN_W<APB1ENRrs> {
        CANEN_W::new(self, 25)
    }
        #[inline(always)]
    pub fn dac2en(&mut self) -> DAC2EN_W<APB1ENRrs> {
        DAC2EN_W::new(self, 26)
    }
        #[inline(always)]
    pub fn pwren(&mut self) -> PWREN_W<APB1ENRrs> {
        PWREN_W::new(self, 28)
    }
        #[inline(always)]
    pub fn dac1en(&mut self) -> DAC1EN_W<APB1ENRrs> {
        DAC1EN_W::new(self, 29)
    }
        #[inline(always)]
    pub fn cecen(&mut self) -> CECEN_W<APB1ENRrs> {
        CECEN_W::new(self, 30)
    }
}
pub struct APB1ENRrs;
impl crate::RegisterSpec for APB1ENRrs {
    type Ux = u32;
}
impl crate::Readable for APB1ENRrs {}
impl crate::Writable for APB1ENRrs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for APB1ENRrs {}