esp32p4/h264/
rc_status1.rs

1#[doc = "Register `RC_STATUS1` reader"]
2pub type R = crate::R<RC_STATUS1_SPEC>;
3#[doc = "Field `FRAME_ENC_BITS` reader - Represents all MB actual encoding bits sum value of one frame."]
4pub type FRAME_ENC_BITS_R = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:26 - Represents all MB actual encoding bits sum value of one frame."]
7    #[inline(always)]
8    pub fn frame_enc_bits(&self) -> FRAME_ENC_BITS_R {
9        FRAME_ENC_BITS_R::new(self.bits & 0x07ff_ffff)
10    }
11}
12#[cfg(feature = "impl-register-debug")]
13impl core::fmt::Debug for R {
14    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
15        f.debug_struct("RC_STATUS1")
16            .field(
17                "frame_enc_bits",
18                &format_args!("{}", self.frame_enc_bits().bits()),
19            )
20            .finish()
21    }
22}
23#[cfg(feature = "impl-register-debug")]
24impl core::fmt::Debug for crate::generic::Reg<RC_STATUS1_SPEC> {
25    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
26        core::fmt::Debug::fmt(&self.read(), f)
27    }
28}
29#[doc = "Rate control status register1.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`rc_status1::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
30pub struct RC_STATUS1_SPEC;
31impl crate::RegisterSpec for RC_STATUS1_SPEC {
32    type Ux = u32;
33}
34#[doc = "`read()` method returns [`rc_status1::R`](R) reader structure"]
35impl crate::Readable for RC_STATUS1_SPEC {}
36#[doc = "`reset()` method sets RC_STATUS1 to value 0"]
37impl crate::Resettable for RC_STATUS1_SPEC {
38    const RESET_VALUE: u32 = 0;
39}