pub type R = crate::R<APB1ENR1rs>;
pub type W = crate::W<APB1ENR1rs>;
pub type TIM2EN_R = crate::BitReader;
pub type TIM2EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TIM3EN_R = crate::BitReader;
pub type TIM3EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TIM6EN_R = crate::BitReader;
pub type TIM6EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TIM7EN_R = crate::BitReader;
pub type TIM7EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type LCDEN_R = crate::BitReader;
pub type LCDEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type RTCAPBEN_R = crate::BitReader;
pub type RTCAPBEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type WWDGEN_R = crate::BitReader;
pub type WWDGEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type SPI2EN_R = crate::BitReader;
pub type SPI2EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type SPI3EN_R = crate::BitReader;
pub type SPI3EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum USART2EN {
Disabled = 0,
Enabled = 1,
}
impl From<USART2EN> for bool {
#[inline(always)]
fn from(variant: USART2EN) -> Self {
variant as u8 != 0
}
}
pub type USART2EN_R = crate::BitReader<USART2EN>;
impl USART2EN_R {
#[inline(always)]
pub const fn variant(&self) -> USART2EN {
match self.bits {
false => USART2EN::Disabled,
true => USART2EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == USART2EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == USART2EN::Enabled
}
}
pub type USART2EN_W<'a, REG> = crate::BitWriter<'a, REG, USART2EN>;
impl<'a, REG> USART2EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(USART2EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(USART2EN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum USART3EN {
Disabled = 0,
Enabled = 1,
}
impl From<USART3EN> for bool {
#[inline(always)]
fn from(variant: USART3EN) -> Self {
variant as u8 != 0
}
}
pub type USART3EN_R = crate::BitReader<USART3EN>;
impl USART3EN_R {
#[inline(always)]
pub const fn variant(&self) -> USART3EN {
match self.bits {
false => USART3EN::Disabled,
true => USART3EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == USART3EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == USART3EN::Enabled
}
}
pub type USART3EN_W<'a, REG> = crate::BitWriter<'a, REG, USART3EN>;
impl<'a, REG> USART3EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(USART3EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(USART3EN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum UART4EN {
Disabled = 0,
Enabled = 1,
}
impl From<UART4EN> for bool {
#[inline(always)]
fn from(variant: UART4EN) -> Self {
variant as u8 != 0
}
}
pub type UART4EN_R = crate::BitReader<UART4EN>;
impl UART4EN_R {
#[inline(always)]
pub const fn variant(&self) -> UART4EN {
match self.bits {
false => UART4EN::Disabled,
true => UART4EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == UART4EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == UART4EN::Enabled
}
}
pub type UART4EN_W<'a, REG> = crate::BitWriter<'a, REG, UART4EN>;
impl<'a, REG> UART4EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(UART4EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(UART4EN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum I2C1EN {
Disabled = 0,
Enabled = 1,
}
impl From<I2C1EN> for bool {
#[inline(always)]
fn from(variant: I2C1EN) -> Self {
variant as u8 != 0
}
}
pub type I2C1EN_R = crate::BitReader<I2C1EN>;
impl I2C1EN_R {
#[inline(always)]
pub const fn variant(&self) -> I2C1EN {
match self.bits {
false => I2C1EN::Disabled,
true => I2C1EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == I2C1EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == I2C1EN::Enabled
}
}
pub type I2C1EN_W<'a, REG> = crate::BitWriter<'a, REG, I2C1EN>;
impl<'a, REG> I2C1EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C1EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C1EN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum I2C2EN {
Disabled = 0,
Enabled = 1,
}
impl From<I2C2EN> for bool {
#[inline(always)]
fn from(variant: I2C2EN) -> Self {
variant as u8 != 0
}
}
pub type I2C2EN_R = crate::BitReader<I2C2EN>;
impl I2C2EN_R {
#[inline(always)]
pub const fn variant(&self) -> I2C2EN {
match self.bits {
false => I2C2EN::Disabled,
true => I2C2EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == I2C2EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == I2C2EN::Enabled
}
}
pub type I2C2EN_W<'a, REG> = crate::BitWriter<'a, REG, I2C2EN>;
impl<'a, REG> I2C2EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C2EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C2EN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum I2C3EN {
Disabled = 0,
Enabled = 1,
}
impl From<I2C3EN> for bool {
#[inline(always)]
fn from(variant: I2C3EN) -> Self {
variant as u8 != 0
}
}
pub type I2C3EN_R = crate::BitReader<I2C3EN>;
impl I2C3EN_R {
#[inline(always)]
pub const fn variant(&self) -> I2C3EN {
match self.bits {
false => I2C3EN::Disabled,
true => I2C3EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == I2C3EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == I2C3EN::Enabled
}
}
pub type I2C3EN_W<'a, REG> = crate::BitWriter<'a, REG, I2C3EN>;
impl<'a, REG> I2C3EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C3EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(I2C3EN::Enabled)
}
}
pub type CRSEN_R = crate::BitReader;
pub type CRSEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type CAN1EN_R = crate::BitReader;
pub type CAN1EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type USBF_R = crate::BitReader;
pub type USBF_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type PWREN_R = crate::BitReader;
pub type PWREN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type DAC1EN_R = crate::BitReader;
pub type DAC1EN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type OPAMPEN_R = crate::BitReader;
pub type OPAMPEN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LPTIM1EN {
Disabled = 0,
Enabled = 1,
}
impl From<LPTIM1EN> for bool {
#[inline(always)]
fn from(variant: LPTIM1EN) -> Self {
variant as u8 != 0
}
}
pub type LPTIM1EN_R = crate::BitReader<LPTIM1EN>;
impl LPTIM1EN_R {
#[inline(always)]
pub const fn variant(&self) -> LPTIM1EN {
match self.bits {
false => LPTIM1EN::Disabled,
true => LPTIM1EN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == LPTIM1EN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == LPTIM1EN::Enabled
}
}
pub type LPTIM1EN_W<'a, REG> = crate::BitWriter<'a, REG, LPTIM1EN>;
impl<'a, REG> LPTIM1EN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(LPTIM1EN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(LPTIM1EN::Enabled)
}
}
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 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 lcden(&self) -> LCDEN_R {
LCDEN_R::new(((self.bits >> 9) & 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 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 i2c3en(&self) -> I2C3EN_R {
I2C3EN_R::new(((self.bits >> 23) & 1) != 0)
}
#[inline(always)]
pub fn crsen(&self) -> CRSEN_R {
CRSEN_R::new(((self.bits >> 24) & 1) != 0)
}
#[inline(always)]
pub fn can1en(&self) -> CAN1EN_R {
CAN1EN_R::new(((self.bits >> 25) & 1) != 0)
}
#[inline(always)]
pub fn usbf(&self) -> USBF_R {
USBF_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 opampen(&self) -> OPAMPEN_R {
OPAMPEN_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("lptim1en", &self.lptim1en())
.field("opampen", &self.opampen())
.field("dac1en", &self.dac1en())
.field("pwren", &self.pwren())
.field("can1en", &self.can1en())
.field("i2c3en", &self.i2c3en())
.field("i2c1en", &self.i2c1en())
.field("usart3en", &self.usart3en())
.field("usart2en", &self.usart2en())
.field("spi3en", &self.spi3en())
.field("spi2en", &self.spi2en())
.field("wwdgen", &self.wwdgen())
.field("lcden", &self.lcden())
.field("tim7en", &self.tim7en())
.field("tim6en", &self.tim6en())
.field("tim2en", &self.tim2en())
.field("rtcapben", &self.rtcapben())
.field("crsen", &self.crsen())
.field("usbf", &self.usbf())
.field("tim3en", &self.tim3en())
.field("uart4en", &self.uart4en())
.field("i2c2en", &self.i2c2en())
.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 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 lcden(&mut self) -> LCDEN_W<APB1ENR1rs> {
LCDEN_W::new(self, 9)
}
#[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 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 i2c3en(&mut self) -> I2C3EN_W<APB1ENR1rs> {
I2C3EN_W::new(self, 23)
}
#[inline(always)]
pub fn crsen(&mut self) -> CRSEN_W<APB1ENR1rs> {
CRSEN_W::new(self, 24)
}
#[inline(always)]
pub fn can1en(&mut self) -> CAN1EN_W<APB1ENR1rs> {
CAN1EN_W::new(self, 25)
}
#[inline(always)]
pub fn usbf(&mut self) -> USBF_W<APB1ENR1rs> {
USBF_W::new(self, 26)
}
#[inline(always)]
pub fn pwren(&mut self) -> PWREN_W<APB1ENR1rs> {
PWREN_W::new(self, 28)
}
#[inline(always)]
pub fn dac1en(&mut self) -> DAC1EN_W<APB1ENR1rs> {
DAC1EN_W::new(self, 29)
}
#[inline(always)]
pub fn opampen(&mut self) -> OPAMPEN_W<APB1ENR1rs> {
OPAMPEN_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 {}