#[doc = "Register `TOUT_CONF_SYNC` reader"]
pub type R = crate::R<TOUT_CONF_SYNC_SPEC>;
#[doc = "Register `TOUT_CONF_SYNC` writer"]
pub type W = crate::W<TOUT_CONF_SYNC_SPEC>;
#[doc = "Field `RX_TOUT_EN` reader - This is the enble bit for uart receiver's timeout function."]
pub type RX_TOUT_EN_R = crate::BitReader;
#[doc = "Field `RX_TOUT_EN` writer - This is the enble bit for uart receiver's timeout function."]
pub type RX_TOUT_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RX_TOUT_FLOW_DIS` reader - Set this bit to stop accumulating idle_cnt when hardware flow control works."]
pub type RX_TOUT_FLOW_DIS_R = crate::BitReader;
#[doc = "Field `RX_TOUT_FLOW_DIS` writer - Set this bit to stop accumulating idle_cnt when hardware flow control works."]
pub type RX_TOUT_FLOW_DIS_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RX_TOUT_THRHD` reader - This register is used to configure the threshold time that receiver takes to receive one byte. The rxfifo_tout_int interrupt will be trigger when the receiver takes more time to receive one byte with rx_tout_en set to 1."]
pub type RX_TOUT_THRHD_R = crate::FieldReader<u16>;
#[doc = "Field `RX_TOUT_THRHD` writer - This register is used to configure the threshold time that receiver takes to receive one byte. The rxfifo_tout_int interrupt will be trigger when the receiver takes more time to receive one byte with rx_tout_en set to 1."]
pub type RX_TOUT_THRHD_W<'a, REG> = crate::FieldWriter<'a, REG, 10, u16>;
impl R {
#[doc = "Bit 0 - This is the enble bit for uart receiver's timeout function."]
#[inline(always)]
pub fn rx_tout_en(&self) -> RX_TOUT_EN_R {
RX_TOUT_EN_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Set this bit to stop accumulating idle_cnt when hardware flow control works."]
#[inline(always)]
pub fn rx_tout_flow_dis(&self) -> RX_TOUT_FLOW_DIS_R {
RX_TOUT_FLOW_DIS_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bits 2:11 - This register is used to configure the threshold time that receiver takes to receive one byte. The rxfifo_tout_int interrupt will be trigger when the receiver takes more time to receive one byte with rx_tout_en set to 1."]
#[inline(always)]
pub fn rx_tout_thrhd(&self) -> RX_TOUT_THRHD_R {
RX_TOUT_THRHD_R::new(((self.bits >> 2) & 0x03ff) as u16)
}
}
#[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("TOUT_CONF_SYNC")
.field("rx_tout_en", &format_args!("{}", self.rx_tout_en().bit()))
.field(
"rx_tout_flow_dis",
&format_args!("{}", self.rx_tout_flow_dis().bit()),
)
.field(
"rx_tout_thrhd",
&format_args!("{}", self.rx_tout_thrhd().bits()),
)
.finish()
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<TOUT_CONF_SYNC_SPEC> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
core::fmt::Debug::fmt(&self.read(), f)
}
}
impl W {
#[doc = "Bit 0 - This is the enble bit for uart receiver's timeout function."]
#[inline(always)]
#[must_use]
pub fn rx_tout_en(&mut self) -> RX_TOUT_EN_W<TOUT_CONF_SYNC_SPEC> {
RX_TOUT_EN_W::new(self, 0)
}
#[doc = "Bit 1 - Set this bit to stop accumulating idle_cnt when hardware flow control works."]
#[inline(always)]
#[must_use]
pub fn rx_tout_flow_dis(&mut self) -> RX_TOUT_FLOW_DIS_W<TOUT_CONF_SYNC_SPEC> {
RX_TOUT_FLOW_DIS_W::new(self, 1)
}
#[doc = "Bits 2:11 - This register is used to configure the threshold time that receiver takes to receive one byte. The rxfifo_tout_int interrupt will be trigger when the receiver takes more time to receive one byte with rx_tout_en set to 1."]
#[inline(always)]
#[must_use]
pub fn rx_tout_thrhd(&mut self) -> RX_TOUT_THRHD_W<TOUT_CONF_SYNC_SPEC> {
RX_TOUT_THRHD_W::new(self, 2)
}
#[doc = r" Writes raw bits to the register."]
#[doc = r""]
#[doc = r" # Safety"]
#[doc = r""]
#[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
}
#[doc = "UART threshold and allocation configuration\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tout_conf_sync::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tout_conf_sync::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct TOUT_CONF_SYNC_SPEC;
impl crate::RegisterSpec for TOUT_CONF_SYNC_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`tout_conf_sync::R`](R) reader structure"]
impl crate::Readable for TOUT_CONF_SYNC_SPEC {}
#[doc = "`write(|w| ..)` method takes [`tout_conf_sync::W`](W) writer structure"]
impl crate::Writable for TOUT_CONF_SYNC_SPEC {
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets TOUT_CONF_SYNC to value 0x28"]
impl crate::Resettable for TOUT_CONF_SYNC_SPEC {
const RESET_VALUE: Self::Ux = 0x28;
}