#[doc = "Register `TX_FIFO` writer"]
pub struct W(crate::W<TX_FIFO_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<TX_FIFO_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<TX_FIFO_SPEC>> for W {
fn from(writer: crate::W<TX_FIFO_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `DATA` writer - TX FIFO Data"]
pub struct DATA_W<'a> {
w: &'a mut W,
}
impl<'a> DATA_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 u8) & 0xff);
self.w
}
}
impl W {
#[doc = "Bits 0:7 - TX FIFO Data"]
#[inline(always)]
pub fn data(&mut self) -> DATA_W {
DATA_W { w: self }
}
#[doc = "Writes raw bits to the register."]
pub unsafe fn bits(&mut self, bits: u8) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "UART_TX_FIFO\n\nThis register you can [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [tx_fifo](index.html) module"]
pub struct TX_FIFO_SPEC;
impl crate::RegisterSpec for TX_FIFO_SPEC {
type Ux = u8;
}
#[doc = "`write(|w| ..)` method takes [tx_fifo::W](W) writer structure"]
impl crate::Writable for TX_FIFO_SPEC {
type Writer = W;
}