#[doc = "Register `CONF1` reader"]
pub struct R(crate::R<CONF1_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<CONF1_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::convert::From<crate::R<CONF1_SPEC>> for R {
fn from(reader: crate::R<CONF1_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `CONF1` writer"]
pub struct W(crate::W<CONF1_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<CONF1_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 core::convert::From<crate::W<CONF1_SPEC>> for W {
fn from(writer: crate::W<CONF1_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `DMA_INFIFO_FULL_THRS` reader - "]
pub struct DMA_INFIFO_FULL_THRS_R(crate::FieldReader<u16, u16>);
impl DMA_INFIFO_FULL_THRS_R {
pub(crate) fn new(bits: u16) -> Self {
DMA_INFIFO_FULL_THRS_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for DMA_INFIFO_FULL_THRS_R {
type Target = crate::FieldReader<u16, u16>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `DMA_INFIFO_FULL_THRS` writer - "]
pub struct DMA_INFIFO_FULL_THRS_W<'a> {
w: &'a mut W,
}
impl<'a> DMA_INFIFO_FULL_THRS_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u16) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x0fff << 9)) | (((value as u32) & 0x0fff) << 9);
self.w
}
}
#[doc = "Field `SW_START` reader - "]
pub struct SW_START_R(crate::FieldReader<bool, bool>);
impl SW_START_R {
pub(crate) fn new(bits: bool) -> Self {
SW_START_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SW_START_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SW_START` writer - "]
pub struct SW_START_W<'a> {
w: &'a mut W,
}
impl<'a> SW_START_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u32) & 0x01) << 8);
self.w
}
}
#[doc = "Field `WAIT_SW_START` reader - "]
pub struct WAIT_SW_START_R(crate::FieldReader<bool, bool>);
impl WAIT_SW_START_R {
pub(crate) fn new(bits: bool) -> Self {
WAIT_SW_START_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for WAIT_SW_START_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `WAIT_SW_START` writer - "]
pub struct WAIT_SW_START_W<'a> {
w: &'a mut W,
}
impl<'a> WAIT_SW_START_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u32) & 0x01) << 7);
self.w
}
}
#[doc = "Field `CHECK_OWNER` reader - "]
pub struct CHECK_OWNER_R(crate::FieldReader<bool, bool>);
impl CHECK_OWNER_R {
pub(crate) fn new(bits: bool) -> Self {
CHECK_OWNER_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for CHECK_OWNER_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CHECK_OWNER` writer - "]
pub struct CHECK_OWNER_W<'a> {
w: &'a mut W,
}
impl<'a> CHECK_OWNER_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 6)) | (((value as u32) & 0x01) << 6);
self.w
}
}
#[doc = "Field `TX_ACK_NUM_RE` reader - "]
pub struct TX_ACK_NUM_RE_R(crate::FieldReader<bool, bool>);
impl TX_ACK_NUM_RE_R {
pub(crate) fn new(bits: bool) -> Self {
TX_ACK_NUM_RE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for TX_ACK_NUM_RE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TX_ACK_NUM_RE` writer - "]
pub struct TX_ACK_NUM_RE_W<'a> {
w: &'a mut W,
}
impl<'a> TX_ACK_NUM_RE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 5)) | (((value as u32) & 0x01) << 5);
self.w
}
}
#[doc = "Field `TX_CHECK_SUM_RE` reader - "]
pub struct TX_CHECK_SUM_RE_R(crate::FieldReader<bool, bool>);
impl TX_CHECK_SUM_RE_R {
pub(crate) fn new(bits: bool) -> Self {
TX_CHECK_SUM_RE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for TX_CHECK_SUM_RE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TX_CHECK_SUM_RE` writer - "]
pub struct TX_CHECK_SUM_RE_W<'a> {
w: &'a mut W,
}
impl<'a> TX_CHECK_SUM_RE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 4)) | (((value as u32) & 0x01) << 4);
self.w
}
}
#[doc = "Field `SAVE_HEAD` reader - "]
pub struct SAVE_HEAD_R(crate::FieldReader<bool, bool>);
impl SAVE_HEAD_R {
pub(crate) fn new(bits: bool) -> Self {
SAVE_HEAD_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SAVE_HEAD_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SAVE_HEAD` writer - "]
pub struct SAVE_HEAD_W<'a> {
w: &'a mut W,
}
impl<'a> SAVE_HEAD_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 3)) | (((value as u32) & 0x01) << 3);
self.w
}
}
#[doc = "Field `CRC_DISABLE` reader - "]
pub struct CRC_DISABLE_R(crate::FieldReader<bool, bool>);
impl CRC_DISABLE_R {
pub(crate) fn new(bits: bool) -> Self {
CRC_DISABLE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for CRC_DISABLE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CRC_DISABLE` writer - "]
pub struct CRC_DISABLE_W<'a> {
w: &'a mut W,
}
impl<'a> CRC_DISABLE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u32) & 0x01) << 2);
self.w
}
}
#[doc = "Field `CHECK_SEQ_EN` reader - "]
pub struct CHECK_SEQ_EN_R(crate::FieldReader<bool, bool>);
impl CHECK_SEQ_EN_R {
pub(crate) fn new(bits: bool) -> Self {
CHECK_SEQ_EN_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for CHECK_SEQ_EN_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CHECK_SEQ_EN` writer - "]
pub struct CHECK_SEQ_EN_W<'a> {
w: &'a mut W,
}
impl<'a> CHECK_SEQ_EN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
self.w
}
}
#[doc = "Field `CHECK_SUM_EN` reader - "]
pub struct CHECK_SUM_EN_R(crate::FieldReader<bool, bool>);
impl CHECK_SUM_EN_R {
pub(crate) fn new(bits: bool) -> Self {
CHECK_SUM_EN_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for CHECK_SUM_EN_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CHECK_SUM_EN` writer - "]
pub struct CHECK_SUM_EN_W<'a> {
w: &'a mut W,
}
impl<'a> CHECK_SUM_EN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
self.w
}
}
impl R {
#[doc = "Bits 9:20"]
#[inline(always)]
pub fn dma_infifo_full_thrs(&self) -> DMA_INFIFO_FULL_THRS_R {
DMA_INFIFO_FULL_THRS_R::new(((self.bits >> 9) & 0x0fff) as u16)
}
#[doc = "Bit 8"]
#[inline(always)]
pub fn sw_start(&self) -> SW_START_R {
SW_START_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 7"]
#[inline(always)]
pub fn wait_sw_start(&self) -> WAIT_SW_START_R {
WAIT_SW_START_R::new(((self.bits >> 7) & 0x01) != 0)
}
#[doc = "Bit 6"]
#[inline(always)]
pub fn check_owner(&self) -> CHECK_OWNER_R {
CHECK_OWNER_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 5"]
#[inline(always)]
pub fn tx_ack_num_re(&self) -> TX_ACK_NUM_RE_R {
TX_ACK_NUM_RE_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 4"]
#[inline(always)]
pub fn tx_check_sum_re(&self) -> TX_CHECK_SUM_RE_R {
TX_CHECK_SUM_RE_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 3"]
#[inline(always)]
pub fn save_head(&self) -> SAVE_HEAD_R {
SAVE_HEAD_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 2"]
#[inline(always)]
pub fn crc_disable(&self) -> CRC_DISABLE_R {
CRC_DISABLE_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 1"]
#[inline(always)]
pub fn check_seq_en(&self) -> CHECK_SEQ_EN_R {
CHECK_SEQ_EN_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 0"]
#[inline(always)]
pub fn check_sum_en(&self) -> CHECK_SUM_EN_R {
CHECK_SUM_EN_R::new((self.bits & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 9:20"]
#[inline(always)]
pub fn dma_infifo_full_thrs(&mut self) -> DMA_INFIFO_FULL_THRS_W {
DMA_INFIFO_FULL_THRS_W { w: self }
}
#[doc = "Bit 8"]
#[inline(always)]
pub fn sw_start(&mut self) -> SW_START_W {
SW_START_W { w: self }
}
#[doc = "Bit 7"]
#[inline(always)]
pub fn wait_sw_start(&mut self) -> WAIT_SW_START_W {
WAIT_SW_START_W { w: self }
}
#[doc = "Bit 6"]
#[inline(always)]
pub fn check_owner(&mut self) -> CHECK_OWNER_W {
CHECK_OWNER_W { w: self }
}
#[doc = "Bit 5"]
#[inline(always)]
pub fn tx_ack_num_re(&mut self) -> TX_ACK_NUM_RE_W {
TX_ACK_NUM_RE_W { w: self }
}
#[doc = "Bit 4"]
#[inline(always)]
pub fn tx_check_sum_re(&mut self) -> TX_CHECK_SUM_RE_W {
TX_CHECK_SUM_RE_W { w: self }
}
#[doc = "Bit 3"]
#[inline(always)]
pub fn save_head(&mut self) -> SAVE_HEAD_W {
SAVE_HEAD_W { w: self }
}
#[doc = "Bit 2"]
#[inline(always)]
pub fn crc_disable(&mut self) -> CRC_DISABLE_W {
CRC_DISABLE_W { w: self }
}
#[doc = "Bit 1"]
#[inline(always)]
pub fn check_seq_en(&mut self) -> CHECK_SEQ_EN_W {
CHECK_SEQ_EN_W { w: self }
}
#[doc = "Bit 0"]
#[inline(always)]
pub fn check_sum_en(&mut self) -> CHECK_SUM_EN_W {
CHECK_SUM_EN_W { w: self }
}
#[doc = "Writes raw bits to the register."]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "UHCI_CONF1\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 [conf1](index.html) module"]
pub struct CONF1_SPEC;
impl crate::RegisterSpec for CONF1_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [conf1::R](R) reader structure"]
impl crate::Readable for CONF1_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [conf1::W](W) writer structure"]
impl crate::Writable for CONF1_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets CONF1 to value 0"]
impl crate::Resettable for CONF1_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}