diff options
| author | Arne Dußin | 2021-11-06 11:50:33 +0100 |
|---|---|---|
| committer | Arne Dußin | 2021-11-06 11:50:33 +0100 |
| commit | 0666a6ba1dbd66cf8b93c113e362ccbcd99152a0 (patch) | |
| tree | a184284dbd2316f4624f092e4e7521ea8c90855b /src/ac/statusb.rs | |
| download | samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip | |
Initial commit
Diffstat (limited to 'src/ac/statusb.rs')
| -rw-r--r-- | src/ac/statusb.rs | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/src/ac/statusb.rs b/src/ac/statusb.rs new file mode 100644 index 0000000..c6baeb3 --- /dev/null +++ b/src/ac/statusb.rs @@ -0,0 +1,109 @@ +#[doc = "Register `STATUSB` reader"] +pub struct R(crate::R<STATUSB_SPEC>); +impl core::ops::Deref for R { + type Target = crate::R<STATUSB_SPEC>; + #[inline(always)] + fn deref(&self) -> &Self::Target { + &self.0 + } +} +impl From<crate::R<STATUSB_SPEC>> for R { + #[inline(always)] + fn from(reader: crate::R<STATUSB_SPEC>) -> Self { + R(reader) + } +} +#[doc = "Field `READY0` reader - Comparator 0 Ready"] +pub struct READY0_R(crate::FieldReader<bool, bool>); +impl READY0_R { + pub(crate) fn new(bits: bool) -> Self { + READY0_R(crate::FieldReader::new(bits)) + } +} +impl core::ops::Deref for READY0_R { + type Target = crate::FieldReader<bool, bool>; + #[inline(always)] + fn deref(&self) -> &Self::Target { + &self.0 + } +} +#[doc = "Field `READY1` reader - Comparator 1 Ready"] +pub struct READY1_R(crate::FieldReader<bool, bool>); +impl READY1_R { + pub(crate) fn new(bits: bool) -> Self { + READY1_R(crate::FieldReader::new(bits)) + } +} +impl core::ops::Deref for READY1_R { + type Target = crate::FieldReader<bool, bool>; + #[inline(always)] + fn deref(&self) -> &Self::Target { + &self.0 + } +} +#[doc = "Field `READY2` reader - Comparator 2 Ready"] +pub struct READY2_R(crate::FieldReader<bool, bool>); +impl READY2_R { + pub(crate) fn new(bits: bool) -> Self { + READY2_R(crate::FieldReader::new(bits)) + } +} +impl core::ops::Deref for READY2_R { + type Target = crate::FieldReader<bool, bool>; + #[inline(always)] + fn deref(&self) -> &Self::Target { + &self.0 + } +} +#[doc = "Field `READY3` reader - Comparator 3 Ready"] +pub struct READY3_R(crate::FieldReader<bool, bool>); +impl READY3_R { + pub(crate) fn new(bits: bool) -> Self { + READY3_R(crate::FieldReader::new(bits)) + } +} +impl core::ops::Deref for READY3_R { + type Target = crate::FieldReader<bool, bool>; + #[inline(always)] + fn deref(&self) -> &Self::Target { + &self.0 + } +} +impl R { + #[doc = "Bit 0 - Comparator 0 Ready"] + #[inline(always)] + pub fn ready0(&self) -> READY0_R { + READY0_R::new((self.bits & 0x01) != 0) + } + #[doc = "Bit 1 - Comparator 1 Ready"] + #[inline(always)] + pub fn ready1(&self) -> READY1_R { + READY1_R::new(((self.bits >> 1) & 0x01) != 0) + } + #[doc = "Bit 2 - Comparator 2 Ready"] + #[inline(always)] + pub fn ready2(&self) -> READY2_R { + READY2_R::new(((self.bits >> 2) & 0x01) != 0) + } + #[doc = "Bit 3 - Comparator 3 Ready"] + #[inline(always)] + pub fn ready3(&self) -> READY3_R { + READY3_R::new(((self.bits >> 3) & 0x01) != 0) + } +} +#[doc = "Status B\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 [statusb](index.html) module"] +pub struct STATUSB_SPEC; +impl crate::RegisterSpec for STATUSB_SPEC { + type Ux = u8; +} +#[doc = "`read()` method returns [statusb::R](R) reader structure"] +impl crate::Readable for STATUSB_SPEC { + type Reader = R; +} +#[doc = "`reset()` method sets STATUSB to value 0"] +impl crate::Resettable for STATUSB_SPEC { + #[inline(always)] + fn reset_value() -> Self::Ux { + 0 + } +} |
