summaryrefslogtreecommitdiff
path: root/src/dsu/cid1.rs
diff options
context:
space:
mode:
authorArne Dußin2021-11-06 11:50:33 +0100
committerArne Dußin2021-11-06 11:50:33 +0100
commit0666a6ba1dbd66cf8b93c113e362ccbcd99152a0 (patch)
treea184284dbd2316f4624f092e4e7521ea8c90855b /src/dsu/cid1.rs
downloadsamc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz
samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip
Initial commit
Diffstat (limited to 'src/dsu/cid1.rs')
-rw-r--r--src/dsu/cid1.rs71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/dsu/cid1.rs b/src/dsu/cid1.rs
new file mode 100644
index 0000000..222843d
--- /dev/null
+++ b/src/dsu/cid1.rs
@@ -0,0 +1,71 @@
+#[doc = "Register `CID1` reader"]
+pub struct R(crate::R<CID1_SPEC>);
+impl core::ops::Deref for R {
+ type Target = crate::R<CID1_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl From<crate::R<CID1_SPEC>> for R {
+ #[inline(always)]
+ fn from(reader: crate::R<CID1_SPEC>) -> Self {
+ R(reader)
+ }
+}
+#[doc = "Field `PREAMBLE` reader - Preamble"]
+pub struct PREAMBLE_R(crate::FieldReader<u8, u8>);
+impl PREAMBLE_R {
+ pub(crate) fn new(bits: u8) -> Self {
+ PREAMBLE_R(crate::FieldReader::new(bits))
+ }
+}
+impl core::ops::Deref for PREAMBLE_R {
+ type Target = crate::FieldReader<u8, u8>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+#[doc = "Field `CCLASS` reader - Component Class"]
+pub struct CCLASS_R(crate::FieldReader<u8, u8>);
+impl CCLASS_R {
+ pub(crate) fn new(bits: u8) -> Self {
+ CCLASS_R(crate::FieldReader::new(bits))
+ }
+}
+impl core::ops::Deref for CCLASS_R {
+ type Target = crate::FieldReader<u8, u8>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl R {
+ #[doc = "Bits 0:3 - Preamble"]
+ #[inline(always)]
+ pub fn preamble(&self) -> PREAMBLE_R {
+ PREAMBLE_R::new((self.bits & 0x0f) as u8)
+ }
+ #[doc = "Bits 4:7 - Component Class"]
+ #[inline(always)]
+ pub fn cclass(&self) -> CCLASS_R {
+ CCLASS_R::new(((self.bits >> 4) & 0x0f) as u8)
+ }
+}
+#[doc = "Component Identification 1\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [cid1](index.html) module"]
+pub struct CID1_SPEC;
+impl crate::RegisterSpec for CID1_SPEC {
+ type Ux = u32;
+}
+#[doc = "`read()` method returns [cid1::R](R) reader structure"]
+impl crate::Readable for CID1_SPEC {
+ type Reader = R;
+}
+#[doc = "`reset()` method sets CID1 to value 0x10"]
+impl crate::Resettable for CID1_SPEC {
+ #[inline(always)]
+ fn reset_value() -> Self::Ux {
+ 0x10
+ }
+}