#[doc = "Register `BDTR` reader"]
pub struct R(crate::R<BDTR_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<BDTR_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<BDTR_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<BDTR_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `BDTR` writer"]
pub struct W(crate::W<BDTR_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<BDTR_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<BDTR_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<BDTR_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Main output enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum MOE_A {
#[doc = "0: OC/OCN are disabled or forced idle depending on OSSI"]
DISABLEDIDLE = 0,
#[doc = "1: OC/OCN are enabled if CCxE/CCxNE are set"]
ENABLED = 1,
}
impl From<MOE_A> for bool {
#[inline(always)]
fn from(variant: MOE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `MOE` reader - Main output enable"]
pub struct MOE_R(crate::FieldReader<bool, MOE_A>);
impl MOE_R {
pub(crate) fn new(bits: bool) -> Self {
MOE_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> MOE_A {
match self.bits {
false => MOE_A::DISABLEDIDLE,
true => MOE_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLEDIDLE`"]
#[inline(always)]
pub fn is_disabled_idle(&self) -> bool {
**self == MOE_A::DISABLEDIDLE
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == MOE_A::ENABLED
}
}
impl core::ops::Deref for MOE_R {
type Target = crate::FieldReader<bool, MOE_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `MOE` writer - Main output enable"]
pub struct MOE_W<'a> {
w: &'a mut W,
}
impl<'a> MOE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: MOE_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "OC/OCN are disabled or forced idle depending on OSSI"]
#[inline(always)]
pub fn disabled_idle(self) -> &'a mut W {
self.variant(MOE_A::DISABLEDIDLE)
}
#[doc = "OC/OCN are enabled if CCxE/CCxNE are set"]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(MOE_A::ENABLED)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 15)) | ((value as u32 & 0x01) << 15);
self.w
}
}
#[doc = "Field `AOE` reader - Automatic output enable"]
pub struct AOE_R(crate::FieldReader<bool, bool>);
impl AOE_R {
pub(crate) fn new(bits: bool) -> Self {
AOE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for AOE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `AOE` writer - Automatic output enable"]
pub struct AOE_W<'a> {
w: &'a mut W,
}
impl<'a> AOE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 14)) | ((value as u32 & 0x01) << 14);
self.w
}
}
#[doc = "Field `BKP` reader - Break polarity"]
pub struct BKP_R(crate::FieldReader<bool, bool>);
impl BKP_R {
pub(crate) fn new(bits: bool) -> Self {
BKP_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for BKP_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `BKP` writer - Break polarity"]
pub struct BKP_W<'a> {
w: &'a mut W,
}
impl<'a> BKP_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 13)) | ((value as u32 & 0x01) << 13);
self.w
}
}
#[doc = "Field `BKE` reader - Break enable"]
pub struct BKE_R(crate::FieldReader<bool, bool>);
impl BKE_R {
pub(crate) fn new(bits: bool) -> Self {
BKE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for BKE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `BKE` writer - Break enable"]
pub struct BKE_W<'a> {
w: &'a mut W,
}
impl<'a> BKE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 12)) | ((value as u32 & 0x01) << 12);
self.w
}
}
#[doc = "Off-state selection for Run mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OSSR_A {
#[doc = "0: When inactive, OC/OCN outputs are disabled"]
DISABLED = 0,
#[doc = "1: When inactive, OC/OCN outputs are enabled with their inactive level"]
IDLELEVEL = 1,
}
impl From<OSSR_A> for bool {
#[inline(always)]
fn from(variant: OSSR_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `OSSR` reader - Off-state selection for Run mode"]
pub struct OSSR_R(crate::FieldReader<bool, OSSR_A>);
impl OSSR_R {
pub(crate) fn new(bits: bool) -> Self {
OSSR_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OSSR_A {
match self.bits {
false => OSSR_A::DISABLED,
true => OSSR_A::IDLELEVEL,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == OSSR_A::DISABLED
}
#[doc = "Checks if the value of the field is `IDLELEVEL`"]
#[inline(always)]
pub fn is_idle_level(&self) -> bool {
**self == OSSR_A::IDLELEVEL
}
}
impl core::ops::Deref for OSSR_R {
type Target = crate::FieldReader<bool, OSSR_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `OSSR` writer - Off-state selection for Run mode"]
pub struct OSSR_W<'a> {
w: &'a mut W,
}
impl<'a> OSSR_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OSSR_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "When inactive, OC/OCN outputs are disabled"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(OSSR_A::DISABLED)
}
#[doc = "When inactive, OC/OCN outputs are enabled with their inactive level"]
#[inline(always)]
pub fn idle_level(self) -> &'a mut W {
self.variant(OSSR_A::IDLELEVEL)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 11)) | ((value as u32 & 0x01) << 11);
self.w
}
}
#[doc = "Off-state selection for Idle mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OSSI_A {
#[doc = "0: When inactive, OC/OCN outputs are disabled"]
DISABLED = 0,
#[doc = "1: When inactive, OC/OCN outputs are forced to idle level"]
IDLELEVEL = 1,
}
impl From<OSSI_A> for bool {
#[inline(always)]
fn from(variant: OSSI_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `OSSI` reader - Off-state selection for Idle mode"]
pub struct OSSI_R(crate::FieldReader<bool, OSSI_A>);
impl OSSI_R {
pub(crate) fn new(bits: bool) -> Self {
OSSI_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OSSI_A {
match self.bits {
false => OSSI_A::DISABLED,
true => OSSI_A::IDLELEVEL,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == OSSI_A::DISABLED
}
#[doc = "Checks if the value of the field is `IDLELEVEL`"]
#[inline(always)]
pub fn is_idle_level(&self) -> bool {
**self == OSSI_A::IDLELEVEL
}
}
impl core::ops::Deref for OSSI_R {
type Target = crate::FieldReader<bool, OSSI_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `OSSI` writer - Off-state selection for Idle mode"]
pub struct OSSI_W<'a> {
w: &'a mut W,
}
impl<'a> OSSI_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OSSI_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "When inactive, OC/OCN outputs are disabled"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(OSSI_A::DISABLED)
}
#[doc = "When inactive, OC/OCN outputs are forced to idle level"]
#[inline(always)]
pub fn idle_level(self) -> &'a mut W {
self.variant(OSSI_A::IDLELEVEL)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 10)) | ((value as u32 & 0x01) << 10);
self.w
}
}
#[doc = "Field `LOCK` reader - Lock configuration"]
pub struct LOCK_R(crate::FieldReader<u8, u8>);
impl LOCK_R {
pub(crate) fn new(bits: u8) -> Self {
LOCK_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for LOCK_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `LOCK` writer - Lock configuration"]
pub struct LOCK_W<'a> {
w: &'a mut W,
}
impl<'a> LOCK_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 8)) | ((value as u32 & 0x03) << 8);
self.w
}
}
#[doc = "Field `DTG` reader - Dead-time generator setup"]
pub struct DTG_R(crate::FieldReader<u8, u8>);
impl DTG_R {
pub(crate) fn new(bits: u8) -> Self {
DTG_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for DTG_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `DTG` writer - Dead-time generator setup"]
pub struct DTG_W<'a> {
w: &'a mut W,
}
impl<'a> DTG_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0xff) | (value as u32 & 0xff);
self.w
}
}
impl R {
#[doc = "Bit 15 - Main output enable"]
#[inline(always)]
pub fn moe(&self) -> MOE_R {
MOE_R::new(((self.bits >> 15) & 0x01) != 0)
}
#[doc = "Bit 14 - Automatic output enable"]
#[inline(always)]
pub fn aoe(&self) -> AOE_R {
AOE_R::new(((self.bits >> 14) & 0x01) != 0)
}
#[doc = "Bit 13 - Break polarity"]
#[inline(always)]
pub fn bkp(&self) -> BKP_R {
BKP_R::new(((self.bits >> 13) & 0x01) != 0)
}
#[doc = "Bit 12 - Break enable"]
#[inline(always)]
pub fn bke(&self) -> BKE_R {
BKE_R::new(((self.bits >> 12) & 0x01) != 0)
}
#[doc = "Bit 11 - Off-state selection for Run mode"]
#[inline(always)]
pub fn ossr(&self) -> OSSR_R {
OSSR_R::new(((self.bits >> 11) & 0x01) != 0)
}
#[doc = "Bit 10 - Off-state selection for Idle mode"]
#[inline(always)]
pub fn ossi(&self) -> OSSI_R {
OSSI_R::new(((self.bits >> 10) & 0x01) != 0)
}
#[doc = "Bits 8:9 - Lock configuration"]
#[inline(always)]
pub fn lock(&self) -> LOCK_R {
LOCK_R::new(((self.bits >> 8) & 0x03) as u8)
}
#[doc = "Bits 0:7 - Dead-time generator setup"]
#[inline(always)]
pub fn dtg(&self) -> DTG_R {
DTG_R::new((self.bits & 0xff) as u8)
}
}
impl W {
#[doc = "Bit 15 - Main output enable"]
#[inline(always)]
pub fn moe(&mut self) -> MOE_W {
MOE_W { w: self }
}
#[doc = "Bit 14 - Automatic output enable"]
#[inline(always)]
pub fn aoe(&mut self) -> AOE_W {
AOE_W { w: self }
}
#[doc = "Bit 13 - Break polarity"]
#[inline(always)]
pub fn bkp(&mut self) -> BKP_W {
BKP_W { w: self }
}
#[doc = "Bit 12 - Break enable"]
#[inline(always)]
pub fn bke(&mut self) -> BKE_W {
BKE_W { w: self }
}
#[doc = "Bit 11 - Off-state selection for Run mode"]
#[inline(always)]
pub fn ossr(&mut self) -> OSSR_W {
OSSR_W { w: self }
}
#[doc = "Bit 10 - Off-state selection for Idle mode"]
#[inline(always)]
pub fn ossi(&mut self) -> OSSI_W {
OSSI_W { w: self }
}
#[doc = "Bits 8:9 - Lock configuration"]
#[inline(always)]
pub fn lock(&mut self) -> LOCK_W {
LOCK_W { w: self }
}
#[doc = "Bits 0:7 - Dead-time generator setup"]
#[inline(always)]
pub fn dtg(&mut self) -> DTG_W {
DTG_W { w: self }
}
#[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 = "break and dead-time register\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 [bdtr](index.html) module"]
pub struct BDTR_SPEC;
impl crate::RegisterSpec for BDTR_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [bdtr::R](R) reader structure"]
impl crate::Readable for BDTR_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [bdtr::W](W) writer structure"]
impl crate::Writable for BDTR_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets BDTR to value 0"]
impl crate::Resettable for BDTR_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}