summaryrefslogtreecommitdiff
path: root/src/port/group/dirclr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/port/group/dirclr.rs')
-rw-r--r--src/port/group/dirclr.rs64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/port/group/dirclr.rs b/src/port/group/dirclr.rs
new file mode 100644
index 0000000..5e6d73d
--- /dev/null
+++ b/src/port/group/dirclr.rs
@@ -0,0 +1,64 @@
+#[doc = "Register `DIRCLR` reader"]
+pub struct R(crate::R<DIRCLR_SPEC>);
+impl core::ops::Deref for R {
+ type Target = crate::R<DIRCLR_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl From<crate::R<DIRCLR_SPEC>> for R {
+ #[inline(always)]
+ fn from(reader: crate::R<DIRCLR_SPEC>) -> Self {
+ R(reader)
+ }
+}
+#[doc = "Register `DIRCLR` writer"]
+pub struct W(crate::W<DIRCLR_SPEC>);
+impl core::ops::Deref for W {
+ type Target = crate::W<DIRCLR_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<DIRCLR_SPEC>> for W {
+ #[inline(always)]
+ fn from(writer: crate::W<DIRCLR_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 Direction Clear\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 [dirclr](index.html) module"]
+pub struct DIRCLR_SPEC;
+impl crate::RegisterSpec for DIRCLR_SPEC {
+ type Ux = u32;
+}
+#[doc = "`read()` method returns [dirclr::R](R) reader structure"]
+impl crate::Readable for DIRCLR_SPEC {
+ type Reader = R;
+}
+#[doc = "`write(|w| ..)` method takes [dirclr::W](W) writer structure"]
+impl crate::Writable for DIRCLR_SPEC {
+ type Writer = W;
+}
+#[doc = "`reset()` method sets DIRCLR to value 0"]
+impl crate::Resettable for DIRCLR_SPEC {
+ #[inline(always)]
+ fn reset_value() -> Self::Ux {
+ 0
+ }
+}