1
2
3
4
5
6
7
8
9
#[doc = "Reader of register SCANFIFOCOUNT"]
pub type R = crate::R<u32, super::SCANFIFOCOUNT>;
#[doc = "Reader of field `SCANDC`"]
pub type SCANDC_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:2 - Scan Data Count"]
    #[inline(always)]
    pub fn scandc(&self) -> SCANDC_R { SCANDC_R::new((self.bits & 0x07) as u8) }
}