#[doc = "Register `SAR_READ_CTRL` reader"]
pub type R = crate::R<SAR_READ_CTRL_SPEC>;
#[doc = "Register `SAR_READ_CTRL` writer"]
pub type W = crate::W<SAR_READ_CTRL_SPEC>;
#[doc = "Field `SAR1_CLK_DIV` reader - clock divider"]
pub type SAR1_CLK_DIV_R = crate::FieldReader;
#[doc = "Field `SAR1_CLK_DIV` writer - clock divider"]
pub type SAR1_CLK_DIV_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `SAR1_SAMPLE_CYCLE` reader - sample cycles for SAR ADC1"]
pub type SAR1_SAMPLE_CYCLE_R = crate::FieldReader;
#[doc = "Field `SAR1_SAMPLE_CYCLE` writer - sample cycles for SAR ADC1"]
pub type SAR1_SAMPLE_CYCLE_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `SAR1_SAMPLE_BIT` reader - 00: for 9-bit width 01: for 10-bit width 10: for 11-bit width 11: for 12-bit width"]
pub type SAR1_SAMPLE_BIT_R = crate::FieldReader;
#[doc = "Field `SAR1_SAMPLE_BIT` writer - 00: for 9-bit width 01: for 10-bit width 10: for 11-bit width 11: for 12-bit width"]
pub type SAR1_SAMPLE_BIT_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
#[doc = "Field `SAR1_CLK_GATED` reader - "]
pub type SAR1_CLK_GATED_R = crate::BitReader;
#[doc = "Field `SAR1_CLK_GATED` writer - "]
pub type SAR1_CLK_GATED_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `SAR1_SAMPLE_NUM` reader - "]
pub type SAR1_SAMPLE_NUM_R = crate::FieldReader;
#[doc = "Field `SAR1_SAMPLE_NUM` writer - "]
pub type SAR1_SAMPLE_NUM_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `SAR1_DIG_FORCE` reader - 1: SAR ADC1 controlled by DIG ADC1 CTRL 0: SAR ADC1 controlled by RTC ADC1 CTRL"]
pub type SAR1_DIG_FORCE_R = crate::BitReader;
#[doc = "Field `SAR1_DIG_FORCE` writer - 1: SAR ADC1 controlled by DIG ADC1 CTRL 0: SAR ADC1 controlled by RTC ADC1 CTRL"]
pub type SAR1_DIG_FORCE_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `SAR1_DATA_INV` reader - Invert SAR ADC1 data"]
pub type SAR1_DATA_INV_R = crate::BitReader;
#[doc = "Field `SAR1_DATA_INV` writer - Invert SAR ADC1 data"]
pub type SAR1_DATA_INV_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[doc = "Bits 0:7 - clock divider"]
#[inline(always)]
pub fn sar1_clk_div(&self) -> SAR1_CLK_DIV_R {
SAR1_CLK_DIV_R::new((self.bits & 0xff) as u8)
}
#[doc = "Bits 8:15 - sample cycles for SAR ADC1"]
#[inline(always)]
pub fn sar1_sample_cycle(&self) -> SAR1_SAMPLE_CYCLE_R {
SAR1_SAMPLE_CYCLE_R::new(((self.bits >> 8) & 0xff) as u8)
}
#[doc = "Bits 16:17 - 00: for 9-bit width 01: for 10-bit width 10: for 11-bit width 11: for 12-bit width"]
#[inline(always)]
pub fn sar1_sample_bit(&self) -> SAR1_SAMPLE_BIT_R {
SAR1_SAMPLE_BIT_R::new(((self.bits >> 16) & 3) as u8)
}
#[doc = "Bit 18"]
#[inline(always)]
pub fn sar1_clk_gated(&self) -> SAR1_CLK_GATED_R {
SAR1_CLK_GATED_R::new(((self.bits >> 18) & 1) != 0)
}
#[doc = "Bits 19:26"]
#[inline(always)]
pub fn sar1_sample_num(&self) -> SAR1_SAMPLE_NUM_R {
SAR1_SAMPLE_NUM_R::new(((self.bits >> 19) & 0xff) as u8)
}
#[doc = "Bit 27 - 1: SAR ADC1 controlled by DIG ADC1 CTRL 0: SAR ADC1 controlled by RTC ADC1 CTRL"]
#[inline(always)]
pub fn sar1_dig_force(&self) -> SAR1_DIG_FORCE_R {
SAR1_DIG_FORCE_R::new(((self.bits >> 27) & 1) != 0)
}
#[doc = "Bit 28 - Invert SAR ADC1 data"]
#[inline(always)]
pub fn sar1_data_inv(&self) -> SAR1_DATA_INV_R {
SAR1_DATA_INV_R::new(((self.bits >> 28) & 1) != 0)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("SAR_READ_CTRL")
.field("sar1_clk_div", &self.sar1_clk_div())
.field("sar1_sample_cycle", &self.sar1_sample_cycle())
.field("sar1_sample_bit", &self.sar1_sample_bit())
.field("sar1_clk_gated", &self.sar1_clk_gated())
.field("sar1_sample_num", &self.sar1_sample_num())
.field("sar1_dig_force", &self.sar1_dig_force())
.field("sar1_data_inv", &self.sar1_data_inv())
.finish()
}
}
impl W {
#[doc = "Bits 0:7 - clock divider"]
#[inline(always)]
pub fn sar1_clk_div(&mut self) -> SAR1_CLK_DIV_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_CLK_DIV_W::new(self, 0)
}
#[doc = "Bits 8:15 - sample cycles for SAR ADC1"]
#[inline(always)]
pub fn sar1_sample_cycle(&mut self) -> SAR1_SAMPLE_CYCLE_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_SAMPLE_CYCLE_W::new(self, 8)
}
#[doc = "Bits 16:17 - 00: for 9-bit width 01: for 10-bit width 10: for 11-bit width 11: for 12-bit width"]
#[inline(always)]
pub fn sar1_sample_bit(&mut self) -> SAR1_SAMPLE_BIT_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_SAMPLE_BIT_W::new(self, 16)
}
#[doc = "Bit 18"]
#[inline(always)]
pub fn sar1_clk_gated(&mut self) -> SAR1_CLK_GATED_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_CLK_GATED_W::new(self, 18)
}
#[doc = "Bits 19:26"]
#[inline(always)]
pub fn sar1_sample_num(&mut self) -> SAR1_SAMPLE_NUM_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_SAMPLE_NUM_W::new(self, 19)
}
#[doc = "Bit 27 - 1: SAR ADC1 controlled by DIG ADC1 CTRL 0: SAR ADC1 controlled by RTC ADC1 CTRL"]
#[inline(always)]
pub fn sar1_dig_force(&mut self) -> SAR1_DIG_FORCE_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_DIG_FORCE_W::new(self, 27)
}
#[doc = "Bit 28 - Invert SAR ADC1 data"]
#[inline(always)]
pub fn sar1_data_inv(&mut self) -> SAR1_DATA_INV_W<'_, SAR_READ_CTRL_SPEC> {
SAR1_DATA_INV_W::new(self, 28)
}
}
#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`sar_read_ctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`sar_read_ctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct SAR_READ_CTRL_SPEC;
impl crate::RegisterSpec for SAR_READ_CTRL_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`sar_read_ctrl::R`](R) reader structure"]
impl crate::Readable for SAR_READ_CTRL_SPEC {}
#[doc = "`write(|w| ..)` method takes [`sar_read_ctrl::W`](W) writer structure"]
impl crate::Writable for SAR_READ_CTRL_SPEC {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets SAR_READ_CTRL to value 0x0007_0902"]
impl crate::Resettable for SAR_READ_CTRL_SPEC {
const RESET_VALUE: u32 = 0x0007_0902;
}