#[doc = "Register `lcd_debug` reader"]
pub struct R(crate::R<LCD_DEBUG_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<LCD_DEBUG_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<LCD_DEBUG_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<LCD_DEBUG_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `lcd_debug` writer"]
pub struct W(crate::W<LCD_DEBUG_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<LCD_DEBUG_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<LCD_DEBUG_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<LCD_DEBUG_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `lcd_current_line` reader - The current scan line"]
pub type LCD_CURRENT_LINE_R = crate::FieldReader<u16, u16>;
#[doc = "Field `lcd_field_pol` reader - The flag indicates the current field polarity"]
pub type LCD_FIELD_POL_R = crate::BitReader<LCD_FIELD_POL_A>;
#[doc = "The flag indicates the current field polarity\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LCD_FIELD_POL_A {
#[doc = "0: Second field"]
SECOND = 0,
#[doc = "1: First field"]
FIRST = 1,
}
impl From<LCD_FIELD_POL_A> for bool {
#[inline(always)]
fn from(variant: LCD_FIELD_POL_A) -> Self {
variant as u8 != 0
}
}
impl LCD_FIELD_POL_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> LCD_FIELD_POL_A {
match self.bits {
false => LCD_FIELD_POL_A::SECOND,
true => LCD_FIELD_POL_A::FIRST,
}
}
#[doc = "Checks if the value of the field is `SECOND`"]
#[inline(always)]
pub fn is_second(&self) -> bool {
*self == LCD_FIELD_POL_A::SECOND
}
#[doc = "Checks if the value of the field is `FIRST`"]
#[inline(always)]
pub fn is_first(&self) -> bool {
*self == LCD_FIELD_POL_A::FIRST
}
}
#[doc = "Field `lcd_fifo_underflow` reader - The flag shows whether the fifos in underflow status"]
pub type LCD_FIFO_UNDERFLOW_R = crate::BitReader<LCD_FIFO_UNDERFLOW_A>;
#[doc = "The flag shows whether the fifos in underflow status\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LCD_FIFO_UNDERFLOW_A {
#[doc = "0: Not underflow"]
NOT_UNDERFLOW = 0,
#[doc = "1: Underflow"]
U_NDERFLOW = 1,
}
impl From<LCD_FIFO_UNDERFLOW_A> for bool {
#[inline(always)]
fn from(variant: LCD_FIFO_UNDERFLOW_A) -> Self {
variant as u8 != 0
}
}
impl LCD_FIFO_UNDERFLOW_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> LCD_FIFO_UNDERFLOW_A {
match self.bits {
false => LCD_FIFO_UNDERFLOW_A::NOT_UNDERFLOW,
true => LCD_FIFO_UNDERFLOW_A::U_NDERFLOW,
}
}
#[doc = "Checks if the value of the field is `NOT_UNDERFLOW`"]
#[inline(always)]
pub fn is_not_underflow(&self) -> bool {
*self == LCD_FIFO_UNDERFLOW_A::NOT_UNDERFLOW
}
#[doc = "Checks if the value of the field is `U_NDERFLOW`"]
#[inline(always)]
pub fn is_u_nderflow(&self) -> bool {
*self == LCD_FIFO_UNDERFLOW_A::U_NDERFLOW
}
}
impl R {
#[doc = "Bits 16:27 - The current scan line"]
#[inline(always)]
pub fn lcd_current_line(&self) -> LCD_CURRENT_LINE_R {
LCD_CURRENT_LINE_R::new(((self.bits >> 16) & 0x0fff) as u16)
}
#[doc = "Bit 29 - The flag indicates the current field polarity"]
#[inline(always)]
pub fn lcd_field_pol(&self) -> LCD_FIELD_POL_R {
LCD_FIELD_POL_R::new(((self.bits >> 29) & 1) != 0)
}
#[doc = "Bit 31 - The flag shows whether the fifos in underflow status"]
#[inline(always)]
pub fn lcd_fifo_underflow(&self) -> LCD_FIFO_UNDERFLOW_R {
LCD_FIFO_UNDERFLOW_R::new(((self.bits >> 31) & 1) != 0)
}
}
impl W {
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "LCD Debug Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lcd_debug](index.html) module"]
pub struct LCD_DEBUG_SPEC;
impl crate::RegisterSpec for LCD_DEBUG_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [lcd_debug::R](R) reader structure"]
impl crate::Readable for LCD_DEBUG_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [lcd_debug::W](W) writer structure"]
impl crate::Writable for LCD_DEBUG_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets lcd_debug to value 0"]
impl crate::Resettable for LCD_DEBUG_SPEC {
const RESET_VALUE: Self::Ux = 0;
}