pub type R = crate::R<SRrs>;
pub type TEF_R = crate::BitReader;
pub type TCF_R = crate::BitReader;
pub type FTF_R = crate::BitReader;
pub type SMF_R = crate::BitReader;
pub type TOF_R = crate::BitReader;
pub type BUSY_R = crate::BitReader;
pub type FLEVEL_R = crate::FieldReader;
impl R {
#[inline(always)]
pub fn tef(&self) -> TEF_R {
TEF_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn tcf(&self) -> TCF_R {
TCF_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn ftf(&self) -> FTF_R {
FTF_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn smf(&self) -> SMF_R {
SMF_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn tof(&self) -> TOF_R {
TOF_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn busy(&self) -> BUSY_R {
BUSY_R::new(((self.bits >> 5) & 1) != 0)
}
#[inline(always)]
pub fn flevel(&self) -> FLEVEL_R {
FLEVEL_R::new(((self.bits >> 8) & 0x7f) as u8)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("SR")
.field("tef", &self.tef())
.field("tcf", &self.tcf())
.field("ftf", &self.ftf())
.field("smf", &self.smf())
.field("tof", &self.tof())
.field("busy", &self.busy())
.field("flevel", &self.flevel())
.finish()
}
}
pub struct SRrs;
impl crate::RegisterSpec for SRrs {
type Ux = u32;
}
impl crate::Readable for SRrs {}
impl crate::Resettable for SRrs {}