1#[doc = "Register `LDCMP1` reader"]
2pub type R = crate::R<LDCMP1_SPEC>;
3#[doc = "Register `LDCMP1` writer"]
4pub type W = crate::W<LDCMP1_SPEC>;
5#[doc = "Field `CMP_LD4` reader - Compare Value for LED COL\\[x\\]"]
6pub type CMP_LD4_R = crate::FieldReader;
7#[doc = "Field `CMP_LD4` writer - Compare Value for LED COL\\[x\\]"]
8pub type CMP_LD4_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `CMP_LD5` reader - Compare Value for LED COL\\[x\\]"]
10pub type CMP_LD5_R = crate::FieldReader;
11#[doc = "Field `CMP_LD5` writer - Compare Value for LED COL\\[x\\]"]
12pub type CMP_LD5_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
13#[doc = "Field `CMP_LD6` reader - Compare Value for LED COL\\[x\\]"]
14pub type CMP_LD6_R = crate::FieldReader;
15#[doc = "Field `CMP_LD6` writer - Compare Value for LED COL\\[x\\]"]
16pub type CMP_LD6_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
17#[doc = "Field `CMP_LDA_TSCOM` reader - Compare Value for LED COLA / Common Compare Value for Touch-sense Pad Turns"]
18pub type CMP_LDA_TSCOM_R = crate::FieldReader;
19#[doc = "Field `CMP_LDA_TSCOM` writer - Compare Value for LED COLA / Common Compare Value for Touch-sense Pad Turns"]
20pub type CMP_LDA_TSCOM_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_ld4(&self) -> CMP_LD4_R {
25 CMP_LD4_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_ld5(&self) -> CMP_LD5_R {
30 CMP_LD5_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_ld6(&self) -> CMP_LD6_R {
35 CMP_LD6_R::new(((self.bits >> 16) & 0xff) as u8)
36 }
37 #[doc = "Bits 24:31 - Compare Value for LED COLA / Common Compare Value for Touch-sense Pad Turns"]
38 #[inline(always)]
39 pub fn cmp_lda_tscom(&self) -> CMP_LDA_TSCOM_R {
40 CMP_LDA_TSCOM_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_ld4(&mut self) -> CMP_LD4_W<LDCMP1_SPEC> {
47 CMP_LD4_W::new(self, 0)
48 }
49 #[doc = "Bits 8:15 - Compare Value for LED COL\\[x\\]"]
50 #[inline(always)]
51 pub fn cmp_ld5(&mut self) -> CMP_LD5_W<LDCMP1_SPEC> {
52 CMP_LD5_W::new(self, 8)
53 }
54 #[doc = "Bits 16:23 - Compare Value for LED COL\\[x\\]"]
55 #[inline(always)]
56 pub fn cmp_ld6(&mut self) -> CMP_LD6_W<LDCMP1_SPEC> {
57 CMP_LD6_W::new(self, 16)
58 }
59 #[doc = "Bits 24:31 - Compare Value for LED COLA / Common Compare Value for Touch-sense Pad Turns"]
60 #[inline(always)]
61 pub fn cmp_lda_tscom(&mut self) -> CMP_LDA_TSCOM_W<LDCMP1_SPEC> {
62 CMP_LDA_TSCOM_W::new(self, 24)
63 }
64}
65#[doc = "LED Compare Register 1\n\nYou can [`read`](crate::Reg::read) this register and get [`ldcmp1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ldcmp1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
66pub struct LDCMP1_SPEC;
67impl crate::RegisterSpec for LDCMP1_SPEC {
68 type Ux = u32;
69}
70#[doc = "`read()` method returns [`ldcmp1::R`](R) reader structure"]
71impl crate::Readable for LDCMP1_SPEC {}
72#[doc = "`write(|w| ..)` method takes [`ldcmp1::W`](W) writer structure"]
73impl crate::Writable for LDCMP1_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 LDCMP1 to value 0"]
79impl crate::Resettable for LDCMP1_SPEC {
80 const RESET_VALUE: u32 = 0;
81}