1#[doc = "Register `TSCMP1` reader"]
2pub type R = crate::R<TSCMP1_SPEC>;
3#[doc = "Register `TSCMP1` writer"]
4pub type W = crate::W<TSCMP1_SPEC>;
5#[doc = "Field `CMP_TS4` reader - Compare Value for Touch-Sense TSIN\\[x\\]"]
6pub type CMP_TS4_R = crate::FieldReader;
7#[doc = "Field `CMP_TS4` writer - Compare Value for Touch-Sense TSIN\\[x\\]"]
8pub type CMP_TS4_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `CMP_TS5` reader - Compare Value for Touch-Sense TSIN\\[x\\]"]
10pub type CMP_TS5_R = crate::FieldReader;
11#[doc = "Field `CMP_TS5` writer - Compare Value for Touch-Sense TSIN\\[x\\]"]
12pub type CMP_TS5_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
13#[doc = "Field `CMP_TS6` reader - Compare Value for Touch-Sense TSIN\\[x\\]"]
14pub type CMP_TS6_R = crate::FieldReader;
15#[doc = "Field `CMP_TS6` writer - Compare Value for Touch-Sense TSIN\\[x\\]"]
16pub type CMP_TS6_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
17#[doc = "Field `CMP_TS7` reader - Compare Value for Touch-Sense TSIN\\[x\\]"]
18pub type CMP_TS7_R = crate::FieldReader;
19#[doc = "Field `CMP_TS7` writer - Compare Value for Touch-Sense TSIN\\[x\\]"]
20pub type CMP_TS7_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
21impl R {
22 #[doc = "Bits 0:7 - Compare Value for Touch-Sense TSIN\\[x\\]"]
23 #[inline(always)]
24 pub fn cmp_ts4(&self) -> CMP_TS4_R {
25 CMP_TS4_R::new((self.bits & 0xff) as u8)
26 }
27 #[doc = "Bits 8:15 - Compare Value for Touch-Sense TSIN\\[x\\]"]
28 #[inline(always)]
29 pub fn cmp_ts5(&self) -> CMP_TS5_R {
30 CMP_TS5_R::new(((self.bits >> 8) & 0xff) as u8)
31 }
32 #[doc = "Bits 16:23 - Compare Value for Touch-Sense TSIN\\[x\\]"]
33 #[inline(always)]
34 pub fn cmp_ts6(&self) -> CMP_TS6_R {
35 CMP_TS6_R::new(((self.bits >> 16) & 0xff) as u8)
36 }
37 #[doc = "Bits 24:31 - Compare Value for Touch-Sense TSIN\\[x\\]"]
38 #[inline(always)]
39 pub fn cmp_ts7(&self) -> CMP_TS7_R {
40 CMP_TS7_R::new(((self.bits >> 24) & 0xff) as u8)
41 }
42}
43impl W {
44 #[doc = "Bits 0:7 - Compare Value for Touch-Sense TSIN\\[x\\]"]
45 #[inline(always)]
46 pub fn cmp_ts4(&mut self) -> CMP_TS4_W<TSCMP1_SPEC> {
47 CMP_TS4_W::new(self, 0)
48 }
49 #[doc = "Bits 8:15 - Compare Value for Touch-Sense TSIN\\[x\\]"]
50 #[inline(always)]
51 pub fn cmp_ts5(&mut self) -> CMP_TS5_W<TSCMP1_SPEC> {
52 CMP_TS5_W::new(self, 8)
53 }
54 #[doc = "Bits 16:23 - Compare Value for Touch-Sense TSIN\\[x\\]"]
55 #[inline(always)]
56 pub fn cmp_ts6(&mut self) -> CMP_TS6_W<TSCMP1_SPEC> {
57 CMP_TS6_W::new(self, 16)
58 }
59 #[doc = "Bits 24:31 - Compare Value for Touch-Sense TSIN\\[x\\]"]
60 #[inline(always)]
61 pub fn cmp_ts7(&mut self) -> CMP_TS7_W<TSCMP1_SPEC> {
62 CMP_TS7_W::new(self, 24)
63 }
64}
65#[doc = "Touch-sense Compare Register 1\n\nYou can [`read`](crate::Reg::read) this register and get [`tscmp1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tscmp1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
66pub struct TSCMP1_SPEC;
67impl crate::RegisterSpec for TSCMP1_SPEC {
68 type Ux = u32;
69}
70#[doc = "`read()` method returns [`tscmp1::R`](R) reader structure"]
71impl crate::Readable for TSCMP1_SPEC {}
72#[doc = "`write(|w| ..)` method takes [`tscmp1::W`](W) writer structure"]
73impl crate::Writable for TSCMP1_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 TSCMP1 to value 0"]
79impl crate::Resettable for TSCMP1_SPEC {
80 const RESET_VALUE: u32 = 0;
81}