atsamd11c/sercom0/i2cm/
ctrlb.rs
#[doc = "Register `CTRLB` reader"]
pub type R = crate::R<CtrlbSpec>;
#[doc = "Register `CTRLB` writer"]
pub type W = crate::W<CtrlbSpec>;
#[doc = "Field `SMEN` reader - Smart Mode Enable"]
pub type SmenR = crate::BitReader;
#[doc = "Field `SMEN` writer - Smart Mode Enable"]
pub type SmenW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `QCEN` reader - Quick Command Enable"]
pub type QcenR = crate::BitReader;
#[doc = "Field `QCEN` writer - Quick Command Enable"]
pub type QcenW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CMD` writer - Command"]
pub type CmdW<'a, REG> = crate::FieldWriter<'a, REG, 2>;
#[doc = "Field `ACKACT` reader - Acknowledge Action"]
pub type AckactR = crate::BitReader;
#[doc = "Field `ACKACT` writer - Acknowledge Action"]
pub type AckactW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[doc = "Bit 8 - Smart Mode Enable"]
#[inline(always)]
pub fn smen(&self) -> SmenR {
SmenR::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bit 9 - Quick Command Enable"]
#[inline(always)]
pub fn qcen(&self) -> QcenR {
QcenR::new(((self.bits >> 9) & 1) != 0)
}
#[doc = "Bit 18 - Acknowledge Action"]
#[inline(always)]
pub fn ackact(&self) -> AckactR {
AckactR::new(((self.bits >> 18) & 1) != 0)
}
}
impl W {
#[doc = "Bit 8 - Smart Mode Enable"]
#[inline(always)]
#[must_use]
pub fn smen(&mut self) -> SmenW<CtrlbSpec> {
SmenW::new(self, 8)
}
#[doc = "Bit 9 - Quick Command Enable"]
#[inline(always)]
#[must_use]
pub fn qcen(&mut self) -> QcenW<CtrlbSpec> {
QcenW::new(self, 9)
}
#[doc = "Bits 16:17 - Command"]
#[inline(always)]
#[must_use]
pub fn cmd(&mut self) -> CmdW<CtrlbSpec> {
CmdW::new(self, 16)
}
#[doc = "Bit 18 - Acknowledge Action"]
#[inline(always)]
#[must_use]
pub fn ackact(&mut self) -> AckactW<CtrlbSpec> {
AckactW::new(self, 18)
}
}
#[doc = "I2CM Control B\n\nYou can [`read`](crate::Reg::read) this register and get [`ctrlb::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ctrlb::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CtrlbSpec;
impl crate::RegisterSpec for CtrlbSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`ctrlb::R`](R) reader structure"]
impl crate::Readable for CtrlbSpec {}
#[doc = "`write(|w| ..)` method takes [`ctrlb::W`](W) writer structure"]
impl crate::Writable for CtrlbSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets CTRLB to value 0"]
impl crate::Resettable for CtrlbSpec {
const RESET_VALUE: u32 = 0;
}