d1_pac/csic/csic_parser0/
prs_ch_input_para3.rs1#[doc = "Register `prs_ch%s_input_para3` reader"]
2pub type R = crate::R<PRS_CH_INPUT_PARA3_SPEC>;
3#[doc = "Field `input_x` reader - "]
4pub type INPUT_X_R = crate::FieldReader<u16>;
5#[doc = "Field `input_y` reader - "]
6pub type INPUT_Y_R = crate::FieldReader<u16>;
7impl R {
8 #[doc = "Bits 0:13"]
9 #[inline(always)]
10 pub fn input_x(&self) -> INPUT_X_R {
11 INPUT_X_R::new((self.bits & 0x3fff) as u16)
12 }
13 #[doc = "Bits 16:29"]
14 #[inline(always)]
15 pub fn input_y(&self) -> INPUT_Y_R {
16 INPUT_Y_R::new(((self.bits >> 16) & 0x3fff) as u16)
17 }
18}
19#[doc = "Parser Channel\\[i\\] Input Parameter3 Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`prs_ch_input_para3::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
20pub struct PRS_CH_INPUT_PARA3_SPEC;
21impl crate::RegisterSpec for PRS_CH_INPUT_PARA3_SPEC {
22 type Ux = u32;
23}
24#[doc = "`read()` method returns [`prs_ch_input_para3::R`](R) reader structure"]
25impl crate::Readable for PRS_CH_INPUT_PARA3_SPEC {}
26#[doc = "`reset()` method sets prs_ch%s_input_para3 to value 0"]
27impl crate::Resettable for PRS_CH_INPUT_PARA3_SPEC {
28 const RESET_VALUE: Self::Ux = 0;
29}