imxrt1062-adc1 0.1.1

An imxrt1062-pac subcrate. See the imxrt1062-pac for more details. This crate is not maintained. Consider using the register access layer provided by the [imxrt-rs](https://github.com/imxrt-rs/imxrt-rs) project. Formerly part of the teensy4-rs project.
Documentation
#[doc = "Reader of register RESULT0"]
pub type R = crate::R<u32, super::RESULT0>;
#[doc = "Reader of field `CDATA`"]
pub type CDATA_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:11 - Data (result of an ADC conversion)"]
    #[inline(always)]
    pub fn cdata(&self) -> CDATA_R {
        CDATA_R::new((self.bits & 0x0fff) as u16)
    }
}