#[doc = "Reader of register CCUCON"]
pub type R = crate::R<u32, super::CCUCON>;
#[doc = "Writer for register CCUCON"]
pub type W = crate::W<u32, super::CCUCON>;
#[doc = "Register CCUCON `reset()`'s with value 0"]
impl crate::ResetValue for super::CCUCON {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Global Start Control CCU40\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum GSC40_A {
#[doc = "0: Disable"]
VALUE1 = 0,
#[doc = "1: Enable"]
VALUE2 = 1,
}
impl From<GSC40_A> for bool {
#[inline(always)]
fn from(variant: GSC40_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `GSC40`"]
pub type GSC40_R = crate::R<bool, GSC40_A>;
impl GSC40_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> GSC40_A {
match self.bits {
false => GSC40_A::VALUE1,
true => GSC40_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
*self == GSC40_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
*self == GSC40_A::VALUE2
}
}
#[doc = "Write proxy for field `GSC40`"]
pub struct GSC40_W<'a> {
w: &'a mut W,
}
impl<'a> GSC40_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: GSC40_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(GSC40_A::VALUE1)
}
#[doc = "Enable"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(GSC40_A::VALUE2)
}
#[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) | ((value as u32) & 0x01);
self.w
}
}
#[doc = "Global Start Control CCU41\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum GSC41_A {
#[doc = "0: Disable"]
VALUE1 = 0,
#[doc = "1: Enable"]
VALUE2 = 1,
}
impl From<GSC41_A> for bool {
#[inline(always)]
fn from(variant: GSC41_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `GSC41`"]
pub type GSC41_R = crate::R<bool, GSC41_A>;
impl GSC41_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> GSC41_A {
match self.bits {
false => GSC41_A::VALUE1,
true => GSC41_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
*self == GSC41_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
*self == GSC41_A::VALUE2
}
}
#[doc = "Write proxy for field `GSC41`"]
pub struct GSC41_W<'a> {
w: &'a mut W,
}
impl<'a> GSC41_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: GSC41_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(GSC41_A::VALUE1)
}
#[doc = "Enable"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(GSC41_A::VALUE2)
}
#[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 << 1)) | (((value as u32) & 0x01) << 1);
self.w
}
}
#[doc = "Global Start Control CCU80\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum GSC80_A {
#[doc = "0: Disable"]
VALUE1 = 0,
#[doc = "1: Enable"]
VALUE2 = 1,
}
impl From<GSC80_A> for bool {
#[inline(always)]
fn from(variant: GSC80_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `GSC80`"]
pub type GSC80_R = crate::R<bool, GSC80_A>;
impl GSC80_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> GSC80_A {
match self.bits {
false => GSC80_A::VALUE1,
true => GSC80_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
*self == GSC80_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
*self == GSC80_A::VALUE2
}
}
#[doc = "Write proxy for field `GSC80`"]
pub struct GSC80_W<'a> {
w: &'a mut W,
}
impl<'a> GSC80_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: GSC80_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(GSC80_A::VALUE1)
}
#[doc = "Enable"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(GSC80_A::VALUE2)
}
#[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 << 8)) | (((value as u32) & 0x01) << 8);
self.w
}
}
#[doc = "Global Start Control HRPWM0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum GSHR0_A {
#[doc = "0: Disable"]
VALUE1 = 0,
#[doc = "1: Enable"]
VALUE2 = 1,
}
impl From<GSHR0_A> for bool {
#[inline(always)]
fn from(variant: GSHR0_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `GSHR0`"]
pub type GSHR0_R = crate::R<bool, GSHR0_A>;
impl GSHR0_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> GSHR0_A {
match self.bits {
false => GSHR0_A::VALUE1,
true => GSHR0_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
*self == GSHR0_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
*self == GSHR0_A::VALUE2
}
}
#[doc = "Write proxy for field `GSHR0`"]
pub struct GSHR0_W<'a> {
w: &'a mut W,
}
impl<'a> GSHR0_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: GSHR0_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(GSHR0_A::VALUE1)
}
#[doc = "Enable"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(GSHR0_A::VALUE2)
}
#[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 << 24)) | (((value as u32) & 0x01) << 24);
self.w
}
}
impl R {
#[doc = "Bit 0 - Global Start Control CCU40"]
#[inline(always)]
pub fn gsc40(&self) -> GSC40_R {
GSC40_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - Global Start Control CCU41"]
#[inline(always)]
pub fn gsc41(&self) -> GSC41_R {
GSC41_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 8 - Global Start Control CCU80"]
#[inline(always)]
pub fn gsc80(&self) -> GSC80_R {
GSC80_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 24 - Global Start Control HRPWM0"]
#[inline(always)]
pub fn gshr0(&self) -> GSHR0_R {
GSHR0_R::new(((self.bits >> 24) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Global Start Control CCU40"]
#[inline(always)]
pub fn gsc40(&mut self) -> GSC40_W {
GSC40_W { w: self }
}
#[doc = "Bit 1 - Global Start Control CCU41"]
#[inline(always)]
pub fn gsc41(&mut self) -> GSC41_W {
GSC41_W { w: self }
}
#[doc = "Bit 8 - Global Start Control CCU80"]
#[inline(always)]
pub fn gsc80(&mut self) -> GSC80_W {
GSC80_W { w: self }
}
#[doc = "Bit 24 - Global Start Control HRPWM0"]
#[inline(always)]
pub fn gshr0(&mut self) -> GSHR0_W {
GSHR0_W { w: self }
}
}