Initial commit

This commit is contained in:
Thomas Klaehn
2021-06-04 07:58:05 +02:00
commit 060cfea264
805 changed files with 204833 additions and 0 deletions

138
src/nfct/txd/amount.rs Normal file
View File

@@ -0,0 +1,138 @@
#[doc = "Register `AMOUNT` reader"]
pub struct R(crate::R<AMOUNT_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<AMOUNT_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<AMOUNT_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<AMOUNT_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `AMOUNT` writer"]
pub struct W(crate::W<AMOUNT_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<AMOUNT_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<AMOUNT_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<AMOUNT_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `TXDATABITS` reader - Number of bits in the last or first byte read from RAM that shall be included in the frame (excluding parity bit)."]
pub struct TXDATABITS_R(crate::FieldReader<u8, u8>);
impl TXDATABITS_R {
pub(crate) fn new(bits: u8) -> Self {
TXDATABITS_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for TXDATABITS_R {
type Target = crate::FieldReader<u8, u8>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TXDATABITS` writer - Number of bits in the last or first byte read from RAM that shall be included in the frame (excluding parity bit)."]
pub struct TXDATABITS_W<'a> {
w: &'a mut W,
}
impl<'a> TXDATABITS_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0x07) | (value as u32 & 0x07);
self.w
}
}
#[doc = "Field `TXDATABYTES` reader - Number of complete bytes that shall be included in the frame, excluding CRC, parity and framing"]
pub struct TXDATABYTES_R(crate::FieldReader<u16, u16>);
impl TXDATABYTES_R {
pub(crate) fn new(bits: u16) -> Self {
TXDATABYTES_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for TXDATABYTES_R {
type Target = crate::FieldReader<u16, u16>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `TXDATABYTES` writer - Number of complete bytes that shall be included in the frame, excluding CRC, parity and framing"]
pub struct TXDATABYTES_W<'a> {
w: &'a mut W,
}
impl<'a> TXDATABYTES_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 & !(0x01ff << 3)) | ((value as u32 & 0x01ff) << 3);
self.w
}
}
impl R {
#[doc = "Bits 0:2 - Number of bits in the last or first byte read from RAM that shall be included in the frame (excluding parity bit)."]
#[inline(always)]
pub fn txdatabits(&self) -> TXDATABITS_R {
TXDATABITS_R::new((self.bits & 0x07) as u8)
}
#[doc = "Bits 3:11 - Number of complete bytes that shall be included in the frame, excluding CRC, parity and framing"]
#[inline(always)]
pub fn txdatabytes(&self) -> TXDATABYTES_R {
TXDATABYTES_R::new(((self.bits >> 3) & 0x01ff) as u16)
}
}
impl W {
#[doc = "Bits 0:2 - Number of bits in the last or first byte read from RAM that shall be included in the frame (excluding parity bit)."]
#[inline(always)]
pub fn txdatabits(&mut self) -> TXDATABITS_W {
TXDATABITS_W { w: self }
}
#[doc = "Bits 3:11 - Number of complete bytes that shall be included in the frame, excluding CRC, parity and framing"]
#[inline(always)]
pub fn txdatabytes(&mut self) -> TXDATABYTES_W {
TXDATABYTES_W { w: 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 = "Size of outgoing frame\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 [amount](index.html) module"]
pub struct AMOUNT_SPEC;
impl crate::RegisterSpec for AMOUNT_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [amount::R](R) reader structure"]
impl crate::Readable for AMOUNT_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [amount::W](W) writer structure"]
impl crate::Writable for AMOUNT_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets AMOUNT to value 0"]
impl crate::Resettable for AMOUNT_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}

438
src/nfct/txd/frameconfig.rs Normal file
View File

@@ -0,0 +1,438 @@
#[doc = "Register `FRAMECONFIG` reader"]
pub struct R(crate::R<FRAMECONFIG_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<FRAMECONFIG_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<FRAMECONFIG_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<FRAMECONFIG_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `FRAMECONFIG` writer"]
pub struct W(crate::W<FRAMECONFIG_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<FRAMECONFIG_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<FRAMECONFIG_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<FRAMECONFIG_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Adding parity or not in the frame\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum PARITY_A {
#[doc = "0: Parity is not added in TX frames"]
NOPARITY = 0,
#[doc = "1: Parity is added TX frames"]
PARITY = 1,
}
impl From<PARITY_A> for bool {
#[inline(always)]
fn from(variant: PARITY_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `PARITY` reader - Adding parity or not in the frame"]
pub struct PARITY_R(crate::FieldReader<bool, PARITY_A>);
impl PARITY_R {
pub(crate) fn new(bits: bool) -> Self {
PARITY_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PARITY_A {
match self.bits {
false => PARITY_A::NOPARITY,
true => PARITY_A::PARITY,
}
}
#[doc = "Checks if the value of the field is `NOPARITY`"]
#[inline(always)]
pub fn is_no_parity(&self) -> bool {
**self == PARITY_A::NOPARITY
}
#[doc = "Checks if the value of the field is `PARITY`"]
#[inline(always)]
pub fn is_parity(&self) -> bool {
**self == PARITY_A::PARITY
}
}
impl core::ops::Deref for PARITY_R {
type Target = crate::FieldReader<bool, PARITY_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `PARITY` writer - Adding parity or not in the frame"]
pub struct PARITY_W<'a> {
w: &'a mut W,
}
impl<'a> PARITY_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: PARITY_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Parity is not added in TX frames"]
#[inline(always)]
pub fn no_parity(self) -> &'a mut W {
self.variant(PARITY_A::NOPARITY)
}
#[doc = "Parity is added TX frames"]
#[inline(always)]
pub fn parity(self) -> &'a mut W {
self.variant(PARITY_A::PARITY)
}
#[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
}
}
#[doc = "Discarding unused bits in start or at end of a Frame\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DISCARDMODE_A {
#[doc = "0: Unused bits is discarded at end of frame"]
DISCARDEND = 0,
#[doc = "1: Unused bits is discarded at start of frame"]
DISCARDSTART = 1,
}
impl From<DISCARDMODE_A> for bool {
#[inline(always)]
fn from(variant: DISCARDMODE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `DISCARDMODE` reader - Discarding unused bits in start or at end of a Frame"]
pub struct DISCARDMODE_R(crate::FieldReader<bool, DISCARDMODE_A>);
impl DISCARDMODE_R {
pub(crate) fn new(bits: bool) -> Self {
DISCARDMODE_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> DISCARDMODE_A {
match self.bits {
false => DISCARDMODE_A::DISCARDEND,
true => DISCARDMODE_A::DISCARDSTART,
}
}
#[doc = "Checks if the value of the field is `DISCARDEND`"]
#[inline(always)]
pub fn is_discard_end(&self) -> bool {
**self == DISCARDMODE_A::DISCARDEND
}
#[doc = "Checks if the value of the field is `DISCARDSTART`"]
#[inline(always)]
pub fn is_discard_start(&self) -> bool {
**self == DISCARDMODE_A::DISCARDSTART
}
}
impl core::ops::Deref for DISCARDMODE_R {
type Target = crate::FieldReader<bool, DISCARDMODE_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `DISCARDMODE` writer - Discarding unused bits in start or at end of a Frame"]
pub struct DISCARDMODE_W<'a> {
w: &'a mut W,
}
impl<'a> DISCARDMODE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: DISCARDMODE_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Unused bits is discarded at end of frame"]
#[inline(always)]
pub fn discard_end(self) -> &'a mut W {
self.variant(DISCARDMODE_A::DISCARDEND)
}
#[doc = "Unused bits is discarded at start of frame"]
#[inline(always)]
pub fn discard_start(self) -> &'a mut W {
self.variant(DISCARDMODE_A::DISCARDSTART)
}
#[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 = "Adding SoF or not in TX frames\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SOF_A {
#[doc = "0: Start of Frame symbol not added"]
NOSOF = 0,
#[doc = "1: Start of Frame symbol added"]
SOF = 1,
}
impl From<SOF_A> for bool {
#[inline(always)]
fn from(variant: SOF_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `SOF` reader - Adding SoF or not in TX frames"]
pub struct SOF_R(crate::FieldReader<bool, SOF_A>);
impl SOF_R {
pub(crate) fn new(bits: bool) -> Self {
SOF_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> SOF_A {
match self.bits {
false => SOF_A::NOSOF,
true => SOF_A::SOF,
}
}
#[doc = "Checks if the value of the field is `NOSOF`"]
#[inline(always)]
pub fn is_no_so_f(&self) -> bool {
**self == SOF_A::NOSOF
}
#[doc = "Checks if the value of the field is `SOF`"]
#[inline(always)]
pub fn is_so_f(&self) -> bool {
**self == SOF_A::SOF
}
}
impl core::ops::Deref for SOF_R {
type Target = crate::FieldReader<bool, SOF_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SOF` writer - Adding SoF or not in TX frames"]
pub struct SOF_W<'a> {
w: &'a mut W,
}
impl<'a> SOF_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SOF_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Start of Frame symbol not added"]
#[inline(always)]
pub fn no_so_f(self) -> &'a mut W {
self.variant(SOF_A::NOSOF)
}
#[doc = "Start of Frame symbol added"]
#[inline(always)]
pub fn so_f(self) -> &'a mut W {
self.variant(SOF_A::SOF)
}
#[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 = "CRC mode for outgoing frames\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CRCMODETX_A {
#[doc = "0: CRC is not added to the frame"]
NOCRCTX = 0,
#[doc = "1: 16 bit CRC added to the frame based on all the data read from RAM that is used in the frame"]
CRC16TX = 1,
}
impl From<CRCMODETX_A> for bool {
#[inline(always)]
fn from(variant: CRCMODETX_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `CRCMODETX` reader - CRC mode for outgoing frames"]
pub struct CRCMODETX_R(crate::FieldReader<bool, CRCMODETX_A>);
impl CRCMODETX_R {
pub(crate) fn new(bits: bool) -> Self {
CRCMODETX_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> CRCMODETX_A {
match self.bits {
false => CRCMODETX_A::NOCRCTX,
true => CRCMODETX_A::CRC16TX,
}
}
#[doc = "Checks if the value of the field is `NOCRCTX`"]
#[inline(always)]
pub fn is_no_crctx(&self) -> bool {
**self == CRCMODETX_A::NOCRCTX
}
#[doc = "Checks if the value of the field is `CRC16TX`"]
#[inline(always)]
pub fn is_crc16tx(&self) -> bool {
**self == CRCMODETX_A::CRC16TX
}
}
impl core::ops::Deref for CRCMODETX_R {
type Target = crate::FieldReader<bool, CRCMODETX_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `CRCMODETX` writer - CRC mode for outgoing frames"]
pub struct CRCMODETX_W<'a> {
w: &'a mut W,
}
impl<'a> CRCMODETX_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CRCMODETX_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "CRC is not added to the frame"]
#[inline(always)]
pub fn no_crctx(self) -> &'a mut W {
self.variant(CRCMODETX_A::NOCRCTX)
}
#[doc = "16 bit CRC added to the frame based on all the data read from RAM that is used in the frame"]
#[inline(always)]
pub fn crc16tx(self) -> &'a mut W {
self.variant(CRCMODETX_A::CRC16TX)
}
#[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
}
}
impl R {
#[doc = "Bit 0 - Adding parity or not in the frame"]
#[inline(always)]
pub fn parity(&self) -> PARITY_R {
PARITY_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - Discarding unused bits in start or at end of a Frame"]
#[inline(always)]
pub fn discardmode(&self) -> DISCARDMODE_R {
DISCARDMODE_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - Adding SoF or not in TX frames"]
#[inline(always)]
pub fn sof(&self) -> SOF_R {
SOF_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 4 - CRC mode for outgoing frames"]
#[inline(always)]
pub fn crcmodetx(&self) -> CRCMODETX_R {
CRCMODETX_R::new(((self.bits >> 4) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Adding parity or not in the frame"]
#[inline(always)]
pub fn parity(&mut self) -> PARITY_W {
PARITY_W { w: self }
}
#[doc = "Bit 1 - Discarding unused bits in start or at end of a Frame"]
#[inline(always)]
pub fn discardmode(&mut self) -> DISCARDMODE_W {
DISCARDMODE_W { w: self }
}
#[doc = "Bit 2 - Adding SoF or not in TX frames"]
#[inline(always)]
pub fn sof(&mut self) -> SOF_W {
SOF_W { w: self }
}
#[doc = "Bit 4 - CRC mode for outgoing frames"]
#[inline(always)]
pub fn crcmodetx(&mut self) -> CRCMODETX_W {
CRCMODETX_W { w: 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 = "Configuration of outgoing frames\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 [frameconfig](index.html) module"]
pub struct FRAMECONFIG_SPEC;
impl crate::RegisterSpec for FRAMECONFIG_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [frameconfig::R](R) reader structure"]
impl crate::Readable for FRAMECONFIG_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [frameconfig::W](W) writer structure"]
impl crate::Writable for FRAMECONFIG_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets FRAMECONFIG to value 0x17"]
impl crate::Resettable for FRAMECONFIG_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0x17
}
}