pub type R = crate::R<RSRrs>;
pub type W = crate::W<RSRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RMVF {
NotActivated = 0,
Reset = 1,
}
impl From<RMVF> for bool {
#[inline(always)]
fn from(variant: RMVF) -> Self {
variant as u8 != 0
}
}
pub type RMVF_R = crate::BitReader<RMVF>;
impl RMVF_R {
#[inline(always)]
pub const fn variant(&self) -> RMVF {
match self.bits {
false => RMVF::NotActivated,
true => RMVF::Reset,
}
}
#[inline(always)]
pub fn is_not_activated(&self) -> bool {
*self == RMVF::NotActivated
}
#[inline(always)]
pub fn is_reset(&self) -> bool {
*self == RMVF::Reset
}
}
pub type RMVF_W<'a, REG> = crate::BitWriter<'a, REG, RMVF>;
impl<'a, REG> RMVF_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn not_activated(self) -> &'a mut crate::W<REG> {
self.variant(RMVF::NotActivated)
}
#[inline(always)]
pub fn reset(self) -> &'a mut crate::W<REG> {
self.variant(RMVF::Reset)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum OBLRSTFR {
NoResetOccurred = 0,
ResetOccurred = 1,
}
impl From<OBLRSTFR> for bool {
#[inline(always)]
fn from(variant: OBLRSTFR) -> Self {
variant as u8 != 0
}
}
pub type OBLRSTF_R = crate::BitReader<OBLRSTFR>;
impl OBLRSTF_R {
#[inline(always)]
pub const fn variant(&self) -> OBLRSTFR {
match self.bits {
false => OBLRSTFR::NoResetOccurred,
true => OBLRSTFR::ResetOccurred,
}
}
#[inline(always)]
pub fn is_no_reset_occurred(&self) -> bool {
*self == OBLRSTFR::NoResetOccurred
}
#[inline(always)]
pub fn is_reset_occurred(&self) -> bool {
*self == OBLRSTFR::ResetOccurred
}
}
pub use OBLRSTF_R as BORRSTF_R;
pub use OBLRSTF_R as PINRSTF_R;
pub use OBLRSTF_R as PORRSTF_R;
pub use OBLRSTF_R as SFTRSTF_R;
pub use OBLRSTF_R as IWDGRSTF_R;
pub use OBLRSTF_R as WWDGRSTF_R;
pub use OBLRSTF_R as LPWRRSTF_R;
impl R {
#[inline(always)]
pub fn rmvf(&self) -> RMVF_R {
RMVF_R::new(((self.bits >> 16) & 1) != 0)
}
#[inline(always)]
pub fn oblrstf(&self) -> OBLRSTF_R {
OBLRSTF_R::new(((self.bits >> 17) & 1) != 0)
}
#[inline(always)]
pub fn borrstf(&self) -> BORRSTF_R {
BORRSTF_R::new(((self.bits >> 21) & 1) != 0)
}
#[inline(always)]
pub fn pinrstf(&self) -> PINRSTF_R {
PINRSTF_R::new(((self.bits >> 22) & 1) != 0)
}
#[inline(always)]
pub fn porrstf(&self) -> PORRSTF_R {
PORRSTF_R::new(((self.bits >> 23) & 1) != 0)
}
#[inline(always)]
pub fn sftrstf(&self) -> SFTRSTF_R {
SFTRSTF_R::new(((self.bits >> 24) & 1) != 0)
}
#[inline(always)]
pub fn iwdgrstf(&self) -> IWDGRSTF_R {
IWDGRSTF_R::new(((self.bits >> 26) & 1) != 0)
}
#[inline(always)]
pub fn wwdgrstf(&self) -> WWDGRSTF_R {
WWDGRSTF_R::new(((self.bits >> 28) & 1) != 0)
}
#[inline(always)]
pub fn lpwrrstf(&self) -> LPWRRSTF_R {
LPWRRSTF_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("RSR")
.field("rmvf", &self.rmvf())
.field("oblrstf", &self.oblrstf())
.field("borrstf", &self.borrstf())
.field("pinrstf", &self.pinrstf())
.field("porrstf", &self.porrstf())
.field("sftrstf", &self.sftrstf())
.field("iwdgrstf", &self.iwdgrstf())
.field("wwdgrstf", &self.wwdgrstf())
.field("lpwrrstf", &self.lpwrrstf())
.finish()
}
}
impl W {
#[inline(always)]
pub fn rmvf(&mut self) -> RMVF_W<RSRrs> {
RMVF_W::new(self, 16)
}
}
pub struct RSRrs;
impl crate::RegisterSpec for RSRrs {
type Ux = u32;
}
impl crate::Readable for RSRrs {}
impl crate::Writable for RSRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for RSRrs {
const RESET_VALUE: u32 = 0x00e0_0000;
}