#[doc = "Register `CMC` reader"]
pub struct R(crate::R<CMC_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<CMC_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<CMC_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<CMC_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `CMC` writer"]
pub struct W(crate::W<CMC_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<CMC_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<CMC_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<CMC_SPEC>) -> Self {
W(writer)
}
}
#[doc = "External Start Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum STRTS_A {
#[doc = "0: External Start Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Start Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Start Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Start Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<STRTS_A> for u8 {
#[inline(always)]
fn from(variant: STRTS_A) -> Self {
variant as _
}
}
#[doc = "Field `STRTS` reader - External Start Functionality Selector"]
pub struct STRTS_R(crate::FieldReader<u8, STRTS_A>);
impl STRTS_R {
pub(crate) fn new(bits: u8) -> Self {
STRTS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> STRTS_A {
match self.bits {
0 => STRTS_A::VALUE1,
1 => STRTS_A::VALUE2,
2 => STRTS_A::VALUE3,
3 => STRTS_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == STRTS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == STRTS_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == STRTS_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == STRTS_A::VALUE4
}
}
impl core::ops::Deref for STRTS_R {
type Target = crate::FieldReader<u8, STRTS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `STRTS` writer - External Start Functionality Selector"]
pub struct STRTS_W<'a> {
w: &'a mut W,
}
impl<'a> STRTS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: STRTS_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Start Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(STRTS_A::VALUE1)
}
#[doc = "External Start Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(STRTS_A::VALUE2)
}
#[doc = "External Start Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(STRTS_A::VALUE3)
}
#[doc = "External Start Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(STRTS_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0x03) | (value as u32 & 0x03);
self.w
}
}
#[doc = "External Stop Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ENDS_A {
#[doc = "0: External Stop Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Stop Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Stop Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Stop Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<ENDS_A> for u8 {
#[inline(always)]
fn from(variant: ENDS_A) -> Self {
variant as _
}
}
#[doc = "Field `ENDS` reader - External Stop Functionality Selector"]
pub struct ENDS_R(crate::FieldReader<u8, ENDS_A>);
impl ENDS_R {
pub(crate) fn new(bits: u8) -> Self {
ENDS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ENDS_A {
match self.bits {
0 => ENDS_A::VALUE1,
1 => ENDS_A::VALUE2,
2 => ENDS_A::VALUE3,
3 => ENDS_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == ENDS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == ENDS_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == ENDS_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == ENDS_A::VALUE4
}
}
impl core::ops::Deref for ENDS_R {
type Target = crate::FieldReader<u8, ENDS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ENDS` writer - External Stop Functionality Selector"]
pub struct ENDS_W<'a> {
w: &'a mut W,
}
impl<'a> ENDS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ENDS_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Stop Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(ENDS_A::VALUE1)
}
#[doc = "External Stop Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(ENDS_A::VALUE2)
}
#[doc = "External Stop Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(ENDS_A::VALUE3)
}
#[doc = "External Stop Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(ENDS_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 2)) | ((value as u32 & 0x03) << 2);
self.w
}
}
#[doc = "External Capture 0 Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum CAP0S_A {
#[doc = "0: External Capture 0 Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Capture 0 Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Capture 0 Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Capture 0 Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<CAP0S_A> for u8 {
#[inline(always)]
fn from(variant: CAP0S_A) -> Self {
variant as _
}
}
#[doc = "Field `CAP0S` reader - External Capture 0 Functionality Selector"]
pub struct CAP0S_R(crate::FieldReader<u8, CAP0S_A>);
impl CAP0S_R {
pub(crate) fn new(bits: u8) -> Self {
CAP0S_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> CAP0S_A {
match self.bits {
0 => CAP0S_A::VALUE1,
1 => CAP0S_A::VALUE2,
2 => CAP0S_A::VALUE3,
3 => CAP0S_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == CAP0S_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == CAP0S_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == CAP0S_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == CAP0S_A::VALUE4
}
}
impl core::ops::Deref for CAP0S_R {
type Target = crate::FieldReader<u8, CAP0S_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CAP0S` writer - External Capture 0 Functionality Selector"]
pub struct CAP0S_W<'a> {
w: &'a mut W,
}
impl<'a> CAP0S_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CAP0S_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Capture 0 Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(CAP0S_A::VALUE1)
}
#[doc = "External Capture 0 Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(CAP0S_A::VALUE2)
}
#[doc = "External Capture 0 Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(CAP0S_A::VALUE3)
}
#[doc = "External Capture 0 Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(CAP0S_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 4)) | ((value as u32 & 0x03) << 4);
self.w
}
}
#[doc = "External Capture 1 Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum CAP1S_A {
#[doc = "0: External Capture 1 Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Capture 1 Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Capture 1 Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Capture 1 Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<CAP1S_A> for u8 {
#[inline(always)]
fn from(variant: CAP1S_A) -> Self {
variant as _
}
}
#[doc = "Field `CAP1S` reader - External Capture 1 Functionality Selector"]
pub struct CAP1S_R(crate::FieldReader<u8, CAP1S_A>);
impl CAP1S_R {
pub(crate) fn new(bits: u8) -> Self {
CAP1S_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> CAP1S_A {
match self.bits {
0 => CAP1S_A::VALUE1,
1 => CAP1S_A::VALUE2,
2 => CAP1S_A::VALUE3,
3 => CAP1S_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == CAP1S_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == CAP1S_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == CAP1S_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == CAP1S_A::VALUE4
}
}
impl core::ops::Deref for CAP1S_R {
type Target = crate::FieldReader<u8, CAP1S_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CAP1S` writer - External Capture 1 Functionality Selector"]
pub struct CAP1S_W<'a> {
w: &'a mut W,
}
impl<'a> CAP1S_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CAP1S_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Capture 1 Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(CAP1S_A::VALUE1)
}
#[doc = "External Capture 1 Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(CAP1S_A::VALUE2)
}
#[doc = "External Capture 1 Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(CAP1S_A::VALUE3)
}
#[doc = "External Capture 1 Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(CAP1S_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 6)) | ((value as u32 & 0x03) << 6);
self.w
}
}
#[doc = "External Gate Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum GATES_A {
#[doc = "0: External Gating Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Gating Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Gating Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Gating Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<GATES_A> for u8 {
#[inline(always)]
fn from(variant: GATES_A) -> Self {
variant as _
}
}
#[doc = "Field `GATES` reader - External Gate Functionality Selector"]
pub struct GATES_R(crate::FieldReader<u8, GATES_A>);
impl GATES_R {
pub(crate) fn new(bits: u8) -> Self {
GATES_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> GATES_A {
match self.bits {
0 => GATES_A::VALUE1,
1 => GATES_A::VALUE2,
2 => GATES_A::VALUE3,
3 => GATES_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == GATES_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == GATES_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == GATES_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == GATES_A::VALUE4
}
}
impl core::ops::Deref for GATES_R {
type Target = crate::FieldReader<u8, GATES_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `GATES` writer - External Gate Functionality Selector"]
pub struct GATES_W<'a> {
w: &'a mut W,
}
impl<'a> GATES_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: GATES_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Gating Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(GATES_A::VALUE1)
}
#[doc = "External Gating Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(GATES_A::VALUE2)
}
#[doc = "External Gating Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(GATES_A::VALUE3)
}
#[doc = "External Gating Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(GATES_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 8)) | ((value as u32 & 0x03) << 8);
self.w
}
}
#[doc = "External Up/Down Functionality Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum UDS_A {
#[doc = "0: External Up/Down Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Up/Down Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Up/Down Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Up/Down Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<UDS_A> for u8 {
#[inline(always)]
fn from(variant: UDS_A) -> Self {
variant as _
}
}
#[doc = "Field `UDS` reader - External Up/Down Functionality Selector"]
pub struct UDS_R(crate::FieldReader<u8, UDS_A>);
impl UDS_R {
pub(crate) fn new(bits: u8) -> Self {
UDS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> UDS_A {
match self.bits {
0 => UDS_A::VALUE1,
1 => UDS_A::VALUE2,
2 => UDS_A::VALUE3,
3 => UDS_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == UDS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == UDS_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == UDS_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == UDS_A::VALUE4
}
}
impl core::ops::Deref for UDS_R {
type Target = crate::FieldReader<u8, UDS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `UDS` writer - External Up/Down Functionality Selector"]
pub struct UDS_W<'a> {
w: &'a mut W,
}
impl<'a> UDS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: UDS_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Up/Down Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(UDS_A::VALUE1)
}
#[doc = "External Up/Down Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(UDS_A::VALUE2)
}
#[doc = "External Up/Down Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(UDS_A::VALUE3)
}
#[doc = "External Up/Down Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(UDS_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 10)) | ((value as u32 & 0x03) << 10);
self.w
}
}
#[doc = "Field `LDS` reader - External Timer Load Functionality Selector"]
pub struct LDS_R(crate::FieldReader<u8, u8>);
impl LDS_R {
pub(crate) fn new(bits: u8) -> Self {
LDS_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for LDS_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `LDS` writer - External Timer Load Functionality Selector"]
pub struct LDS_W<'a> {
w: &'a mut W,
}
impl<'a> LDS_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 << 12)) | ((value as u32 & 0x03) << 12);
self.w
}
}
#[doc = "External Count Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum CNTS_A {
#[doc = "0: External Count Function deactivated"]
VALUE1 = 0,
#[doc = "1: External Count Function triggered by Event 0"]
VALUE2 = 1,
#[doc = "2: External Count Function triggered by Event 1"]
VALUE3 = 2,
#[doc = "3: External Count Function triggered by Event 2"]
VALUE4 = 3,
}
impl From<CNTS_A> for u8 {
#[inline(always)]
fn from(variant: CNTS_A) -> Self {
variant as _
}
}
#[doc = "Field `CNTS` reader - External Count Selector"]
pub struct CNTS_R(crate::FieldReader<u8, CNTS_A>);
impl CNTS_R {
pub(crate) fn new(bits: u8) -> Self {
CNTS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> CNTS_A {
match self.bits {
0 => CNTS_A::VALUE1,
1 => CNTS_A::VALUE2,
2 => CNTS_A::VALUE3,
3 => CNTS_A::VALUE4,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == CNTS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == CNTS_A::VALUE2
}
#[doc = "Checks if the value of the field is `VALUE3`"]
#[inline(always)]
pub fn is_value3(&self) -> bool {
**self == CNTS_A::VALUE3
}
#[doc = "Checks if the value of the field is `VALUE4`"]
#[inline(always)]
pub fn is_value4(&self) -> bool {
**self == CNTS_A::VALUE4
}
}
impl core::ops::Deref for CNTS_R {
type Target = crate::FieldReader<u8, CNTS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CNTS` writer - External Count Selector"]
pub struct CNTS_W<'a> {
w: &'a mut W,
}
impl<'a> CNTS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CNTS_A) -> &'a mut W {
self.bits(variant.into())
}
#[doc = "External Count Function deactivated"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(CNTS_A::VALUE1)
}
#[doc = "External Count Function triggered by Event 0"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(CNTS_A::VALUE2)
}
#[doc = "External Count Function triggered by Event 1"]
#[inline(always)]
pub fn value3(self) -> &'a mut W {
self.variant(CNTS_A::VALUE3)
}
#[doc = "External Count Function triggered by Event 2"]
#[inline(always)]
pub fn value4(self) -> &'a mut W {
self.variant(CNTS_A::VALUE4)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 14)) | ((value as u32 & 0x03) << 14);
self.w
}
}
#[doc = "Override Function Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OFS_A {
#[doc = "0: Override functionality disabled"]
VALUE1 = 0,
#[doc = "1: Status bit trigger override connected to Event 1; Status bit value override connected to Event 2"]
VALUE2 = 1,
}
impl From<OFS_A> for bool {
#[inline(always)]
fn from(variant: OFS_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `OFS` reader - Override Function Selector"]
pub struct OFS_R(crate::FieldReader<bool, OFS_A>);
impl OFS_R {
pub(crate) fn new(bits: bool) -> Self {
OFS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OFS_A {
match self.bits {
false => OFS_A::VALUE1,
true => OFS_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == OFS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == OFS_A::VALUE2
}
}
impl core::ops::Deref for OFS_R {
type Target = crate::FieldReader<bool, OFS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `OFS` writer - Override Function Selector"]
pub struct OFS_W<'a> {
w: &'a mut W,
}
impl<'a> OFS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OFS_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Override functionality disabled"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(OFS_A::VALUE1)
}
#[doc = "Status bit trigger override connected to Event 1; Status bit value override connected to Event 2"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(OFS_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 << 16)) | ((value as u32 & 0x01) << 16);
self.w
}
}
#[doc = "Trap Function Selector\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TS_A {
#[doc = "0: Trap function disabled"]
VALUE1 = 0,
#[doc = "1: TRAP function connected to Event 2"]
VALUE2 = 1,
}
impl From<TS_A> for bool {
#[inline(always)]
fn from(variant: TS_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `TS` reader - Trap Function Selector"]
pub struct TS_R(crate::FieldReader<bool, TS_A>);
impl TS_R {
pub(crate) fn new(bits: bool) -> Self {
TS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TS_A {
match self.bits {
false => TS_A::VALUE1,
true => TS_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == TS_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == TS_A::VALUE2
}
}
impl core::ops::Deref for TS_R {
type Target = crate::FieldReader<bool, TS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TS` writer - Trap Function Selector"]
pub struct TS_W<'a> {
w: &'a mut W,
}
impl<'a> TS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: TS_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Trap function disabled"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(TS_A::VALUE1)
}
#[doc = "TRAP function connected to Event 2"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(TS_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 << 17)) | ((value as u32 & 0x01) << 17);
self.w
}
}
#[doc = "Field `MOS` reader - External Modulation Functionality Selector"]
pub struct MOS_R(crate::FieldReader<u8, u8>);
impl MOS_R {
pub(crate) fn new(bits: u8) -> Self {
MOS_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for MOS_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `MOS` writer - External Modulation Functionality Selector"]
pub struct MOS_W<'a> {
w: &'a mut W,
}
impl<'a> MOS_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 << 18)) | ((value as u32 & 0x03) << 18);
self.w
}
}
#[doc = "Timer Concatenation Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TCE_A {
#[doc = "0: Timer concatenation is disabled"]
VALUE1 = 0,
#[doc = "1: Timer concatenation is enabled"]
VALUE2 = 1,
}
impl From<TCE_A> for bool {
#[inline(always)]
fn from(variant: TCE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `TCE` reader - Timer Concatenation Enable"]
pub struct TCE_R(crate::FieldReader<bool, TCE_A>);
impl TCE_R {
pub(crate) fn new(bits: bool) -> Self {
TCE_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TCE_A {
match self.bits {
false => TCE_A::VALUE1,
true => TCE_A::VALUE2,
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
**self == TCE_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
**self == TCE_A::VALUE2
}
}
impl core::ops::Deref for TCE_R {
type Target = crate::FieldReader<bool, TCE_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TCE` writer - Timer Concatenation Enable"]
pub struct TCE_W<'a> {
w: &'a mut W,
}
impl<'a> TCE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: TCE_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Timer concatenation is disabled"]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(TCE_A::VALUE1)
}
#[doc = "Timer concatenation is enabled"]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(TCE_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 << 20)) | ((value as u32 & 0x01) << 20);
self.w
}
}
impl R {
#[doc = "Bits 0:1 - External Start Functionality Selector"]
#[inline(always)]
pub fn strts(&self) -> STRTS_R {
STRTS_R::new((self.bits & 0x03) as u8)
}
#[doc = "Bits 2:3 - External Stop Functionality Selector"]
#[inline(always)]
pub fn ends(&self) -> ENDS_R {
ENDS_R::new(((self.bits >> 2) & 0x03) as u8)
}
#[doc = "Bits 4:5 - External Capture 0 Functionality Selector"]
#[inline(always)]
pub fn cap0s(&self) -> CAP0S_R {
CAP0S_R::new(((self.bits >> 4) & 0x03) as u8)
}
#[doc = "Bits 6:7 - External Capture 1 Functionality Selector"]
#[inline(always)]
pub fn cap1s(&self) -> CAP1S_R {
CAP1S_R::new(((self.bits >> 6) & 0x03) as u8)
}
#[doc = "Bits 8:9 - External Gate Functionality Selector"]
#[inline(always)]
pub fn gates(&self) -> GATES_R {
GATES_R::new(((self.bits >> 8) & 0x03) as u8)
}
#[doc = "Bits 10:11 - External Up/Down Functionality Selector"]
#[inline(always)]
pub fn uds(&self) -> UDS_R {
UDS_R::new(((self.bits >> 10) & 0x03) as u8)
}
#[doc = "Bits 12:13 - External Timer Load Functionality Selector"]
#[inline(always)]
pub fn lds(&self) -> LDS_R {
LDS_R::new(((self.bits >> 12) & 0x03) as u8)
}
#[doc = "Bits 14:15 - External Count Selector"]
#[inline(always)]
pub fn cnts(&self) -> CNTS_R {
CNTS_R::new(((self.bits >> 14) & 0x03) as u8)
}
#[doc = "Bit 16 - Override Function Selector"]
#[inline(always)]
pub fn ofs(&self) -> OFS_R {
OFS_R::new(((self.bits >> 16) & 0x01) != 0)
}
#[doc = "Bit 17 - Trap Function Selector"]
#[inline(always)]
pub fn ts(&self) -> TS_R {
TS_R::new(((self.bits >> 17) & 0x01) != 0)
}
#[doc = "Bits 18:19 - External Modulation Functionality Selector"]
#[inline(always)]
pub fn mos(&self) -> MOS_R {
MOS_R::new(((self.bits >> 18) & 0x03) as u8)
}
#[doc = "Bit 20 - Timer Concatenation Enable"]
#[inline(always)]
pub fn tce(&self) -> TCE_R {
TCE_R::new(((self.bits >> 20) & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 0:1 - External Start Functionality Selector"]
#[inline(always)]
pub fn strts(&mut self) -> STRTS_W {
STRTS_W { w: self }
}
#[doc = "Bits 2:3 - External Stop Functionality Selector"]
#[inline(always)]
pub fn ends(&mut self) -> ENDS_W {
ENDS_W { w: self }
}
#[doc = "Bits 4:5 - External Capture 0 Functionality Selector"]
#[inline(always)]
pub fn cap0s(&mut self) -> CAP0S_W {
CAP0S_W { w: self }
}
#[doc = "Bits 6:7 - External Capture 1 Functionality Selector"]
#[inline(always)]
pub fn cap1s(&mut self) -> CAP1S_W {
CAP1S_W { w: self }
}
#[doc = "Bits 8:9 - External Gate Functionality Selector"]
#[inline(always)]
pub fn gates(&mut self) -> GATES_W {
GATES_W { w: self }
}
#[doc = "Bits 10:11 - External Up/Down Functionality Selector"]
#[inline(always)]
pub fn uds(&mut self) -> UDS_W {
UDS_W { w: self }
}
#[doc = "Bits 12:13 - External Timer Load Functionality Selector"]
#[inline(always)]
pub fn lds(&mut self) -> LDS_W {
LDS_W { w: self }
}
#[doc = "Bits 14:15 - External Count Selector"]
#[inline(always)]
pub fn cnts(&mut self) -> CNTS_W {
CNTS_W { w: self }
}
#[doc = "Bit 16 - Override Function Selector"]
#[inline(always)]
pub fn ofs(&mut self) -> OFS_W {
OFS_W { w: self }
}
#[doc = "Bit 17 - Trap Function Selector"]
#[inline(always)]
pub fn ts(&mut self) -> TS_W {
TS_W { w: self }
}
#[doc = "Bits 18:19 - External Modulation Functionality Selector"]
#[inline(always)]
pub fn mos(&mut self) -> MOS_W {
MOS_W { w: self }
}
#[doc = "Bit 20 - Timer Concatenation Enable"]
#[inline(always)]
pub fn tce(&mut self) -> TCE_W {
TCE_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 = "Connection Matrix Control\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 [cmc](index.html) module"]
pub struct CMC_SPEC;
impl crate::RegisterSpec for CMC_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [cmc::R](R) reader structure"]
impl crate::Readable for CMC_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [cmc::W](W) writer structure"]
impl crate::Writable for CMC_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets CMC to value 0"]
impl crate::Resettable for CMC_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}