d1-pac 0.0.32

Peripheral access API for Allwinner D1 SoC generated from unofficial SVD file
Documentation
#[doc = "Register `adc_vol_ctrl1` reader"]
pub type R = crate::R<ADC_VOL_CTRL1_SPEC>;
#[doc = "Register `adc_vol_ctrl1` writer"]
pub type W = crate::W<ADC_VOL_CTRL1_SPEC>;
#[doc = "Field `adc_vol[1-3]` reader - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
pub type ADC_VOL_R = crate::FieldReader<ADC_VOL_A>;
#[doc = "ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)\n\nValue on reset: 160"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum ADC_VOL_A {
    #[doc = "0: Mute"]
    M_UTE = 0,
    #[doc = "1: -119.25 dB ..."]
    N_119_25DB = 1,
    #[doc = "160: 0 dB"]
    _0DB = 160,
    #[doc = "255: 71.25 dB"]
    _71_25DB = 255,
}
impl From<ADC_VOL_A> for u8 {
    #[inline(always)]
    fn from(variant: ADC_VOL_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for ADC_VOL_A {
    type Ux = u8;
}
impl ADC_VOL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<ADC_VOL_A> {
        match self.bits {
            0 => Some(ADC_VOL_A::M_UTE),
            1 => Some(ADC_VOL_A::N_119_25DB),
            160 => Some(ADC_VOL_A::_0DB),
            255 => Some(ADC_VOL_A::_71_25DB),
            _ => None,
        }
    }
    #[doc = "Mute"]
    #[inline(always)]
    pub fn is_m_ute(&self) -> bool {
        *self == ADC_VOL_A::M_UTE
    }
    #[doc = "-119.25 dB ..."]
    #[inline(always)]
    pub fn is_n_119_25db(&self) -> bool {
        *self == ADC_VOL_A::N_119_25DB
    }
    #[doc = "0 dB"]
    #[inline(always)]
    pub fn is_0db(&self) -> bool {
        *self == ADC_VOL_A::_0DB
    }
    #[doc = "71.25 dB"]
    #[inline(always)]
    pub fn is_71_25db(&self) -> bool {
        *self == ADC_VOL_A::_71_25DB
    }
}
#[doc = "Field `adc_vol[1-3]` writer - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
pub type ADC_VOL_W<'a, REG> = crate::FieldWriter<'a, REG, 8, ADC_VOL_A>;
impl<'a, REG> ADC_VOL_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Mute"]
    #[inline(always)]
    pub fn m_ute(self) -> &'a mut crate::W<REG> {
        self.variant(ADC_VOL_A::M_UTE)
    }
    #[doc = "-119.25 dB ..."]
    #[inline(always)]
    pub fn n_119_25db(self) -> &'a mut crate::W<REG> {
        self.variant(ADC_VOL_A::N_119_25DB)
    }
    #[doc = "0 dB"]
    #[inline(always)]
    pub fn _0db(self) -> &'a mut crate::W<REG> {
        self.variant(ADC_VOL_A::_0DB)
    }
    #[doc = "71.25 dB"]
    #[inline(always)]
    pub fn _71_25db(self) -> &'a mut crate::W<REG> {
        self.variant(ADC_VOL_A::_71_25DB)
    }
}
impl R {
    #[doc = "ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)\n\nNOTE: `n` is number of field in register. `n == 0` corresponds to `adc1_vol` field"]
    #[inline(always)]
    pub fn adc_vol(&self, n: u8) -> ADC_VOL_R {
        #[allow(clippy::no_effect)]
        [(); 3][n as usize];
        ADC_VOL_R::new(((self.bits >> (n * 8)) & 0xff) as u8)
    }
    #[doc = "Bits 0:7 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    pub fn adc1_vol(&self) -> ADC_VOL_R {
        ADC_VOL_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    pub fn adc2_vol(&self) -> ADC_VOL_R {
        ADC_VOL_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:23 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    pub fn adc3_vol(&self) -> ADC_VOL_R {
        ADC_VOL_R::new(((self.bits >> 16) & 0xff) as u8)
    }
}
impl W {
    #[doc = "ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)\n\nNOTE: `n` is number of field in register. `n == 0` corresponds to `adc1_vol` field"]
    #[inline(always)]
    #[must_use]
    pub fn adc_vol(&mut self, n: u8) -> ADC_VOL_W<ADC_VOL_CTRL1_SPEC> {
        #[allow(clippy::no_effect)]
        [(); 3][n as usize];
        ADC_VOL_W::new(self, n * 8)
    }
    #[doc = "Bits 0:7 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    #[must_use]
    pub fn adc1_vol(&mut self) -> ADC_VOL_W<ADC_VOL_CTRL1_SPEC> {
        ADC_VOL_W::new(self, 0)
    }
    #[doc = "Bits 8:15 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    #[must_use]
    pub fn adc2_vol(&mut self) -> ADC_VOL_W<ADC_VOL_CTRL1_SPEC> {
        ADC_VOL_W::new(self, 8)
    }
    #[doc = "Bits 16:23 - ADC\\[i\\] channel volume (-119.25 dB To 71.25 dB, 0.75 dB/Step)"]
    #[inline(always)]
    #[must_use]
    pub fn adc3_vol(&mut self) -> ADC_VOL_W<ADC_VOL_CTRL1_SPEC> {
        ADC_VOL_W::new(self, 16)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "ADC Volume Control1 Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`adc_vol_ctrl1::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`adc_vol_ctrl1::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct ADC_VOL_CTRL1_SPEC;
impl crate::RegisterSpec for ADC_VOL_CTRL1_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`adc_vol_ctrl1::R`](R) reader structure"]
impl crate::Readable for ADC_VOL_CTRL1_SPEC {}
#[doc = "`write(|w| ..)` method takes [`adc_vol_ctrl1::W`](W) writer structure"]
impl crate::Writable for ADC_VOL_CTRL1_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets adc_vol_ctrl1 to value 0xa0a0_a0a0"]
impl crate::Resettable for ADC_VOL_CTRL1_SPEC {
    const RESET_VALUE: Self::Ux = 0xa0a0_a0a0;
}