pub type R = crate::R<APB1RSTR1rs>;
pub type W = crate::W<APB1RSTR1rs>;
pub type TIM2RST_R = crate::BitReader;
pub type TIM2RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TIM6RST_R = crate::BitReader;
pub type TIM6RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TIM7RST_R = crate::BitReader;
pub type TIM7RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type LCDRST_R = crate::BitReader;
pub type LCDRST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type SPI2RST_R = crate::BitReader;
pub type SPI2RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type SPI3RST_R = crate::BitReader;
pub type SPI3RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type USART2RST_R = crate::BitReader;
pub type USART2RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type USART3RST_R = crate::BitReader;
pub type USART3RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type USART4RST_R = crate::BitReader;
pub type USART4RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type I2C1RST_R = crate::BitReader;
pub type I2C1RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type I2C2RST_R = crate::BitReader;
pub type I2C2RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type I2C3RST_R = crate::BitReader;
pub type I2C3RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type CRSRST_R = crate::BitReader;
pub type CRSRST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type CAN1RST_R = crate::BitReader;
pub type CAN1RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type USBFSRST_R = crate::BitReader;
pub type USBFSRST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type PWRRST_R = crate::BitReader;
pub type PWRRST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type DAC1RST_R = crate::BitReader;
pub type DAC1RST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type OPAMPRST_R = crate::BitReader;
pub type OPAMPRST_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type LPTIM1RST_R = crate::BitReader;
pub type LPTIM1RST_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[inline(always)]
pub fn tim2rst(&self) -> TIM2RST_R {
TIM2RST_R::new((self.bits & 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 lcdrst(&self) -> LCDRST_R {
LCDRST_R::new(((self.bits >> 9) & 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 usart4rst(&self) -> USART4RST_R {
USART4RST_R::new(((self.bits >> 19) & 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 i2c3rst(&self) -> I2C3RST_R {
I2C3RST_R::new(((self.bits >> 23) & 1) != 0)
}
#[inline(always)]
pub fn crsrst(&self) -> CRSRST_R {
CRSRST_R::new(((self.bits >> 24) & 1) != 0)
}
#[inline(always)]
pub fn can1rst(&self) -> CAN1RST_R {
CAN1RST_R::new(((self.bits >> 25) & 1) != 0)
}
#[inline(always)]
pub fn usbfsrst(&self) -> USBFSRST_R {
USBFSRST_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 opamprst(&self) -> OPAMPRST_R {
OPAMPRST_R::new(((self.bits >> 30) & 1) != 0)
}
#[inline(always)]
pub fn lptim1rst(&self) -> LPTIM1RST_R {
LPTIM1RST_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("APB1RSTR1")
.field("lptim1rst", &self.lptim1rst())
.field("opamprst", &self.opamprst())
.field("dac1rst", &self.dac1rst())
.field("pwrrst", &self.pwrrst())
.field("can1rst", &self.can1rst())
.field("i2c3rst", &self.i2c3rst())
.field("i2c1rst", &self.i2c1rst())
.field("usart3rst", &self.usart3rst())
.field("usart2rst", &self.usart2rst())
.field("spi3rst", &self.spi3rst())
.field("spi2rst", &self.spi2rst())
.field("lcdrst", &self.lcdrst())
.field("tim7rst", &self.tim7rst())
.field("tim6rst", &self.tim6rst())
.field("tim2rst", &self.tim2rst())
.field("usart4rst", &self.usart4rst())
.field("i2c2rst", &self.i2c2rst())
.field("crsrst", &self.crsrst())
.field("usbfsrst", &self.usbfsrst())
.finish()
}
}
impl W {
#[inline(always)]
pub fn tim2rst(&mut self) -> TIM2RST_W<APB1RSTR1rs> {
TIM2RST_W::new(self, 0)
}
#[inline(always)]
pub fn tim6rst(&mut self) -> TIM6RST_W<APB1RSTR1rs> {
TIM6RST_W::new(self, 4)
}
#[inline(always)]
pub fn tim7rst(&mut self) -> TIM7RST_W<APB1RSTR1rs> {
TIM7RST_W::new(self, 5)
}
#[inline(always)]
pub fn lcdrst(&mut self) -> LCDRST_W<APB1RSTR1rs> {
LCDRST_W::new(self, 9)
}
#[inline(always)]
pub fn spi2rst(&mut self) -> SPI2RST_W<APB1RSTR1rs> {
SPI2RST_W::new(self, 14)
}
#[inline(always)]
pub fn spi3rst(&mut self) -> SPI3RST_W<APB1RSTR1rs> {
SPI3RST_W::new(self, 15)
}
#[inline(always)]
pub fn usart2rst(&mut self) -> USART2RST_W<APB1RSTR1rs> {
USART2RST_W::new(self, 17)
}
#[inline(always)]
pub fn usart3rst(&mut self) -> USART3RST_W<APB1RSTR1rs> {
USART3RST_W::new(self, 18)
}
#[inline(always)]
pub fn usart4rst(&mut self) -> USART4RST_W<APB1RSTR1rs> {
USART4RST_W::new(self, 19)
}
#[inline(always)]
pub fn i2c1rst(&mut self) -> I2C1RST_W<APB1RSTR1rs> {
I2C1RST_W::new(self, 21)
}
#[inline(always)]
pub fn i2c2rst(&mut self) -> I2C2RST_W<APB1RSTR1rs> {
I2C2RST_W::new(self, 22)
}
#[inline(always)]
pub fn i2c3rst(&mut self) -> I2C3RST_W<APB1RSTR1rs> {
I2C3RST_W::new(self, 23)
}
#[inline(always)]
pub fn crsrst(&mut self) -> CRSRST_W<APB1RSTR1rs> {
CRSRST_W::new(self, 24)
}
#[inline(always)]
pub fn can1rst(&mut self) -> CAN1RST_W<APB1RSTR1rs> {
CAN1RST_W::new(self, 25)
}
#[inline(always)]
pub fn usbfsrst(&mut self) -> USBFSRST_W<APB1RSTR1rs> {
USBFSRST_W::new(self, 26)
}
#[inline(always)]
pub fn pwrrst(&mut self) -> PWRRST_W<APB1RSTR1rs> {
PWRRST_W::new(self, 28)
}
#[inline(always)]
pub fn dac1rst(&mut self) -> DAC1RST_W<APB1RSTR1rs> {
DAC1RST_W::new(self, 29)
}
#[inline(always)]
pub fn opamprst(&mut self) -> OPAMPRST_W<APB1RSTR1rs> {
OPAMPRST_W::new(self, 30)
}
#[inline(always)]
pub fn lptim1rst(&mut self) -> LPTIM1RST_W<APB1RSTR1rs> {
LPTIM1RST_W::new(self, 31)
}
}
pub struct APB1RSTR1rs;
impl crate::RegisterSpec for APB1RSTR1rs {
type Ux = u32;
}
impl crate::Readable for APB1RSTR1rs {}
impl crate::Writable for APB1RSTR1rs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for APB1RSTR1rs {}