xmc1100 0.2.0

Low-level register mappings for the XMC1100 series of ARM Cortex-M0 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register ANATSEMON"]
pub type R = crate::R<u16, super::ANATSEMON>;
#[doc = "Reader of field `TSE_MON`"]
pub type TSE_MON_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:15 - Monitor Counter2 value; loaded by TSE_DONE"]
    #[inline(always)]
    pub fn tse_mon(&self) -> TSE_MON_R {
        TSE_MON_R::new((self.bits & 0xffff) as u16)
    }
}