Skip to main content

atsamd11c14a/dsu/
cid2.rs

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