#[doc = "Register `UART_RX_STATUS` reader"]
pub struct R(crate::R<UART_RX_STATUS_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<UART_RX_STATUS_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<UART_RX_STATUS_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<UART_RX_STATUS_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Field `BR_COUNTER` reader - Amount of SCB clock periods that constitute the transmission of a 0x55 data frame (sent least significant bit first) as determined by the receiver. BR_COUNTER / 8 is the amount of SCB clock periods that constitute a bit period. This field has valid data when INTR_RX.BAUD_DETECT is set to '1'."]
pub type BR_COUNTER_R = crate::FieldReader<u16, u16>;
impl R {
#[doc = "Bits 0:11 - Amount of SCB clock periods that constitute the transmission of a 0x55 data frame (sent least significant bit first) as determined by the receiver. BR_COUNTER / 8 is the amount of SCB clock periods that constitute a bit period. This field has valid data when INTR_RX.BAUD_DETECT is set to '1'."]
#[inline(always)]
pub fn br_counter(&self) -> BR_COUNTER_R {
BR_COUNTER_R::new((self.bits & 0x0fff) as u16)
}
}
#[doc = "UART receiver status\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [uart_rx_status](index.html) module"]
pub struct UART_RX_STATUS_SPEC;
impl crate::RegisterSpec for UART_RX_STATUS_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [uart_rx_status::R](R) reader structure"]
impl crate::Readable for UART_RX_STATUS_SPEC {
type Reader = R;
}
#[doc = "`reset()` method sets UART_RX_STATUS to value 0"]
impl crate::Resettable for UART_RX_STATUS_SPEC {
const RESET_VALUE: Self::Ux = 0;
}