1#[doc = "Register `IC_RX_TL` reader"]
2pub type R = crate::R<IC_RX_TL_SPEC>;
3#[doc = "Register `IC_RX_TL` writer"]
4pub type W = crate::W<IC_RX_TL_SPEC>;
5#[doc = "Field `RX_TL` reader - Receive FIFO Threshold Level.
67 Controls the level of entries (or above) that triggers the RX_FULL interrupt (bit 2 in IC_RAW_INTR_STAT register). The valid range is 0-255, with the additional restriction that hardware does not allow this value to be set to a value larger than the depth of the buffer. If an attempt is made to do that, the actual value set will be the maximum depth of the buffer. A value of 0 sets the threshold for 1 entry, and a value of 255 sets the threshold for 256 entries."]
8pub type RX_TL_R = crate::FieldReader;
9#[doc = "Field `RX_TL` writer - Receive FIFO Threshold Level.
1011 Controls the level of entries (or above) that triggers the RX_FULL interrupt (bit 2 in IC_RAW_INTR_STAT register). The valid range is 0-255, with the additional restriction that hardware does not allow this value to be set to a value larger than the depth of the buffer. If an attempt is made to do that, the actual value set will be the maximum depth of the buffer. A value of 0 sets the threshold for 1 entry, and a value of 255 sets the threshold for 256 entries."]
12pub type RX_TL_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
13impl R {
14#[doc = "Bits 0:7 - Receive FIFO Threshold Level.
1516 Controls the level of entries (or above) that triggers the RX_FULL interrupt (bit 2 in IC_RAW_INTR_STAT register). The valid range is 0-255, with the additional restriction that hardware does not allow this value to be set to a value larger than the depth of the buffer. If an attempt is made to do that, the actual value set will be the maximum depth of the buffer. A value of 0 sets the threshold for 1 entry, and a value of 255 sets the threshold for 256 entries."]
17 #[inline(always)]
18pub fn rx_tl(&self) -> RX_TL_R {
19 RX_TL_R::new((self.bits & 0xff) as u8)
20 }
21}
22impl W {
23#[doc = "Bits 0:7 - Receive FIFO Threshold Level.
2425 Controls the level of entries (or above) that triggers the RX_FULL interrupt (bit 2 in IC_RAW_INTR_STAT register). The valid range is 0-255, with the additional restriction that hardware does not allow this value to be set to a value larger than the depth of the buffer. If an attempt is made to do that, the actual value set will be the maximum depth of the buffer. A value of 0 sets the threshold for 1 entry, and a value of 255 sets the threshold for 256 entries."]
26 #[inline(always)]
27 #[must_use]
28pub fn rx_tl(&mut self) -> RX_TL_W<IC_RX_TL_SPEC> {
29 RX_TL_W::new(self, 0)
30 }
31#[doc = r" Writes raw bits to the register."]
32 #[doc = r""]
33 #[doc = r" # Safety"]
34 #[doc = r""]
35 #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
36 #[inline(always)]
37pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
38self.bits = bits;
39self
40}
41}
42#[doc = "I2C Receive FIFO Threshold Register
4344You can [`read`](crate::generic::Reg::read) this register and get [`ic_rx_tl::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 [`ic_rx_tl::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
45pub struct IC_RX_TL_SPEC;
46impl crate::RegisterSpec for IC_RX_TL_SPEC {
47type Ux = u32;
48}
49#[doc = "`read()` method returns [`ic_rx_tl::R`](R) reader structure"]
50impl crate::Readable for IC_RX_TL_SPEC {}
51#[doc = "`write(|w| ..)` method takes [`ic_rx_tl::W`](W) writer structure"]
52impl crate::Writable for IC_RX_TL_SPEC {
53const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
54const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
55}
56#[doc = "`reset()` method sets IC_RX_TL to value 0"]
57impl crate::Resettable for IC_RX_TL_SPEC {
58const RESET_VALUE: u32 = 0;
59}