tm4c129x/epi0/
rfifocnt.rs

1#[doc = "Reader of register RFIFOCNT"]
2pub type R = crate::R<u32, super::RFIFOCNT>;
3#[doc = "Reader of field `COUNT`"]
4pub type COUNT_R = crate::R<u8, u8>;
5impl R {
6    #[doc = "Bits 0:3 - FIFO Count"]
7    #[inline(always)]
8    pub fn count(&self) -> COUNT_R {
9        COUNT_R::new((self.bits & 0x0f) as u8)
10    }
11}