summaryrefslogtreecommitdiff
path: root/src/port/group/out.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/port/group/out.rs')
-rw-r--r--src/port/group/out.rs64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/port/group/out.rs b/src/port/group/out.rs
new file mode 100644
index 0000000..092e8db
--- /dev/null
+++ b/src/port/group/out.rs
@@ -0,0 +1,64 @@
+#[doc = "Register `OUT` reader"]
+pub struct R(crate::R<OUT_SPEC>);
+impl core::ops::Deref for R {
+ type Target = crate::R<OUT_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl From<crate::R<OUT_SPEC>> for R {
+ #[inline(always)]
+ fn from(reader: crate::R<OUT_SPEC>) -> Self {
+ R(reader)
+ }
+}
+#[doc = "Register `OUT` writer"]
+pub struct W(crate::W<OUT_SPEC>);
+impl core::ops::Deref for W {
+ type Target = crate::W<OUT_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl core::ops::DerefMut for W {
+ #[inline(always)]
+ fn deref_mut(&mut self) -> &mut Self::Target {
+ &mut self.0
+ }
+}
+impl From<crate::W<OUT_SPEC>> for W {
+ #[inline(always)]
+ fn from(writer: crate::W<OUT_SPEC>) -> Self {
+ W(writer)
+ }
+}
+impl W {
+ #[doc = "Writes raw bits to the register."]
+ #[inline(always)]
+ pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
+ self.0.bits(bits);
+ self
+ }
+}
+#[doc = "Data Output Value\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [out](index.html) module"]
+pub struct OUT_SPEC;
+impl crate::RegisterSpec for OUT_SPEC {
+ type Ux = u32;
+}
+#[doc = "`read()` method returns [out::R](R) reader structure"]
+impl crate::Readable for OUT_SPEC {
+ type Reader = R;
+}
+#[doc = "`write(|w| ..)` method takes [out::W](W) writer structure"]
+impl crate::Writable for OUT_SPEC {
+ type Writer = W;
+}
+#[doc = "`reset()` method sets OUT to value 0"]
+impl crate::Resettable for OUT_SPEC {
+ #[inline(always)]
+ fn reset_value() -> Self::Ux {
+ 0
+ }
+}