#[doc = "Reader of register IC_CLR_RX_DONE"]
pub type R = crate::R<u32, super::IC_CLR_RX_DONE>;
#[doc = "Reader of field `CLR_RX_DONE`"]
pub type CLR_RX_DONE_R = crate::R<bool, bool>;
impl R {
#[doc = "Bit 0 - Read this register to clear the RX_DONE interrupt (bit 7) of the IC_RAW_INTR_STAT register.\\n\\n Reset value: 0x0"]
#[inline(always)]
pub fn clr_rx_done(&self) -> CLR_RX_DONE_R {
CLR_RX_DONE_R::new((self.bits & 0x01) != 0)
}
}