#[doc = "Register `MEM_CNT_STATUS` reader"]
pub struct R(crate::R<MEM_CNT_STATUS_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<MEM_CNT_STATUS_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::convert::From<crate::R<MEM_CNT_STATUS_SPEC>> for R {
fn from(reader: crate::R<MEM_CNT_STATUS_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `MEM_CNT_STATUS` writer"]
pub struct W(crate::W<MEM_CNT_STATUS_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<MEM_CNT_STATUS_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 core::convert::From<crate::W<MEM_CNT_STATUS_SPEC>> for W {
fn from(writer: crate::W<MEM_CNT_STATUS_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `TX_MEM_CNT` reader - "]
pub struct TX_MEM_CNT_R(crate::FieldReader<u8, u8>);
impl TX_MEM_CNT_R {
pub(crate) fn new(bits: u8) -> Self {
TX_MEM_CNT_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for TX_MEM_CNT_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TX_MEM_CNT` writer - "]
pub struct TX_MEM_CNT_W<'a> {
w: &'a mut W,
}
impl<'a> TX_MEM_CNT_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 & !(0x07 << 3)) | (((value as u32) & 0x07) << 3);
self.w
}
}
#[doc = "Field `RX_MEM_CNT` reader - "]
pub struct RX_MEM_CNT_R(crate::FieldReader<u8, u8>);
impl RX_MEM_CNT_R {
pub(crate) fn new(bits: u8) -> Self {
RX_MEM_CNT_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for RX_MEM_CNT_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `RX_MEM_CNT` writer - "]
pub struct RX_MEM_CNT_W<'a> {
w: &'a mut W,
}
impl<'a> RX_MEM_CNT_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 & !0x07) | ((value as u32) & 0x07);
self.w
}
}
impl R {
#[doc = "Bits 3:5"]
#[inline(always)]
pub fn tx_mem_cnt(&self) -> TX_MEM_CNT_R {
TX_MEM_CNT_R::new(((self.bits >> 3) & 0x07) as u8)
}
#[doc = "Bits 0:2"]
#[inline(always)]
pub fn rx_mem_cnt(&self) -> RX_MEM_CNT_R {
RX_MEM_CNT_R::new((self.bits & 0x07) as u8)
}
}
impl W {
#[doc = "Bits 3:5"]
#[inline(always)]
pub fn tx_mem_cnt(&mut self) -> TX_MEM_CNT_W {
TX_MEM_CNT_W { w: self }
}
#[doc = "Bits 0:2"]
#[inline(always)]
pub fn rx_mem_cnt(&mut self) -> RX_MEM_CNT_W {
RX_MEM_CNT_W { w: self }
}
#[doc = "Writes raw bits to the register."]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "UART_MEM_CNT_STATUS\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 [mem_cnt_status](index.html) module"]
pub struct MEM_CNT_STATUS_SPEC;
impl crate::RegisterSpec for MEM_CNT_STATUS_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [mem_cnt_status::R](R) reader structure"]
impl crate::Readable for MEM_CNT_STATUS_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [mem_cnt_status::W](W) writer structure"]
impl crate::Writable for MEM_CNT_STATUS_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets MEM_CNT_STATUS to value 0"]
impl crate::Resettable for MEM_CNT_STATUS_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}