#[doc = "Register `OTG_FS_GOTGINT` reader"]
pub struct R(crate::R<OTG_FS_GOTGINT_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<OTG_FS_GOTGINT_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<OTG_FS_GOTGINT_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<OTG_FS_GOTGINT_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `OTG_FS_GOTGINT` writer"]
pub struct W(crate::W<OTG_FS_GOTGINT_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<OTG_FS_GOTGINT_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<OTG_FS_GOTGINT_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<OTG_FS_GOTGINT_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `SEDET` reader - Session end detected"]
pub type SEDET_R = crate::BitReader<bool>;
#[doc = "Field `SEDET` writer - Session end detected"]
pub type SEDET_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 2>;
#[doc = "Field `SRSSCHG` reader - Session request success status change"]
pub type SRSSCHG_R = crate::BitReader<bool>;
#[doc = "Field `SRSSCHG` writer - Session request success status change"]
pub type SRSSCHG_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 8>;
#[doc = "Field `HNSSCHG` reader - Host negotiation success status change"]
pub type HNSSCHG_R = crate::BitReader<bool>;
#[doc = "Field `HNSSCHG` writer - Host negotiation success status change"]
pub type HNSSCHG_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 9>;
#[doc = "Field `HNGDET` reader - Host negotiation detected"]
pub type HNGDET_R = crate::BitReader<bool>;
#[doc = "Field `HNGDET` writer - Host negotiation detected"]
pub type HNGDET_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 17>;
#[doc = "Field `ADTOCHG` reader - A-device timeout change"]
pub type ADTOCHG_R = crate::BitReader<bool>;
#[doc = "Field `ADTOCHG` writer - A-device timeout change"]
pub type ADTOCHG_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 18>;
#[doc = "Field `DBCDNE` reader - Debounce done"]
pub type DBCDNE_R = crate::BitReader<bool>;
#[doc = "Field `DBCDNE` writer - Debounce done"]
pub type DBCDNE_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 19>;
#[doc = "Field `IDCHNG` reader - ID input pin changed"]
pub type IDCHNG_R = crate::BitReader<bool>;
#[doc = "Field `IDCHNG` writer - ID input pin changed"]
pub type IDCHNG_W<'a> = crate::BitWriter<'a, u32, OTG_FS_GOTGINT_SPEC, bool, 20>;
impl R {
#[doc = "Bit 2 - Session end detected"]
#[inline(always)]
pub fn sedet(&self) -> SEDET_R {
SEDET_R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 8 - Session request success status change"]
#[inline(always)]
pub fn srsschg(&self) -> SRSSCHG_R {
SRSSCHG_R::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bit 9 - Host negotiation success status change"]
#[inline(always)]
pub fn hnsschg(&self) -> HNSSCHG_R {
HNSSCHG_R::new(((self.bits >> 9) & 1) != 0)
}
#[doc = "Bit 17 - Host negotiation detected"]
#[inline(always)]
pub fn hngdet(&self) -> HNGDET_R {
HNGDET_R::new(((self.bits >> 17) & 1) != 0)
}
#[doc = "Bit 18 - A-device timeout change"]
#[inline(always)]
pub fn adtochg(&self) -> ADTOCHG_R {
ADTOCHG_R::new(((self.bits >> 18) & 1) != 0)
}
#[doc = "Bit 19 - Debounce done"]
#[inline(always)]
pub fn dbcdne(&self) -> DBCDNE_R {
DBCDNE_R::new(((self.bits >> 19) & 1) != 0)
}
#[doc = "Bit 20 - ID input pin changed"]
#[inline(always)]
pub fn idchng(&self) -> IDCHNG_R {
IDCHNG_R::new(((self.bits >> 20) & 1) != 0)
}
}
impl W {
#[doc = "Bit 2 - Session end detected"]
#[inline(always)]
pub fn sedet(&mut self) -> SEDET_W {
SEDET_W::new(self)
}
#[doc = "Bit 8 - Session request success status change"]
#[inline(always)]
pub fn srsschg(&mut self) -> SRSSCHG_W {
SRSSCHG_W::new(self)
}
#[doc = "Bit 9 - Host negotiation success status change"]
#[inline(always)]
pub fn hnsschg(&mut self) -> HNSSCHG_W {
HNSSCHG_W::new(self)
}
#[doc = "Bit 17 - Host negotiation detected"]
#[inline(always)]
pub fn hngdet(&mut self) -> HNGDET_W {
HNGDET_W::new(self)
}
#[doc = "Bit 18 - A-device timeout change"]
#[inline(always)]
pub fn adtochg(&mut self) -> ADTOCHG_W {
ADTOCHG_W::new(self)
}
#[doc = "Bit 19 - Debounce done"]
#[inline(always)]
pub fn dbcdne(&mut self) -> DBCDNE_W {
DBCDNE_W::new(self)
}
#[doc = "Bit 20 - ID input pin changed"]
#[inline(always)]
pub fn idchng(&mut self) -> IDCHNG_W {
IDCHNG_W::new(self)
}
#[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 = "OTG_FS interrupt register (OTG_FS_GOTGINT)\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 [otg_fs_gotgint](index.html) module"]
pub struct OTG_FS_GOTGINT_SPEC;
impl crate::RegisterSpec for OTG_FS_GOTGINT_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [otg_fs_gotgint::R](R) reader structure"]
impl crate::Readable for OTG_FS_GOTGINT_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [otg_fs_gotgint::W](W) writer structure"]
impl crate::Writable for OTG_FS_GOTGINT_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets OTG_FS_GOTGINT to value 0"]
impl crate::Resettable for OTG_FS_GOTGINT_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}