Skip to main content

atsamd11c14a/dsu/
cid3.rs

1#[doc = "Reader of register CID3"]
2pub type R = crate::R<u32, super::CID3>;
3#[doc = "Reader of field `PREAMBLEB3`"]
4pub type PREAMBLEB3_R = crate::R<u8, u8>;
5impl R {
6    #[doc = "Bits 0:7 - Preamble Byte 3"]
7    #[inline(always)]
8    pub fn preambleb3(&self) -> PREAMBLEB3_R {
9        PREAMBLEB3_R::new((self.bits & 0xff) as u8)
10    }
11}