efm32gg11b820/wtimer2/
cc2_ccvp.rs

1#[doc = "Reader of register CC2_CCVP"]
2pub type R = crate::R<u32, super::CC2_CCVP>;
3#[doc = "Reader of field `CCVP`"]
4pub type CCVP_R = crate::R<u32, u32>;
5impl R {
6    #[doc = "Bits 0:31 - CC Channel Value Peek"]
7    #[inline(always)]
8    pub fn ccvp(&self) -> CCVP_R {
9        CCVP_R::new((self.bits & 0xffff_ffff) as u32)
10    }
11}