pub type R = crate::R<AHB2RSTRrs>;
pub type W = crate::W<AHB2RSTRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum OTGFSRST {
Reset = 1,
}
impl From<OTGFSRST> for bool {
#[inline(always)]
fn from(variant: OTGFSRST) -> Self {
variant as u8 != 0
}
}
pub type OTGFSRST_R = crate::BitReader<OTGFSRST>;
impl OTGFSRST_R {
#[inline(always)]
pub const fn variant(&self) -> Option<OTGFSRST> {
match self.bits {
true => Some(OTGFSRST::Reset),
_ => None,
}
}
#[inline(always)]
pub fn is_reset(&self) -> bool {
*self == OTGFSRST::Reset
}
}
pub type OTGFSRST_W<'a, REG> = crate::BitWriter<'a, REG, OTGFSRST>;
impl<'a, REG> OTGFSRST_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn reset(self) -> &'a mut crate::W<REG> {
self.variant(OTGFSRST::Reset)
}
}
impl R {
#[inline(always)]
pub fn otgfsrst(&self) -> OTGFSRST_R {
OTGFSRST_R::new(((self.bits >> 7) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("AHB2RSTR")
.field("otgfsrst", &self.otgfsrst())
.finish()
}
}
impl W {
#[inline(always)]
pub fn otgfsrst(&mut self) -> OTGFSRST_W<AHB2RSTRrs> {
OTGFSRST_W::new(self, 7)
}
}
pub struct AHB2RSTRrs;
impl crate::RegisterSpec for AHB2RSTRrs {
type Ux = u32;
}
impl crate::Readable for AHB2RSTRrs {}
impl crate::Writable for AHB2RSTRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for AHB2RSTRrs {}