#[doc = "Reader of register INTENSET"]
pub type R = crate::R<u32, super::INTENSET>;
#[doc = "Writer for register INTENSET"]
pub type W = crate::W<u32, super::INTENSET>;
#[doc = "Register INTENSET `reset()`'s with value 0"]
impl crate::ResetValue for super::INTENSET {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Enable interrupt on CTS event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CTS_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<CTS_A> for bool {
#[inline(always)]
fn from(variant: CTS_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `CTS`"]
pub type CTS_R = crate::R<bool, CTS_A>;
impl CTS_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> CTS_A {
match self.bits {
false => CTS_A::DISABLED,
true => CTS_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == CTS_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == CTS_A::ENABLED
}
}
#[doc = "Enable interrupt on CTS event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CTS_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<CTS_AW> for bool {
#[inline(always)]
fn from(variant: CTS_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `CTS`"]
pub struct CTS_W<'a> {
w: &'a mut W,
}
impl<'a> CTS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CTS_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(CTS_AW::SET)
}
#[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 = "Enable interrupt on NCTS event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum NCTS_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<NCTS_A> for bool {
#[inline(always)]
fn from(variant: NCTS_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `NCTS`"]
pub type NCTS_R = crate::R<bool, NCTS_A>;
impl NCTS_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> NCTS_A {
match self.bits {
false => NCTS_A::DISABLED,
true => NCTS_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == NCTS_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == NCTS_A::ENABLED
}
}
#[doc = "Enable interrupt on NCTS event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum NCTS_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<NCTS_AW> for bool {
#[inline(always)]
fn from(variant: NCTS_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `NCTS`"]
pub struct NCTS_W<'a> {
w: &'a mut W,
}
impl<'a> NCTS_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: NCTS_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(NCTS_AW::SET)
}
#[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 = "Enable interrupt on RXRDY event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RXDRDY_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<RXDRDY_A> for bool {
#[inline(always)]
fn from(variant: RXDRDY_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `RXDRDY`"]
pub type RXDRDY_R = crate::R<bool, RXDRDY_A>;
impl RXDRDY_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> RXDRDY_A {
match self.bits {
false => RXDRDY_A::DISABLED,
true => RXDRDY_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == RXDRDY_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == RXDRDY_A::ENABLED
}
}
#[doc = "Enable interrupt on RXRDY event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RXDRDY_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<RXDRDY_AW> for bool {
#[inline(always)]
fn from(variant: RXDRDY_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `RXDRDY`"]
pub struct RXDRDY_W<'a> {
w: &'a mut W,
}
impl<'a> RXDRDY_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: RXDRDY_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(RXDRDY_AW::SET)
}
#[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 << 2)) | (((value as u32) & 0x01) << 2);
self.w
}
}
#[doc = "Enable interrupt on TXRDY event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TXDRDY_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<TXDRDY_A> for bool {
#[inline(always)]
fn from(variant: TXDRDY_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `TXDRDY`"]
pub type TXDRDY_R = crate::R<bool, TXDRDY_A>;
impl TXDRDY_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TXDRDY_A {
match self.bits {
false => TXDRDY_A::DISABLED,
true => TXDRDY_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == TXDRDY_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == TXDRDY_A::ENABLED
}
}
#[doc = "Enable interrupt on TXRDY event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TXDRDY_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<TXDRDY_AW> for bool {
#[inline(always)]
fn from(variant: TXDRDY_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `TXDRDY`"]
pub struct TXDRDY_W<'a> {
w: &'a mut W,
}
impl<'a> TXDRDY_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: TXDRDY_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(TXDRDY_AW::SET)
}
#[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 << 7)) | (((value as u32) & 0x01) << 7);
self.w
}
}
#[doc = "Enable interrupt on ERROR event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ERROR_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<ERROR_A> for bool {
#[inline(always)]
fn from(variant: ERROR_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `ERROR`"]
pub type ERROR_R = crate::R<bool, ERROR_A>;
impl ERROR_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ERROR_A {
match self.bits {
false => ERROR_A::DISABLED,
true => ERROR_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == ERROR_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == ERROR_A::ENABLED
}
}
#[doc = "Enable interrupt on ERROR event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ERROR_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<ERROR_AW> for bool {
#[inline(always)]
fn from(variant: ERROR_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `ERROR`"]
pub struct ERROR_W<'a> {
w: &'a mut W,
}
impl<'a> ERROR_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ERROR_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(ERROR_AW::SET)
}
#[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 << 9)) | (((value as u32) & 0x01) << 9);
self.w
}
}
#[doc = "Enable interrupt on RXTO event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RXTO_A {
#[doc = "0: Interrupt disabled."]
DISABLED = 0,
#[doc = "1: Interrupt enabled."]
ENABLED = 1,
}
impl From<RXTO_A> for bool {
#[inline(always)]
fn from(variant: RXTO_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `RXTO`"]
pub type RXTO_R = crate::R<bool, RXTO_A>;
impl RXTO_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> RXTO_A {
match self.bits {
false => RXTO_A::DISABLED,
true => RXTO_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == RXTO_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == RXTO_A::ENABLED
}
}
#[doc = "Enable interrupt on RXTO event.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RXTO_AW {
#[doc = "1: Enable interrupt on write."]
SET = 1,
}
impl From<RXTO_AW> for bool {
#[inline(always)]
fn from(variant: RXTO_AW) -> Self {
variant as u8 != 0
}
}
#[doc = "Write proxy for field `RXTO`"]
pub struct RXTO_W<'a> {
w: &'a mut W,
}
impl<'a> RXTO_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: RXTO_AW) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Enable interrupt on write."]
#[inline(always)]
pub fn set(self) -> &'a mut W {
self.variant(RXTO_AW::SET)
}
#[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
}
}
impl R {
#[doc = "Bit 0 - Enable interrupt on CTS event."]
#[inline(always)]
pub fn cts(&self) -> CTS_R {
CTS_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - Enable interrupt on NCTS event."]
#[inline(always)]
pub fn ncts(&self) -> NCTS_R {
NCTS_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - Enable interrupt on RXRDY event."]
#[inline(always)]
pub fn rxdrdy(&self) -> RXDRDY_R {
RXDRDY_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 7 - Enable interrupt on TXRDY event."]
#[inline(always)]
pub fn txdrdy(&self) -> TXDRDY_R {
TXDRDY_R::new(((self.bits >> 7) & 0x01) != 0)
}
#[doc = "Bit 9 - Enable interrupt on ERROR event."]
#[inline(always)]
pub fn error(&self) -> ERROR_R {
ERROR_R::new(((self.bits >> 9) & 0x01) != 0)
}
#[doc = "Bit 17 - Enable interrupt on RXTO event."]
#[inline(always)]
pub fn rxto(&self) -> RXTO_R {
RXTO_R::new(((self.bits >> 17) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Enable interrupt on CTS event."]
#[inline(always)]
pub fn cts(&mut self) -> CTS_W {
CTS_W { w: self }
}
#[doc = "Bit 1 - Enable interrupt on NCTS event."]
#[inline(always)]
pub fn ncts(&mut self) -> NCTS_W {
NCTS_W { w: self }
}
#[doc = "Bit 2 - Enable interrupt on RXRDY event."]
#[inline(always)]
pub fn rxdrdy(&mut self) -> RXDRDY_W {
RXDRDY_W { w: self }
}
#[doc = "Bit 7 - Enable interrupt on TXRDY event."]
#[inline(always)]
pub fn txdrdy(&mut self) -> TXDRDY_W {
TXDRDY_W { w: self }
}
#[doc = "Bit 9 - Enable interrupt on ERROR event."]
#[inline(always)]
pub fn error(&mut self) -> ERROR_W {
ERROR_W { w: self }
}
#[doc = "Bit 17 - Enable interrupt on RXTO event."]
#[inline(always)]
pub fn rxto(&mut self) -> RXTO_W {
RXTO_W { w: self }
}
}