Skip to main content

xmc1100/wdt/
tim.rs

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