pub type R = crate::R<APB1RSTRrs>;
pub type W = crate::W<APB1RSTRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TIM2RST {
        Reset = 1,
}
impl From<TIM2RST> for bool {
    #[inline(always)]
    fn from(variant: TIM2RST) -> Self {
        variant as u8 != 0
    }
}
pub type TIM2RST_R = crate::BitReader<TIM2RST>;
impl TIM2RST_R {
        #[inline(always)]
    pub const fn variant(&self) -> Option<TIM2RST> {
        match self.bits {
            true => Some(TIM2RST::Reset),
            _ => None,
        }
    }
        #[inline(always)]
    pub fn is_reset(&self) -> bool {
        *self == TIM2RST::Reset
    }
}
pub type TIM2RST_W<'a, REG> = crate::BitWriter<'a, REG, TIM2RST>;
impl<'a, REG> TIM2RST_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
        #[inline(always)]
    pub fn reset(self) -> &'a mut crate::W<REG> {
        self.variant(TIM2RST::Reset)
    }
}
pub use TIM2RST_R as TIM3RST_R;
pub use TIM2RST_R as TIM4RST_R;
pub use TIM2RST_R as TIM5RST_R;
pub use TIM2RST_R as TIM6RST_R;
pub use TIM2RST_R as TIM7RST_R;
pub use TIM2RST_R as TIM12RST_R;
pub use TIM2RST_R as TIM13RST_R;
pub use TIM2RST_R as TIM14RST_R;
pub use TIM2RST_R as TIM18RST_R;
pub use TIM2RST_R as WWDGRST_R;
pub use TIM2RST_R as SPI2RST_R;
pub use TIM2RST_R as SPI3RST_R;
pub use TIM2RST_R as USART2RST_R;
pub use TIM2RST_R as USART3RST_R;
pub use TIM2RST_R as I2C1RST_R;
pub use TIM2RST_R as I2C2RST_R;
pub use TIM2RST_R as USBRST_R;
pub use TIM2RST_R as CANRST_R;
pub use TIM2RST_R as DAC2RST_R;
pub use TIM2RST_R as PWRRST_R;
pub use TIM2RST_R as DAC1RST_R;
pub use TIM2RST_R as CECRST_R;
pub use TIM2RST_W as TIM3RST_W;
pub use TIM2RST_W as TIM4RST_W;
pub use TIM2RST_W as TIM5RST_W;
pub use TIM2RST_W as TIM6RST_W;
pub use TIM2RST_W as TIM7RST_W;
pub use TIM2RST_W as TIM12RST_W;
pub use TIM2RST_W as TIM13RST_W;
pub use TIM2RST_W as TIM14RST_W;
pub use TIM2RST_W as TIM18RST_W;
pub use TIM2RST_W as WWDGRST_W;
pub use TIM2RST_W as SPI2RST_W;
pub use TIM2RST_W as SPI3RST_W;
pub use TIM2RST_W as USART2RST_W;
pub use TIM2RST_W as USART3RST_W;
pub use TIM2RST_W as I2C1RST_W;
pub use TIM2RST_W as I2C2RST_W;
pub use TIM2RST_W as USBRST_W;
pub use TIM2RST_W as CANRST_W;
pub use TIM2RST_W as DAC2RST_W;
pub use TIM2RST_W as PWRRST_W;
pub use TIM2RST_W as DAC1RST_W;
pub use TIM2RST_W as CECRST_W;
impl R {
        #[inline(always)]
    pub fn tim2rst(&self) -> TIM2RST_R {
        TIM2RST_R::new((self.bits & 1) != 0)
    }
        #[inline(always)]
    pub fn tim3rst(&self) -> TIM3RST_R {
        TIM3RST_R::new(((self.bits >> 1) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim4rst(&self) -> TIM4RST_R {
        TIM4RST_R::new(((self.bits >> 2) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim5rst(&self) -> TIM5RST_R {
        TIM5RST_R::new(((self.bits >> 3) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim6rst(&self) -> TIM6RST_R {
        TIM6RST_R::new(((self.bits >> 4) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim7rst(&self) -> TIM7RST_R {
        TIM7RST_R::new(((self.bits >> 5) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim12rst(&self) -> TIM12RST_R {
        TIM12RST_R::new(((self.bits >> 6) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim13rst(&self) -> TIM13RST_R {
        TIM13RST_R::new(((self.bits >> 7) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim14rst(&self) -> TIM14RST_R {
        TIM14RST_R::new(((self.bits >> 8) & 1) != 0)
    }
        #[inline(always)]
    pub fn tim18rst(&self) -> TIM18RST_R {
        TIM18RST_R::new(((self.bits >> 9) & 1) != 0)
    }
        #[inline(always)]
    pub fn wwdgrst(&self) -> WWDGRST_R {
        WWDGRST_R::new(((self.bits >> 11) & 1) != 0)
    }
        #[inline(always)]
    pub fn spi2rst(&self) -> SPI2RST_R {
        SPI2RST_R::new(((self.bits >> 14) & 1) != 0)
    }
        #[inline(always)]
    pub fn spi3rst(&self) -> SPI3RST_R {
        SPI3RST_R::new(((self.bits >> 15) & 1) != 0)
    }
        #[inline(always)]
    pub fn usart2rst(&self) -> USART2RST_R {
        USART2RST_R::new(((self.bits >> 17) & 1) != 0)
    }
        #[inline(always)]
    pub fn usart3rst(&self) -> USART3RST_R {
        USART3RST_R::new(((self.bits >> 18) & 1) != 0)
    }
        #[inline(always)]
    pub fn i2c1rst(&self) -> I2C1RST_R {
        I2C1RST_R::new(((self.bits >> 21) & 1) != 0)
    }
        #[inline(always)]
    pub fn i2c2rst(&self) -> I2C2RST_R {
        I2C2RST_R::new(((self.bits >> 22) & 1) != 0)
    }
        #[inline(always)]
    pub fn usbrst(&self) -> USBRST_R {
        USBRST_R::new(((self.bits >> 23) & 1) != 0)
    }
        #[inline(always)]
    pub fn canrst(&self) -> CANRST_R {
        CANRST_R::new(((self.bits >> 25) & 1) != 0)
    }
        #[inline(always)]
    pub fn dac2rst(&self) -> DAC2RST_R {
        DAC2RST_R::new(((self.bits >> 26) & 1) != 0)
    }
        #[inline(always)]
    pub fn pwrrst(&self) -> PWRRST_R {
        PWRRST_R::new(((self.bits >> 28) & 1) != 0)
    }
        #[inline(always)]
    pub fn dac1rst(&self) -> DAC1RST_R {
        DAC1RST_R::new(((self.bits >> 29) & 1) != 0)
    }
        #[inline(always)]
    pub fn cecrst(&self) -> CECRST_R {
        CECRST_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("APB1RSTR")
            .field("tim2rst", &self.tim2rst())
            .field("tim3rst", &self.tim3rst())
            .field("tim4rst", &self.tim4rst())
            .field("tim5rst", &self.tim5rst())
            .field("tim6rst", &self.tim6rst())
            .field("tim7rst", &self.tim7rst())
            .field("tim12rst", &self.tim12rst())
            .field("tim13rst", &self.tim13rst())
            .field("tim14rst", &self.tim14rst())
            .field("tim18rst", &self.tim18rst())
            .field("wwdgrst", &self.wwdgrst())
            .field("spi2rst", &self.spi2rst())
            .field("spi3rst", &self.spi3rst())
            .field("usart2rst", &self.usart2rst())
            .field("usart3rst", &self.usart3rst())
            .field("i2c1rst", &self.i2c1rst())
            .field("i2c2rst", &self.i2c2rst())
            .field("usbrst", &self.usbrst())
            .field("canrst", &self.canrst())
            .field("dac2rst", &self.dac2rst())
            .field("pwrrst", &self.pwrrst())
            .field("dac1rst", &self.dac1rst())
            .field("cecrst", &self.cecrst())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn tim2rst(&mut self) -> TIM2RST_W<APB1RSTRrs> {
        TIM2RST_W::new(self, 0)
    }
        #[inline(always)]
    pub fn tim3rst(&mut self) -> TIM3RST_W<APB1RSTRrs> {
        TIM3RST_W::new(self, 1)
    }
        #[inline(always)]
    pub fn tim4rst(&mut self) -> TIM4RST_W<APB1RSTRrs> {
        TIM4RST_W::new(self, 2)
    }
        #[inline(always)]
    pub fn tim5rst(&mut self) -> TIM5RST_W<APB1RSTRrs> {
        TIM5RST_W::new(self, 3)
    }
        #[inline(always)]
    pub fn tim6rst(&mut self) -> TIM6RST_W<APB1RSTRrs> {
        TIM6RST_W::new(self, 4)
    }
        #[inline(always)]
    pub fn tim7rst(&mut self) -> TIM7RST_W<APB1RSTRrs> {
        TIM7RST_W::new(self, 5)
    }
        #[inline(always)]
    pub fn tim12rst(&mut self) -> TIM12RST_W<APB1RSTRrs> {
        TIM12RST_W::new(self, 6)
    }
        #[inline(always)]
    pub fn tim13rst(&mut self) -> TIM13RST_W<APB1RSTRrs> {
        TIM13RST_W::new(self, 7)
    }
        #[inline(always)]
    pub fn tim14rst(&mut self) -> TIM14RST_W<APB1RSTRrs> {
        TIM14RST_W::new(self, 8)
    }
        #[inline(always)]
    pub fn tim18rst(&mut self) -> TIM18RST_W<APB1RSTRrs> {
        TIM18RST_W::new(self, 9)
    }
        #[inline(always)]
    pub fn wwdgrst(&mut self) -> WWDGRST_W<APB1RSTRrs> {
        WWDGRST_W::new(self, 11)
    }
        #[inline(always)]
    pub fn spi2rst(&mut self) -> SPI2RST_W<APB1RSTRrs> {
        SPI2RST_W::new(self, 14)
    }
        #[inline(always)]
    pub fn spi3rst(&mut self) -> SPI3RST_W<APB1RSTRrs> {
        SPI3RST_W::new(self, 15)
    }
        #[inline(always)]
    pub fn usart2rst(&mut self) -> USART2RST_W<APB1RSTRrs> {
        USART2RST_W::new(self, 17)
    }
        #[inline(always)]
    pub fn usart3rst(&mut self) -> USART3RST_W<APB1RSTRrs> {
        USART3RST_W::new(self, 18)
    }
        #[inline(always)]
    pub fn i2c1rst(&mut self) -> I2C1RST_W<APB1RSTRrs> {
        I2C1RST_W::new(self, 21)
    }
        #[inline(always)]
    pub fn i2c2rst(&mut self) -> I2C2RST_W<APB1RSTRrs> {
        I2C2RST_W::new(self, 22)
    }
        #[inline(always)]
    pub fn usbrst(&mut self) -> USBRST_W<APB1RSTRrs> {
        USBRST_W::new(self, 23)
    }
        #[inline(always)]
    pub fn canrst(&mut self) -> CANRST_W<APB1RSTRrs> {
        CANRST_W::new(self, 25)
    }
        #[inline(always)]
    pub fn dac2rst(&mut self) -> DAC2RST_W<APB1RSTRrs> {
        DAC2RST_W::new(self, 26)
    }
        #[inline(always)]
    pub fn pwrrst(&mut self) -> PWRRST_W<APB1RSTRrs> {
        PWRRST_W::new(self, 28)
    }
        #[inline(always)]
    pub fn dac1rst(&mut self) -> DAC1RST_W<APB1RSTRrs> {
        DAC1RST_W::new(self, 29)
    }
        #[inline(always)]
    pub fn cecrst(&mut self) -> CECRST_W<APB1RSTRrs> {
        CECRST_W::new(self, 30)
    }
}
pub struct APB1RSTRrs;
impl crate::RegisterSpec for APB1RSTRrs {
    type Ux = u32;
}
impl crate::Readable for APB1RSTRrs {}
impl crate::Writable for APB1RSTRrs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for APB1RSTRrs {}