efm32gg12b810/timer0/cc3_ccvp.rs
1#[doc = "Reader of register CC3_CCVP"]
2pub type R = crate::R<u32, super::CC3_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}