xmc4700 0.3.0

XMC peripheral library for XMC4700 generated from SVD
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register RESM"]
pub type R = crate::R<u32, super::RESM>;
#[doc = "Reader of field `RESULT`"]
pub type RESULT_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:15 - Result of most recent conversion"]
    #[inline(always)]
    pub fn result(&self) -> RESULT_R {
        RESULT_R::new((self.bits & 0xffff) as u16)
    }
}