#[doc = "Reader of register SYNCBUSY"]
pub type R = crate::R<u32, super::SYNCBUSY>;
#[doc = "Reader of field `SWRST`"]
pub type SWRST_R = crate::R<bool, bool>;
#[doc = "Reader of field `ENABLE`"]
pub type ENABLE_R = crate::R<bool, bool>;
#[doc = "Reader of field `CTRLB`"]
pub type CTRLB_R = crate::R<bool, bool>;
#[doc = "Reader of field `STATUS`"]
pub type STATUS_R = crate::R<bool, bool>;
#[doc = "Reader of field `COUNT`"]
pub type COUNT_R = crate::R<bool, bool>;
#[doc = "Reader of field `PER`"]
pub type PER_R = crate::R<bool, bool>;
#[doc = "Reader of field `CC0`"]
pub type CC0_R = crate::R<bool, bool>;
#[doc = "Reader of field `CC1`"]
pub type CC1_R = crate::R<bool, bool>;
impl R {
#[doc = "Bit 0 - swrst"]
#[inline(always)]
pub fn swrst(&self) -> SWRST_R {
SWRST_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - enable"]
#[inline(always)]
pub fn enable(&self) -> ENABLE_R {
ENABLE_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - CTRLB"]
#[inline(always)]
pub fn ctrlb(&self) -> CTRLB_R {
CTRLB_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 3 - STATUS"]
#[inline(always)]
pub fn status(&self) -> STATUS_R {
STATUS_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 4 - Counter"]
#[inline(always)]
pub fn count(&self) -> COUNT_R {
COUNT_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 5 - Period"]
#[inline(always)]
pub fn per(&self) -> PER_R {
PER_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 6 - Compare Channel 0"]
#[inline(always)]
pub fn cc0(&self) -> CC0_R {
CC0_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 7 - Compare Channel 1"]
#[inline(always)]
pub fn cc1(&self) -> CC1_R {
CC1_R::new(((self.bits >> 7) & 0x01) != 0)
}
}