imxrt1062-iomuxc 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 FLEXPWM2_PWMB3_SELECT_INPUT"]
pub type R = crate::R<u32, super::FLEXPWM2_PWMB3_SELECT_INPUT>;
#[doc = "Writer for register FLEXPWM2_PWMB3_SELECT_INPUT"]
pub type W = crate::W<u32, super::FLEXPWM2_PWMB3_SELECT_INPUT>;
#[doc = "Register FLEXPWM2_PWMB3_SELECT_INPUT `reset()`'s with value 0"]
impl crate::ResetValue for super::FLEXPWM2_PWMB3_SELECT_INPUT {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Selecting Pads Involved in Daisy Chain.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum DAISY_A {
    #[doc = "0: Selecting Pad: GPIO_SD_B1_03 for Mode: ALT2"]
    GPIO_SD_B1_03_ALT2 = 0,
    #[doc = "1: Selecting Pad: GPIO_EMC_20 for Mode: ALT1"]
    GPIO_EMC_20_ALT1 = 1,
    #[doc = "2: Selecting Pad: GPIO_AD_B0_01 for Mode: ALT0"]
    GPIO_AD_B0_01_ALT0 = 2,
    #[doc = "3: Selecting Pad: GPIO_B1_03 for Mode: ALT6"]
    GPIO_B1_03_ALT6 = 3,
}
impl From<DAISY_A> for u8 {
    #[inline(always)]
    fn from(variant: DAISY_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `DAISY`"]
pub type DAISY_R = crate::R<u8, DAISY_A>;
impl DAISY_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DAISY_A {
        match self.bits {
            0 => DAISY_A::GPIO_SD_B1_03_ALT2,
            1 => DAISY_A::GPIO_EMC_20_ALT1,
            2 => DAISY_A::GPIO_AD_B0_01_ALT0,
            3 => DAISY_A::GPIO_B1_03_ALT6,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `GPIO_SD_B1_03_ALT2`"]
    #[inline(always)]
    pub fn is_gpio_sd_b1_03_alt2(&self) -> bool {
        *self == DAISY_A::GPIO_SD_B1_03_ALT2
    }
    #[doc = "Checks if the value of the field is `GPIO_EMC_20_ALT1`"]
    #[inline(always)]
    pub fn is_gpio_emc_20_alt1(&self) -> bool {
        *self == DAISY_A::GPIO_EMC_20_ALT1
    }
    #[doc = "Checks if the value of the field is `GPIO_AD_B0_01_ALT0`"]
    #[inline(always)]
    pub fn is_gpio_ad_b0_01_alt0(&self) -> bool {
        *self == DAISY_A::GPIO_AD_B0_01_ALT0
    }
    #[doc = "Checks if the value of the field is `GPIO_B1_03_ALT6`"]
    #[inline(always)]
    pub fn is_gpio_b1_03_alt6(&self) -> bool {
        *self == DAISY_A::GPIO_B1_03_ALT6
    }
}
#[doc = "Write proxy for field `DAISY`"]
pub struct DAISY_W<'a> {
    w: &'a mut W,
}
impl<'a> DAISY_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DAISY_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Selecting Pad: GPIO_SD_B1_03 for Mode: ALT2"]
    #[inline(always)]
    pub fn gpio_sd_b1_03_alt2(self) -> &'a mut W {
        self.variant(DAISY_A::GPIO_SD_B1_03_ALT2)
    }
    #[doc = "Selecting Pad: GPIO_EMC_20 for Mode: ALT1"]
    #[inline(always)]
    pub fn gpio_emc_20_alt1(self) -> &'a mut W {
        self.variant(DAISY_A::GPIO_EMC_20_ALT1)
    }
    #[doc = "Selecting Pad: GPIO_AD_B0_01 for Mode: ALT0"]
    #[inline(always)]
    pub fn gpio_ad_b0_01_alt0(self) -> &'a mut W {
        self.variant(DAISY_A::GPIO_AD_B0_01_ALT0)
    }
    #[doc = "Selecting Pad: GPIO_B1_03 for Mode: ALT6"]
    #[inline(always)]
    pub fn gpio_b1_03_alt6(self) -> &'a mut W {
        self.variant(DAISY_A::GPIO_B1_03_ALT6)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x03) | ((value as u32) & 0x03);
        self.w
    }
}
impl R {
    #[doc = "Bits 0:1 - Selecting Pads Involved in Daisy Chain."]
    #[inline(always)]
    pub fn daisy(&self) -> DAISY_R {
        DAISY_R::new((self.bits & 0x03) as u8)
    }
}
impl W {
    #[doc = "Bits 0:1 - Selecting Pads Involved in Daisy Chain."]
    #[inline(always)]
    pub fn daisy(&mut self) -> DAISY_W {
        DAISY_W { w: self }
    }
}