#[doc = "Register `FIFO` reader"]
pub type R = crate::R<FIFO_SPEC>;
#[doc = "Field `RXFIFO_RD_BYTE` reader - Represents the data LP UART 0 read from FIFO.\\\\ Measurement unit: byte."]
pub type RXFIFO_RD_BYTE_R = crate::FieldReader;
impl R {
#[doc = "Bits 0:7 - Represents the data LP UART 0 read from FIFO.\\\\ Measurement unit: byte."]
#[inline(always)]
pub fn rxfifo_rd_byte(&self) -> RXFIFO_RD_BYTE_R {
RXFIFO_RD_BYTE_R::new((self.bits & 0xff) as u8)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("FIFO")
.field("rxfifo_rd_byte", &self.rxfifo_rd_byte())
.finish()
}
}
#[doc = "FIFO data register\n\nYou can [`read`](crate::Reg::read) this register and get [`fifo::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct FIFO_SPEC;
impl crate::RegisterSpec for FIFO_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`fifo::R`](R) reader structure"]
impl crate::Readable for FIFO_SPEC {}
#[doc = "`reset()` method sets FIFO to value 0"]
impl crate::Resettable for FIFO_SPEC {}