pub type R = crate::R<TXBCrs>;
pub type W = crate::W<TXBCrs>;
pub type TFQM_R = crate::BitReader;
pub type TFQM_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[inline(always)]
pub fn tfqm(&self) -> TFQM_R {
TFQM_R::new(((self.bits >> 24) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("TXBC").field("tfqm", &self.tfqm()).finish()
}
}
impl W {
#[inline(always)]
pub fn tfqm(&mut self) -> TFQM_W<TXBCrs> {
TFQM_W::new(self, 24)
}
}
pub struct TXBCrs;
impl crate::RegisterSpec for TXBCrs {
type Ux = u32;
}
impl crate::Readable for TXBCrs {}
impl crate::Writable for TXBCrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for TXBCrs {}