xmc4800/ledts0/
ldcmp0.rs

1#[doc = "Register `LDCMP0` reader"]
2pub type R = crate::R<LDCMP0_SPEC>;
3#[doc = "Register `LDCMP0` writer"]
4pub type W = crate::W<LDCMP0_SPEC>;
5#[doc = "Field `CMP_LD0` reader - Compare Value for LED COL\\[x\\]"]
6pub type CMP_LD0_R = crate::FieldReader;
7#[doc = "Field `CMP_LD0` writer - Compare Value for LED COL\\[x\\]"]
8pub type CMP_LD0_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `CMP_LD1` reader - Compare Value for LED COL\\[x\\]"]
10pub type CMP_LD1_R = crate::FieldReader;
11#[doc = "Field `CMP_LD1` writer - Compare Value for LED COL\\[x\\]"]
12pub type CMP_LD1_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
13#[doc = "Field `CMP_LD2` reader - Compare Value for LED COL\\[x\\]"]
14pub type CMP_LD2_R = crate::FieldReader;
15#[doc = "Field `CMP_LD2` writer - Compare Value for LED COL\\[x\\]"]
16pub type CMP_LD2_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
17#[doc = "Field `CMP_LD3` reader - Compare Value for LED COL\\[x\\]"]
18pub type CMP_LD3_R = crate::FieldReader;
19#[doc = "Field `CMP_LD3` writer - Compare Value for LED COL\\[x\\]"]
20pub type CMP_LD3_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
21impl R {
22    #[doc = "Bits 0:7 - Compare Value for LED COL\\[x\\]"]
23    #[inline(always)]
24    pub fn cmp_ld0(&self) -> CMP_LD0_R {
25        CMP_LD0_R::new((self.bits & 0xff) as u8)
26    }
27    #[doc = "Bits 8:15 - Compare Value for LED COL\\[x\\]"]
28    #[inline(always)]
29    pub fn cmp_ld1(&self) -> CMP_LD1_R {
30        CMP_LD1_R::new(((self.bits >> 8) & 0xff) as u8)
31    }
32    #[doc = "Bits 16:23 - Compare Value for LED COL\\[x\\]"]
33    #[inline(always)]
34    pub fn cmp_ld2(&self) -> CMP_LD2_R {
35        CMP_LD2_R::new(((self.bits >> 16) & 0xff) as u8)
36    }
37    #[doc = "Bits 24:31 - Compare Value for LED COL\\[x\\]"]
38    #[inline(always)]
39    pub fn cmp_ld3(&self) -> CMP_LD3_R {
40        CMP_LD3_R::new(((self.bits >> 24) & 0xff) as u8)
41    }
42}
43impl W {
44    #[doc = "Bits 0:7 - Compare Value for LED COL\\[x\\]"]
45    #[inline(always)]
46    pub fn cmp_ld0(&mut self) -> CMP_LD0_W<LDCMP0_SPEC> {
47        CMP_LD0_W::new(self, 0)
48    }
49    #[doc = "Bits 8:15 - Compare Value for LED COL\\[x\\]"]
50    #[inline(always)]
51    pub fn cmp_ld1(&mut self) -> CMP_LD1_W<LDCMP0_SPEC> {
52        CMP_LD1_W::new(self, 8)
53    }
54    #[doc = "Bits 16:23 - Compare Value for LED COL\\[x\\]"]
55    #[inline(always)]
56    pub fn cmp_ld2(&mut self) -> CMP_LD2_W<LDCMP0_SPEC> {
57        CMP_LD2_W::new(self, 16)
58    }
59    #[doc = "Bits 24:31 - Compare Value for LED COL\\[x\\]"]
60    #[inline(always)]
61    pub fn cmp_ld3(&mut self) -> CMP_LD3_W<LDCMP0_SPEC> {
62        CMP_LD3_W::new(self, 24)
63    }
64}
65#[doc = "LED Compare Register 0\n\nYou can [`read`](crate::Reg::read) this register and get [`ldcmp0::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ldcmp0::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
66pub struct LDCMP0_SPEC;
67impl crate::RegisterSpec for LDCMP0_SPEC {
68    type Ux = u32;
69}
70#[doc = "`read()` method returns [`ldcmp0::R`](R) reader structure"]
71impl crate::Readable for LDCMP0_SPEC {}
72#[doc = "`write(|w| ..)` method takes [`ldcmp0::W`](W) writer structure"]
73impl crate::Writable for LDCMP0_SPEC {
74    type Safety = crate::Unsafe;
75    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
76    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
77}
78#[doc = "`reset()` method sets LDCMP0 to value 0"]
79impl crate::Resettable for LDCMP0_SPEC {
80    const RESET_VALUE: u32 = 0;
81}