pub type R = crate::R<APB1LENRrs>;
pub type W = crate::W<APB1LENRrs>;
#[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 LPTIM1EN_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 SPDIFRXEN_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 I2C1_I3C1EN_R;
pub use TIM2EN_R as I2C2EN_R;
pub use TIM2EN_R as I2C3EN_R;
pub use TIM2EN_R as HDMICECEN_R;
pub use TIM2EN_R as UART7EN_R;
pub use TIM2EN_R as UART8EN_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 LPTIM1EN_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 SPDIFRXEN_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 I2C1_I3C1EN_W;
pub use TIM2EN_W as I2C2EN_W;
pub use TIM2EN_W as I2C3EN_W;
pub use TIM2EN_W as HDMICECEN_W;
pub use TIM2EN_W as UART7EN_W;
pub use TIM2EN_W as UART8EN_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 lptim1en(&self) -> LPTIM1EN_R {
LPTIM1EN_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 spdifrxen(&self) -> SPDIFRXEN_R {
SPDIFRXEN_R::new(((self.bits >> 16) & 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 i2c1_i3c1en(&self) -> I2C1_I3C1EN_R {
I2C1_I3C1EN_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 hdmicecen(&self) -> HDMICECEN_R {
HDMICECEN_R::new(((self.bits >> 27) & 1) != 0)
}
#[inline(always)]
pub fn uart7en(&self) -> UART7EN_R {
UART7EN_R::new(((self.bits >> 30) & 1) != 0)
}
#[inline(always)]
pub fn uart8en(&self) -> UART8EN_R {
UART8EN_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("APB1LENR")
.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("lptim1en", &self.lptim1en())
.field("wwdgen", &self.wwdgen())
.field("spi2en", &self.spi2en())
.field("spi3en", &self.spi3en())
.field("spdifrxen", &self.spdifrxen())
.field("usart2en", &self.usart2en())
.field("usart3en", &self.usart3en())
.field("uart4en", &self.uart4en())
.field("uart5en", &self.uart5en())
.field("i2c1_i3c1en", &self.i2c1_i3c1en())
.field("i2c2en", &self.i2c2en())
.field("i2c3en", &self.i2c3en())
.field("hdmicecen", &self.hdmicecen())
.field("uart7en", &self.uart7en())
.field("uart8en", &self.uart8en())
.finish()
}
}
impl W {
#[inline(always)]
pub fn tim2en(&mut self) -> TIM2EN_W<APB1LENRrs> {
TIM2EN_W::new(self, 0)
}
#[inline(always)]
pub fn tim3en(&mut self) -> TIM3EN_W<APB1LENRrs> {
TIM3EN_W::new(self, 1)
}
#[inline(always)]
pub fn tim4en(&mut self) -> TIM4EN_W<APB1LENRrs> {
TIM4EN_W::new(self, 2)
}
#[inline(always)]
pub fn tim5en(&mut self) -> TIM5EN_W<APB1LENRrs> {
TIM5EN_W::new(self, 3)
}
#[inline(always)]
pub fn tim6en(&mut self) -> TIM6EN_W<APB1LENRrs> {
TIM6EN_W::new(self, 4)
}
#[inline(always)]
pub fn tim7en(&mut self) -> TIM7EN_W<APB1LENRrs> {
TIM7EN_W::new(self, 5)
}
#[inline(always)]
pub fn tim12en(&mut self) -> TIM12EN_W<APB1LENRrs> {
TIM12EN_W::new(self, 6)
}
#[inline(always)]
pub fn tim13en(&mut self) -> TIM13EN_W<APB1LENRrs> {
TIM13EN_W::new(self, 7)
}
#[inline(always)]
pub fn tim14en(&mut self) -> TIM14EN_W<APB1LENRrs> {
TIM14EN_W::new(self, 8)
}
#[inline(always)]
pub fn lptim1en(&mut self) -> LPTIM1EN_W<APB1LENRrs> {
LPTIM1EN_W::new(self, 9)
}
#[inline(always)]
pub fn wwdgen(&mut self) -> WWDGEN_W<APB1LENRrs> {
WWDGEN_W::new(self, 11)
}
#[inline(always)]
pub fn spi2en(&mut self) -> SPI2EN_W<APB1LENRrs> {
SPI2EN_W::new(self, 14)
}
#[inline(always)]
pub fn spi3en(&mut self) -> SPI3EN_W<APB1LENRrs> {
SPI3EN_W::new(self, 15)
}
#[inline(always)]
pub fn spdifrxen(&mut self) -> SPDIFRXEN_W<APB1LENRrs> {
SPDIFRXEN_W::new(self, 16)
}
#[inline(always)]
pub fn usart2en(&mut self) -> USART2EN_W<APB1LENRrs> {
USART2EN_W::new(self, 17)
}
#[inline(always)]
pub fn usart3en(&mut self) -> USART3EN_W<APB1LENRrs> {
USART3EN_W::new(self, 18)
}
#[inline(always)]
pub fn uart4en(&mut self) -> UART4EN_W<APB1LENRrs> {
UART4EN_W::new(self, 19)
}
#[inline(always)]
pub fn uart5en(&mut self) -> UART5EN_W<APB1LENRrs> {
UART5EN_W::new(self, 20)
}
#[inline(always)]
pub fn i2c1_i3c1en(&mut self) -> I2C1_I3C1EN_W<APB1LENRrs> {
I2C1_I3C1EN_W::new(self, 21)
}
#[inline(always)]
pub fn i2c2en(&mut self) -> I2C2EN_W<APB1LENRrs> {
I2C2EN_W::new(self, 22)
}
#[inline(always)]
pub fn i2c3en(&mut self) -> I2C3EN_W<APB1LENRrs> {
I2C3EN_W::new(self, 23)
}
#[inline(always)]
pub fn hdmicecen(&mut self) -> HDMICECEN_W<APB1LENRrs> {
HDMICECEN_W::new(self, 27)
}
#[inline(always)]
pub fn uart7en(&mut self) -> UART7EN_W<APB1LENRrs> {
UART7EN_W::new(self, 30)
}
#[inline(always)]
pub fn uart8en(&mut self) -> UART8EN_W<APB1LENRrs> {
UART8EN_W::new(self, 31)
}
}
pub struct APB1LENRrs;
impl crate::RegisterSpec for APB1LENRrs {
type Ux = u32;
}
impl crate::Readable for APB1LENRrs {}
impl crate::Writable for APB1LENRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for APB1LENRrs {}