diff --git a/src/can/clc.rs b/src/can/clc.rs index cb1e959f..3665bb06 100644 --- a/src/can/clc.rs +++ b/src/can/clc.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for CLC_SPEC { impl crate::Readable for CLC_SPEC {} #[doc = "`write(|w| ..)` method takes [`clc::W`](W) writer structure"] impl crate::Writable for CLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLC to value 0x03"] impl crate::Resettable for CLC_SPEC { - const RESET_VALUE: Self::Ux = 0x03; + const RESET_VALUE: u32 = 0x03; } diff --git a/src/can/fdr.rs b/src/can/fdr.rs index b9dd7f31..77207cec 100644 --- a/src/can/fdr.rs +++ b/src/can/fdr.rs @@ -136,10 +136,10 @@ impl crate::RegisterSpec for FDR_SPEC { impl crate::Readable for FDR_SPEC {} #[doc = "`write(|w| ..)` method takes [`fdr::W`](W) writer structure"] impl crate::Writable for FDR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FDR to value 0"] impl crate::Resettable for FDR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/id.rs b/src/can/id.rs index f4fba0df..69407c63 100644 --- a/src/can/id.rs +++ b/src/can/id.rs @@ -63,5 +63,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x002b_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x002b_c000; + const RESET_VALUE: u32 = 0x002b_c000; } diff --git a/src/can/list.rs b/src/can/list.rs index 23aa1b2b..3328ecff 100644 --- a/src/can/list.rs +++ b/src/can/list.rs @@ -74,5 +74,5 @@ impl crate::Readable for LIST_SPEC {} #[doc = "`reset()` method sets LIST[%s] to value 0"] impl crate::Resettable for LIST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/mcr.rs b/src/can/mcr.rs index 203e5550..f65af7f7 100644 --- a/src/can/mcr.rs +++ b/src/can/mcr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MCR_SPEC { impl crate::Readable for MCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mcr::W`](W) writer structure"] impl crate::Writable for MCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MCR to value 0"] impl crate::Resettable for MCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/mitr.rs b/src/can/mitr.rs index ca6a1a0f..f83fa763 100644 --- a/src/can/mitr.rs +++ b/src/can/mitr.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for MITR_SPEC { } #[doc = "`write(|w| ..)` method takes [`mitr::W`](W) writer structure"] impl crate::Writable for MITR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MITR to value 0"] impl crate::Resettable for MITR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/msid.rs b/src/can/msid.rs index 7367d456..bae28d51 100644 --- a/src/can/msid.rs +++ b/src/can/msid.rs @@ -19,5 +19,5 @@ impl crate::Readable for MSID_SPEC {} #[doc = "`reset()` method sets MSID[%s] to value 0x20"] impl crate::Resettable for MSID_SPEC { - const RESET_VALUE: Self::Ux = 0x20; + const RESET_VALUE: u32 = 0x20; } diff --git a/src/can/msimask.rs b/src/can/msimask.rs index 260644f5..5725b3fd 100644 --- a/src/can/msimask.rs +++ b/src/can/msimask.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MSIMASK_SPEC { impl crate::Readable for MSIMASK_SPEC {} #[doc = "`write(|w| ..)` method takes [`msimask::W`](W) writer structure"] impl crate::Writable for MSIMASK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MSIMASK to value 0"] impl crate::Resettable for MSIMASK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/mspnd.rs b/src/can/mspnd.rs index e74bc6c1..d777c6cf 100644 --- a/src/can/mspnd.rs +++ b/src/can/mspnd.rs @@ -40,11 +40,11 @@ impl crate::RegisterSpec for MSPND_SPEC { impl crate::Readable for MSPND_SPEC {} #[doc = "`write(|w| ..)` method takes [`mspnd::W`](W) writer structure"] impl crate::Writable for MSPND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MSPND[%s] to value 0"] impl crate::Resettable for MSPND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can/panctr.rs b/src/can/panctr.rs index 5e651c33..78f7787f 100644 --- a/src/can/panctr.rs +++ b/src/can/panctr.rs @@ -152,10 +152,10 @@ impl crate::RegisterSpec for PANCTR_SPEC { impl crate::Readable for PANCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`panctr::W`](W) writer structure"] impl crate::Writable for PANCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PANCTR to value 0x0301"] impl crate::Resettable for PANCTR_SPEC { - const RESET_VALUE: Self::Ux = 0x0301; + const RESET_VALUE: u32 = 0x0301; } diff --git a/src/can_mo0/moamr.rs b/src/can_mo0/moamr.rs index aa88763d..e560f526 100644 --- a/src/can_mo0/moamr.rs +++ b/src/can_mo0/moamr.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for MOAMR_SPEC { impl crate::Readable for MOAMR_SPEC {} #[doc = "`write(|w| ..)` method takes [`moamr::W`](W) writer structure"] impl crate::Writable for MOAMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOAMR to value 0x3fff_ffff"] impl crate::Resettable for MOAMR_SPEC { - const RESET_VALUE: Self::Ux = 0x3fff_ffff; + const RESET_VALUE: u32 = 0x3fff_ffff; } diff --git a/src/can_mo0/moar.rs b/src/can_mo0/moar.rs index 7d54d941..37ac65e1 100644 --- a/src/can_mo0/moar.rs +++ b/src/can_mo0/moar.rs @@ -200,10 +200,10 @@ impl crate::RegisterSpec for MOAR_SPEC { impl crate::Readable for MOAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`moar::W`](W) writer structure"] impl crate::Writable for MOAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOAR to value 0"] impl crate::Resettable for MOAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/moctr.rs b/src/can_mo0/moctr.rs index 3c0aba7a..f10f2f34 100644 --- a/src/can_mo0/moctr.rs +++ b/src/can_mo0/moctr.rs @@ -211,10 +211,10 @@ impl crate::RegisterSpec for MOCTR_SPEC { } #[doc = "`write(|w| ..)` method takes [`moctr::W`](W) writer structure"] impl crate::Writable for MOCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOCTR to value 0"] impl crate::Resettable for MOCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/modatah.rs b/src/can_mo0/modatah.rs index 06ed07d6..f105bc92 100644 --- a/src/can_mo0/modatah.rs +++ b/src/can_mo0/modatah.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MODATAH_SPEC { impl crate::Readable for MODATAH_SPEC {} #[doc = "`write(|w| ..)` method takes [`modatah::W`](W) writer structure"] impl crate::Writable for MODATAH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MODATAH to value 0"] impl crate::Resettable for MODATAH_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/modatal.rs b/src/can_mo0/modatal.rs index b34f0c39..cad68271 100644 --- a/src/can_mo0/modatal.rs +++ b/src/can_mo0/modatal.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MODATAL_SPEC { impl crate::Readable for MODATAL_SPEC {} #[doc = "`write(|w| ..)` method takes [`modatal::W`](W) writer structure"] impl crate::Writable for MODATAL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MODATAL to value 0"] impl crate::Resettable for MODATAL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/mofcr.rs b/src/can_mo0/mofcr.rs index e6541b25..01a8d364 100644 --- a/src/can_mo0/mofcr.rs +++ b/src/can_mo0/mofcr.rs @@ -755,10 +755,10 @@ impl crate::RegisterSpec for MOFCR_SPEC { impl crate::Readable for MOFCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mofcr::W`](W) writer structure"] impl crate::Writable for MOFCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOFCR to value 0"] impl crate::Resettable for MOFCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/mofgpr.rs b/src/can_mo0/mofgpr.rs index dfe53182..cc7eeec3 100644 --- a/src/can_mo0/mofgpr.rs +++ b/src/can_mo0/mofgpr.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MOFGPR_SPEC { impl crate::Readable for MOFGPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mofgpr::W`](W) writer structure"] impl crate::Writable for MOFGPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOFGPR to value 0"] impl crate::Resettable for MOFGPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/moipr.rs b/src/can_mo0/moipr.rs index 44a52cea..088f2953 100644 --- a/src/can_mo0/moipr.rs +++ b/src/can_mo0/moipr.rs @@ -221,10 +221,10 @@ impl crate::RegisterSpec for MOIPR_SPEC { impl crate::Readable for MOIPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`moipr::W`](W) writer structure"] impl crate::Writable for MOIPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MOIPR to value 0"] impl crate::Resettable for MOIPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_mo0/mostat.rs b/src/can_mo0/mostat.rs index 083c90e4..fbc968b0 100644 --- a/src/can_mo0/mostat.rs +++ b/src/can_mo0/mostat.rs @@ -524,5 +524,5 @@ impl crate::RegisterSpec for MOSTAT_SPEC { impl crate::Readable for MOSTAT_SPEC {} #[doc = "`reset()` method sets MOSTAT to value 0"] impl crate::Resettable for MOSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_node0/nbtr.rs b/src/can_node0/nbtr.rs index 0d100276..227f6f3c 100644 --- a/src/can_node0/nbtr.rs +++ b/src/can_node0/nbtr.rs @@ -149,10 +149,10 @@ impl crate::RegisterSpec for NBTR_SPEC { impl crate::Readable for NBTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`nbtr::W`](W) writer structure"] impl crate::Writable for NBTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NBTR to value 0"] impl crate::Resettable for NBTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_node0/ncr.rs b/src/can_node0/ncr.rs index 8fc86ff8..5218efd2 100644 --- a/src/can_node0/ncr.rs +++ b/src/can_node0/ncr.rs @@ -439,10 +439,10 @@ impl crate::RegisterSpec for NCR_SPEC { impl crate::Readable for NCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ncr::W`](W) writer structure"] impl crate::Writable for NCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NCR to value 0x01"] impl crate::Resettable for NCR_SPEC { - const RESET_VALUE: Self::Ux = 0x01; + const RESET_VALUE: u32 = 0x01; } diff --git a/src/can_node0/necnt.rs b/src/can_node0/necnt.rs index e45a451f..82fe9089 100644 --- a/src/can_node0/necnt.rs +++ b/src/can_node0/necnt.rs @@ -152,10 +152,10 @@ impl crate::RegisterSpec for NECNT_SPEC { impl crate::Readable for NECNT_SPEC {} #[doc = "`write(|w| ..)` method takes [`necnt::W`](W) writer structure"] impl crate::Writable for NECNT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NECNT to value 0x0060_0000"] impl crate::Resettable for NECNT_SPEC { - const RESET_VALUE: Self::Ux = 0x0060_0000; + const RESET_VALUE: u32 = 0x0060_0000; } diff --git a/src/can_node0/nfcr.rs b/src/can_node0/nfcr.rs index 6d0d86f4..222335af 100644 --- a/src/can_node0/nfcr.rs +++ b/src/can_node0/nfcr.rs @@ -308,10 +308,10 @@ impl crate::RegisterSpec for NFCR_SPEC { impl crate::Readable for NFCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`nfcr::W`](W) writer structure"] impl crate::Writable for NFCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NFCR to value 0"] impl crate::Resettable for NFCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_node0/nipr.rs b/src/can_node0/nipr.rs index 59a99b5e..36066b3b 100644 --- a/src/can_node0/nipr.rs +++ b/src/can_node0/nipr.rs @@ -357,10 +357,10 @@ impl crate::RegisterSpec for NIPR_SPEC { impl crate::Readable for NIPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`nipr::W`](W) writer structure"] impl crate::Writable for NIPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NIPR to value 0"] impl crate::Resettable for NIPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_node0/npcr.rs b/src/can_node0/npcr.rs index 897882f9..f010c856 100644 --- a/src/can_node0/npcr.rs +++ b/src/can_node0/npcr.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for NPCR_SPEC { impl crate::Readable for NPCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`npcr::W`](W) writer structure"] impl crate::Writable for NPCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NPCR to value 0"] impl crate::Resettable for NPCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/can_node0/nsr.rs b/src/can_node0/nsr.rs index f1bd9d7b..1cacd88a 100644 --- a/src/can_node0/nsr.rs +++ b/src/can_node0/nsr.rs @@ -434,10 +434,10 @@ impl crate::RegisterSpec for NSR_SPEC { impl crate::Readable for NSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`nsr::W`](W) writer structure"] impl crate::Writable for NSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NSR to value 0"] impl crate::Resettable for NSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/ecrd.rs b/src/ccu40/ecrd.rs index 957230b4..b46a40c1 100644 --- a/src/ccu40/ecrd.rs +++ b/src/ccu40/ecrd.rs @@ -190,5 +190,5 @@ impl crate::RegisterSpec for ECRD_SPEC { impl crate::Readable for ECRD_SPEC {} #[doc = "`reset()` method sets ECRD to value 0"] impl crate::Resettable for ECRD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gcsc.rs b/src/ccu40/gcsc.rs index b318ec4f..9d18242e 100644 --- a/src/ccu40/gcsc.rs +++ b/src/ccu40/gcsc.rs @@ -147,10 +147,10 @@ impl crate::RegisterSpec for GCSC_SPEC { } #[doc = "`write(|w| ..)` method takes [`gcsc::W`](W) writer structure"] impl crate::Writable for GCSC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCSC to value 0"] impl crate::Resettable for GCSC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gcss.rs b/src/ccu40/gcss.rs index 588c4c6a..148cf994 100644 --- a/src/ccu40/gcss.rs +++ b/src/ccu40/gcss.rs @@ -147,10 +147,10 @@ impl crate::RegisterSpec for GCSS_SPEC { } #[doc = "`write(|w| ..)` method takes [`gcss::W`](W) writer structure"] impl crate::Writable for GCSS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCSS to value 0"] impl crate::Resettable for GCSS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gcst.rs b/src/ccu40/gcst.rs index bd028697..d1e68502 100644 --- a/src/ccu40/gcst.rs +++ b/src/ccu40/gcst.rs @@ -531,5 +531,5 @@ impl crate::RegisterSpec for GCST_SPEC { impl crate::Readable for GCST_SPEC {} #[doc = "`reset()` method sets GCST to value 0"] impl crate::Resettable for GCST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gctrl.rs b/src/ccu40/gctrl.rs index 68719b69..567d5352 100644 --- a/src/ccu40/gctrl.rs +++ b/src/ccu40/gctrl.rs @@ -665,10 +665,10 @@ impl crate::RegisterSpec for GCTRL_SPEC { impl crate::Readable for GCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`gctrl::W`](W) writer structure"] impl crate::Writable for GCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCTRL to value 0"] impl crate::Resettable for GCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gidlc.rs b/src/ccu40/gidlc.rs index c1c5523f..008c338a 100644 --- a/src/ccu40/gidlc.rs +++ b/src/ccu40/gidlc.rs @@ -59,10 +59,10 @@ impl crate::RegisterSpec for GIDLC_SPEC { } #[doc = "`write(|w| ..)` method takes [`gidlc::W`](W) writer structure"] impl crate::Writable for GIDLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GIDLC to value 0"] impl crate::Resettable for GIDLC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gidls.rs b/src/ccu40/gidls.rs index 1ae68552..f2a08af3 100644 --- a/src/ccu40/gidls.rs +++ b/src/ccu40/gidls.rs @@ -67,10 +67,10 @@ impl crate::RegisterSpec for GIDLS_SPEC { } #[doc = "`write(|w| ..)` method takes [`gidls::W`](W) writer structure"] impl crate::Writable for GIDLS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GIDLS to value 0"] impl crate::Resettable for GIDLS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40/gstat.rs b/src/ccu40/gstat.rs index 03f6553e..ada707a7 100644 --- a/src/ccu40/gstat.rs +++ b/src/ccu40/gstat.rs @@ -216,5 +216,5 @@ impl crate::RegisterSpec for GSTAT_SPEC { impl crate::Readable for GSTAT_SPEC {} #[doc = "`reset()` method sets GSTAT to value 0x0f"] impl crate::Resettable for GSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0x0f; + const RESET_VALUE: u32 = 0x0f; } diff --git a/src/ccu40/midr.rs b/src/ccu40/midr.rs index 0a8af589..a00c3cf8 100644 --- a/src/ccu40/midr.rs +++ b/src/ccu40/midr.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for MIDR_SPEC { impl crate::Readable for MIDR_SPEC {} #[doc = "`reset()` method sets MIDR to value 0x00a6_c000"] impl crate::Resettable for MIDR_SPEC { - const RESET_VALUE: Self::Ux = 0x00a6_c000; + const RESET_VALUE: u32 = 0x00a6_c000; } diff --git a/src/ccu40_cc40/c0v.rs b/src/ccu40_cc40/c0v.rs index 036d5409..3c74379a 100644 --- a/src/ccu40_cc40/c0v.rs +++ b/src/ccu40_cc40/c0v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C0V_SPEC { impl crate::Readable for C0V_SPEC {} #[doc = "`reset()` method sets C0V to value 0"] impl crate::Resettable for C0V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/c1v.rs b/src/ccu40_cc40/c1v.rs index 913cd147..f0a726d2 100644 --- a/src/ccu40_cc40/c1v.rs +++ b/src/ccu40_cc40/c1v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C1V_SPEC { impl crate::Readable for C1V_SPEC {} #[doc = "`reset()` method sets C1V to value 0"] impl crate::Resettable for C1V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/c2v.rs b/src/ccu40_cc40/c2v.rs index 4bd8e5f5..5f3c0663 100644 --- a/src/ccu40_cc40/c2v.rs +++ b/src/ccu40_cc40/c2v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C2V_SPEC { impl crate::Readable for C2V_SPEC {} #[doc = "`reset()` method sets C2V to value 0"] impl crate::Resettable for C2V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/c3v.rs b/src/ccu40_cc40/c3v.rs index b30c41b3..f9f08e73 100644 --- a/src/ccu40_cc40/c3v.rs +++ b/src/ccu40_cc40/c3v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C3V_SPEC { impl crate::Readable for C3V_SPEC {} #[doc = "`reset()` method sets C3V to value 0"] impl crate::Resettable for C3V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/cmc.rs b/src/ccu40_cc40/cmc.rs index 36d4acae..89c4f682 100644 --- a/src/ccu40_cc40/cmc.rs +++ b/src/ccu40_cc40/cmc.rs @@ -919,10 +919,10 @@ impl crate::RegisterSpec for CMC_SPEC { impl crate::Readable for CMC_SPEC {} #[doc = "`write(|w| ..)` method takes [`cmc::W`](W) writer structure"] impl crate::Writable for CMC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CMC to value 0"] impl crate::Resettable for CMC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/cr.rs b/src/ccu40_cc40/cr.rs index 203ff092..6a3a7ff7 100644 --- a/src/ccu40_cc40/cr.rs +++ b/src/ccu40_cc40/cr.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CR_SPEC { impl crate::Readable for CR_SPEC {} #[doc = "`reset()` method sets CR to value 0"] impl crate::Resettable for CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/crs.rs b/src/ccu40_cc40/crs.rs index 086aab58..d11b0396 100644 --- a/src/ccu40_cc40/crs.rs +++ b/src/ccu40_cc40/crs.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CRS_SPEC { impl crate::Readable for CRS_SPEC {} #[doc = "`write(|w| ..)` method takes [`crs::W`](W) writer structure"] impl crate::Writable for CRS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CRS to value 0"] impl crate::Resettable for CRS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/dit.rs b/src/ccu40_cc40/dit.rs index 124d573b..02e005ab 100644 --- a/src/ccu40_cc40/dit.rs +++ b/src/ccu40_cc40/dit.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for DIT_SPEC { impl crate::Readable for DIT_SPEC {} #[doc = "`reset()` method sets DIT to value 0"] impl crate::Resettable for DIT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/dits.rs b/src/ccu40_cc40/dits.rs index 3b095fd1..4039d3e7 100644 --- a/src/ccu40_cc40/dits.rs +++ b/src/ccu40_cc40/dits.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DITS_SPEC { impl crate::Readable for DITS_SPEC {} #[doc = "`write(|w| ..)` method takes [`dits::W`](W) writer structure"] impl crate::Writable for DITS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DITS to value 0"] impl crate::Resettable for DITS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/fpc.rs b/src/ccu40_cc40/fpc.rs index c4e2abbf..28d48e97 100644 --- a/src/ccu40_cc40/fpc.rs +++ b/src/ccu40_cc40/fpc.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for FPC_SPEC { impl crate::Readable for FPC_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpc::W`](W) writer structure"] impl crate::Writable for FPC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPC to value 0"] impl crate::Resettable for FPC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/fpcs.rs b/src/ccu40_cc40/fpcs.rs index 83b6b1d3..127bce15 100644 --- a/src/ccu40_cc40/fpcs.rs +++ b/src/ccu40_cc40/fpcs.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for FPCS_SPEC { impl crate::Readable for FPCS_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpcs::W`](W) writer structure"] impl crate::Writable for FPCS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPCS to value 0"] impl crate::Resettable for FPCS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/ins.rs b/src/ccu40_cc40/ins.rs index c1985295..e9b0f382 100644 --- a/src/ccu40_cc40/ins.rs +++ b/src/ccu40_cc40/ins.rs @@ -1549,10 +1549,10 @@ impl crate::RegisterSpec for INS_SPEC { impl crate::Readable for INS_SPEC {} #[doc = "`write(|w| ..)` method takes [`ins::W`](W) writer structure"] impl crate::Writable for INS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INS to value 0"] impl crate::Resettable for INS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/inte.rs b/src/ccu40_cc40/inte.rs index f4f16cdf..20cdcafb 100644 --- a/src/ccu40_cc40/inte.rs +++ b/src/ccu40_cc40/inte.rs @@ -473,10 +473,10 @@ impl crate::RegisterSpec for INTE_SPEC { impl crate::Readable for INTE_SPEC {} #[doc = "`write(|w| ..)` method takes [`inte::W`](W) writer structure"] impl crate::Writable for INTE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INTE to value 0"] impl crate::Resettable for INTE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/ints.rs b/src/ccu40_cc40/ints.rs index 24a6afdb..1e1cdb88 100644 --- a/src/ccu40_cc40/ints.rs +++ b/src/ccu40_cc40/ints.rs @@ -305,5 +305,5 @@ impl crate::RegisterSpec for INTS_SPEC { impl crate::Readable for INTS_SPEC {} #[doc = "`reset()` method sets INTS to value 0"] impl crate::Resettable for INTS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/pr.rs b/src/ccu40_cc40/pr.rs index 0c5cb46f..33893da5 100644 --- a/src/ccu40_cc40/pr.rs +++ b/src/ccu40_cc40/pr.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for PR_SPEC { impl crate::Readable for PR_SPEC {} #[doc = "`reset()` method sets PR to value 0"] impl crate::Resettable for PR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/prs.rs b/src/ccu40_cc40/prs.rs index 06dd30c4..42b94e8d 100644 --- a/src/ccu40_cc40/prs.rs +++ b/src/ccu40_cc40/prs.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for PRS_SPEC { impl crate::Readable for PRS_SPEC {} #[doc = "`write(|w| ..)` method takes [`prs::W`](W) writer structure"] impl crate::Writable for PRS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRS to value 0"] impl crate::Resettable for PRS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/psc.rs b/src/ccu40_cc40/psc.rs index 2021519b..bf44f412 100644 --- a/src/ccu40_cc40/psc.rs +++ b/src/ccu40_cc40/psc.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for PSC_SPEC { impl crate::Readable for PSC_SPEC {} #[doc = "`write(|w| ..)` method takes [`psc::W`](W) writer structure"] impl crate::Writable for PSC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSC to value 0"] impl crate::Resettable for PSC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/psl.rs b/src/ccu40_cc40/psl.rs index 38ecb7be..5ceb04fd 100644 --- a/src/ccu40_cc40/psl.rs +++ b/src/ccu40_cc40/psl.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for PSL_SPEC { impl crate::Readable for PSL_SPEC {} #[doc = "`write(|w| ..)` method takes [`psl::W`](W) writer structure"] impl crate::Writable for PSL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSL to value 0"] impl crate::Resettable for PSL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/srs.rs b/src/ccu40_cc40/srs.rs index c0e85ba0..d4c0ff90 100644 --- a/src/ccu40_cc40/srs.rs +++ b/src/ccu40_cc40/srs.rs @@ -505,10 +505,10 @@ impl crate::RegisterSpec for SRS_SPEC { impl crate::Readable for SRS_SPEC {} #[doc = "`write(|w| ..)` method takes [`srs::W`](W) writer structure"] impl crate::Writable for SRS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRS to value 0"] impl crate::Resettable for SRS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/swr.rs b/src/ccu40_cc40/swr.rs index 9c8203f3..b2f1c50d 100644 --- a/src/ccu40_cc40/swr.rs +++ b/src/ccu40_cc40/swr.rs @@ -83,10 +83,10 @@ impl crate::RegisterSpec for SWR_SPEC { } #[doc = "`write(|w| ..)` method takes [`swr::W`](W) writer structure"] impl crate::Writable for SWR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SWR to value 0"] impl crate::Resettable for SWR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/sws.rs b/src/ccu40_cc40/sws.rs index 8d5e9b8e..6c3201b9 100644 --- a/src/ccu40_cc40/sws.rs +++ b/src/ccu40_cc40/sws.rs @@ -83,10 +83,10 @@ impl crate::RegisterSpec for SWS_SPEC { } #[doc = "`write(|w| ..)` method takes [`sws::W`](W) writer structure"] impl crate::Writable for SWS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SWS to value 0"] impl crate::Resettable for SWS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/tc.rs b/src/ccu40_cc40/tc.rs index bc64d77c..4408f51b 100644 --- a/src/ccu40_cc40/tc.rs +++ b/src/ccu40_cc40/tc.rs @@ -1252,10 +1252,10 @@ impl crate::RegisterSpec for TC_SPEC { impl crate::Readable for TC_SPEC {} #[doc = "`write(|w| ..)` method takes [`tc::W`](W) writer structure"] impl crate::Writable for TC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TC to value 0"] impl crate::Resettable for TC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/tcclr.rs b/src/ccu40_cc40/tcclr.rs index 5471827c..e1223cf8 100644 --- a/src/ccu40_cc40/tcclr.rs +++ b/src/ccu40_cc40/tcclr.rs @@ -43,10 +43,10 @@ impl crate::RegisterSpec for TCCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`tcclr::W`](W) writer structure"] impl crate::Writable for TCCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TCCLR to value 0"] impl crate::Resettable for TCCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/tcset.rs b/src/ccu40_cc40/tcset.rs index 9681d83d..3fd6bb58 100644 --- a/src/ccu40_cc40/tcset.rs +++ b/src/ccu40_cc40/tcset.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for TCSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`tcset::W`](W) writer structure"] impl crate::Writable for TCSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TCSET to value 0"] impl crate::Resettable for TCSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/tcst.rs b/src/ccu40_cc40/tcst.rs index c7999613..88060df7 100644 --- a/src/ccu40_cc40/tcst.rs +++ b/src/ccu40_cc40/tcst.rs @@ -93,5 +93,5 @@ impl crate::RegisterSpec for TCST_SPEC { impl crate::Readable for TCST_SPEC {} #[doc = "`reset()` method sets TCST to value 0"] impl crate::Resettable for TCST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu40_cc40/timer.rs b/src/ccu40_cc40/timer.rs index 456ff2cf..5aaa3b81 100644 --- a/src/ccu40_cc40/timer.rs +++ b/src/ccu40_cc40/timer.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TIMER_SPEC { impl crate::Readable for TIMER_SPEC {} #[doc = "`write(|w| ..)` method takes [`timer::W`](W) writer structure"] impl crate::Writable for TIMER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIMER to value 0"] impl crate::Resettable for TIMER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/ecrd.rs b/src/ccu80/ecrd.rs index 5ae72f7a..a9de5c89 100644 --- a/src/ccu80/ecrd.rs +++ b/src/ccu80/ecrd.rs @@ -190,5 +190,5 @@ impl crate::RegisterSpec for ECRD_SPEC { impl crate::Readable for ECRD_SPEC {} #[doc = "`reset()` method sets ECRD to value 0"] impl crate::Resettable for ECRD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gcsc.rs b/src/ccu80/gcsc.rs index 3fe8e49d..012209a0 100644 --- a/src/ccu80/gcsc.rs +++ b/src/ccu80/gcsc.rs @@ -179,10 +179,10 @@ impl crate::RegisterSpec for GCSC_SPEC { } #[doc = "`write(|w| ..)` method takes [`gcsc::W`](W) writer structure"] impl crate::Writable for GCSC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCSC to value 0"] impl crate::Resettable for GCSC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gcss.rs b/src/ccu80/gcss.rs index 16490bac..f3a7dc14 100644 --- a/src/ccu80/gcss.rs +++ b/src/ccu80/gcss.rs @@ -179,10 +179,10 @@ impl crate::RegisterSpec for GCSS_SPEC { } #[doc = "`write(|w| ..)` method takes [`gcss::W`](W) writer structure"] impl crate::Writable for GCSS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCSS to value 0"] impl crate::Resettable for GCSS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gcst.rs b/src/ccu80/gcst.rs index 910aa452..15e89172 100644 --- a/src/ccu80/gcst.rs +++ b/src/ccu80/gcst.rs @@ -559,5 +559,5 @@ impl crate::RegisterSpec for GCST_SPEC { impl crate::Readable for GCST_SPEC {} #[doc = "`reset()` method sets GCST to value 0"] impl crate::Resettable for GCST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gctrl.rs b/src/ccu80/gctrl.rs index 7f54039c..ba2566f1 100644 --- a/src/ccu80/gctrl.rs +++ b/src/ccu80/gctrl.rs @@ -665,10 +665,10 @@ impl crate::RegisterSpec for GCTRL_SPEC { impl crate::Readable for GCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`gctrl::W`](W) writer structure"] impl crate::Writable for GCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GCTRL to value 0"] impl crate::Resettable for GCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gidlc.rs b/src/ccu80/gidlc.rs index 0f916b5b..a5d49fa1 100644 --- a/src/ccu80/gidlc.rs +++ b/src/ccu80/gidlc.rs @@ -67,10 +67,10 @@ impl crate::RegisterSpec for GIDLC_SPEC { } #[doc = "`write(|w| ..)` method takes [`gidlc::W`](W) writer structure"] impl crate::Writable for GIDLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GIDLC to value 0"] impl crate::Resettable for GIDLC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gidls.rs b/src/ccu80/gidls.rs index 73f2fda6..1e91ec4a 100644 --- a/src/ccu80/gidls.rs +++ b/src/ccu80/gidls.rs @@ -75,10 +75,10 @@ impl crate::RegisterSpec for GIDLS_SPEC { } #[doc = "`write(|w| ..)` method takes [`gidls::W`](W) writer structure"] impl crate::Writable for GIDLS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GIDLS to value 0"] impl crate::Resettable for GIDLS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gpchk.rs b/src/ccu80/gpchk.rs index 5971f0c3..a3fe8d82 100644 --- a/src/ccu80/gpchk.rs +++ b/src/ccu80/gpchk.rs @@ -459,10 +459,10 @@ impl crate::RegisterSpec for GPCHK_SPEC { impl crate::Readable for GPCHK_SPEC {} #[doc = "`write(|w| ..)` method takes [`gpchk::W`](W) writer structure"] impl crate::Writable for GPCHK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GPCHK to value 0"] impl crate::Resettable for GPCHK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80/gstat.rs b/src/ccu80/gstat.rs index 630fb5c1..74963899 100644 --- a/src/ccu80/gstat.rs +++ b/src/ccu80/gstat.rs @@ -257,5 +257,5 @@ impl crate::RegisterSpec for GSTAT_SPEC { impl crate::Readable for GSTAT_SPEC {} #[doc = "`reset()` method sets GSTAT to value 0x0f"] impl crate::Resettable for GSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0x0f; + const RESET_VALUE: u32 = 0x0f; } diff --git a/src/ccu80/midr.rs b/src/ccu80/midr.rs index cb849160..10cbacbb 100644 --- a/src/ccu80/midr.rs +++ b/src/ccu80/midr.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for MIDR_SPEC { impl crate::Readable for MIDR_SPEC {} #[doc = "`reset()` method sets MIDR to value 0x00a7_c000"] impl crate::Resettable for MIDR_SPEC { - const RESET_VALUE: Self::Ux = 0x00a7_c000; + const RESET_VALUE: u32 = 0x00a7_c000; } diff --git a/src/ccu80_cc80/c0v.rs b/src/ccu80_cc80/c0v.rs index 036d5409..3c74379a 100644 --- a/src/ccu80_cc80/c0v.rs +++ b/src/ccu80_cc80/c0v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C0V_SPEC { impl crate::Readable for C0V_SPEC {} #[doc = "`reset()` method sets C0V to value 0"] impl crate::Resettable for C0V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/c1v.rs b/src/ccu80_cc80/c1v.rs index 913cd147..f0a726d2 100644 --- a/src/ccu80_cc80/c1v.rs +++ b/src/ccu80_cc80/c1v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C1V_SPEC { impl crate::Readable for C1V_SPEC {} #[doc = "`reset()` method sets C1V to value 0"] impl crate::Resettable for C1V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/c2v.rs b/src/ccu80_cc80/c2v.rs index 4bd8e5f5..5f3c0663 100644 --- a/src/ccu80_cc80/c2v.rs +++ b/src/ccu80_cc80/c2v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C2V_SPEC { impl crate::Readable for C2V_SPEC {} #[doc = "`reset()` method sets C2V to value 0"] impl crate::Resettable for C2V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/c3v.rs b/src/ccu80_cc80/c3v.rs index b30c41b3..f9f08e73 100644 --- a/src/ccu80_cc80/c3v.rs +++ b/src/ccu80_cc80/c3v.rs @@ -66,5 +66,5 @@ impl crate::RegisterSpec for C3V_SPEC { impl crate::Readable for C3V_SPEC {} #[doc = "`reset()` method sets C3V to value 0"] impl crate::Resettable for C3V_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/chc.rs b/src/ccu80_cc80/chc.rs index cf686bda..bf596cde 100644 --- a/src/ccu80_cc80/chc.rs +++ b/src/ccu80_cc80/chc.rs @@ -345,10 +345,10 @@ impl crate::RegisterSpec for CHC_SPEC { impl crate::Readable for CHC_SPEC {} #[doc = "`write(|w| ..)` method takes [`chc::W`](W) writer structure"] impl crate::Writable for CHC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHC to value 0"] impl crate::Resettable for CHC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/cmc.rs b/src/ccu80_cc80/cmc.rs index 36d4acae..89c4f682 100644 --- a/src/ccu80_cc80/cmc.rs +++ b/src/ccu80_cc80/cmc.rs @@ -919,10 +919,10 @@ impl crate::RegisterSpec for CMC_SPEC { impl crate::Readable for CMC_SPEC {} #[doc = "`write(|w| ..)` method takes [`cmc::W`](W) writer structure"] impl crate::Writable for CMC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CMC to value 0"] impl crate::Resettable for CMC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/cr1.rs b/src/ccu80_cc80/cr1.rs index 59eb5813..9b6f129a 100644 --- a/src/ccu80_cc80/cr1.rs +++ b/src/ccu80_cc80/cr1.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CR1_SPEC { impl crate::Readable for CR1_SPEC {} #[doc = "`reset()` method sets CR1 to value 0"] impl crate::Resettable for CR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/cr1s.rs b/src/ccu80_cc80/cr1s.rs index cc84d653..962bd95a 100644 --- a/src/ccu80_cc80/cr1s.rs +++ b/src/ccu80_cc80/cr1s.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CR1S_SPEC { impl crate::Readable for CR1S_SPEC {} #[doc = "`write(|w| ..)` method takes [`cr1s::W`](W) writer structure"] impl crate::Writable for CR1S_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CR1S to value 0"] impl crate::Resettable for CR1S_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/cr2.rs b/src/ccu80_cc80/cr2.rs index cc8cb0ba..033fed80 100644 --- a/src/ccu80_cc80/cr2.rs +++ b/src/ccu80_cc80/cr2.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CR2_SPEC { impl crate::Readable for CR2_SPEC {} #[doc = "`reset()` method sets CR2 to value 0"] impl crate::Resettable for CR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/cr2s.rs b/src/ccu80_cc80/cr2s.rs index b1e1f990..ba50f01f 100644 --- a/src/ccu80_cc80/cr2s.rs +++ b/src/ccu80_cc80/cr2s.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CR2S_SPEC { impl crate::Readable for CR2S_SPEC {} #[doc = "`write(|w| ..)` method takes [`cr2s::W`](W) writer structure"] impl crate::Writable for CR2S_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CR2S to value 0"] impl crate::Resettable for CR2S_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/dc1r.rs b/src/ccu80_cc80/dc1r.rs index 95284e1f..bec35d96 100644 --- a/src/ccu80_cc80/dc1r.rs +++ b/src/ccu80_cc80/dc1r.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DC1R_SPEC { impl crate::Readable for DC1R_SPEC {} #[doc = "`write(|w| ..)` method takes [`dc1r::W`](W) writer structure"] impl crate::Writable for DC1R_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DC1R to value 0"] impl crate::Resettable for DC1R_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/dc2r.rs b/src/ccu80_cc80/dc2r.rs index 729f6c78..55349999 100644 --- a/src/ccu80_cc80/dc2r.rs +++ b/src/ccu80_cc80/dc2r.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DC2R_SPEC { impl crate::Readable for DC2R_SPEC {} #[doc = "`write(|w| ..)` method takes [`dc2r::W`](W) writer structure"] impl crate::Writable for DC2R_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DC2R to value 0"] impl crate::Resettable for DC2R_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/dit.rs b/src/ccu80_cc80/dit.rs index 124d573b..02e005ab 100644 --- a/src/ccu80_cc80/dit.rs +++ b/src/ccu80_cc80/dit.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for DIT_SPEC { impl crate::Readable for DIT_SPEC {} #[doc = "`reset()` method sets DIT to value 0"] impl crate::Resettable for DIT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/dits.rs b/src/ccu80_cc80/dits.rs index 3b095fd1..4039d3e7 100644 --- a/src/ccu80_cc80/dits.rs +++ b/src/ccu80_cc80/dits.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DITS_SPEC { impl crate::Readable for DITS_SPEC {} #[doc = "`write(|w| ..)` method takes [`dits::W`](W) writer structure"] impl crate::Writable for DITS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DITS to value 0"] impl crate::Resettable for DITS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/dtc.rs b/src/ccu80_cc80/dtc.rs index 618504d0..2695a344 100644 --- a/src/ccu80_cc80/dtc.rs +++ b/src/ccu80_cc80/dtc.rs @@ -505,10 +505,10 @@ impl crate::RegisterSpec for DTC_SPEC { impl crate::Readable for DTC_SPEC {} #[doc = "`write(|w| ..)` method takes [`dtc::W`](W) writer structure"] impl crate::Writable for DTC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DTC to value 0"] impl crate::Resettable for DTC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/fpc.rs b/src/ccu80_cc80/fpc.rs index c4e2abbf..28d48e97 100644 --- a/src/ccu80_cc80/fpc.rs +++ b/src/ccu80_cc80/fpc.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for FPC_SPEC { impl crate::Readable for FPC_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpc::W`](W) writer structure"] impl crate::Writable for FPC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPC to value 0"] impl crate::Resettable for FPC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/fpcs.rs b/src/ccu80_cc80/fpcs.rs index 83b6b1d3..127bce15 100644 --- a/src/ccu80_cc80/fpcs.rs +++ b/src/ccu80_cc80/fpcs.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for FPCS_SPEC { impl crate::Readable for FPCS_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpcs::W`](W) writer structure"] impl crate::Writable for FPCS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPCS to value 0"] impl crate::Resettable for FPCS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/ins.rs b/src/ccu80_cc80/ins.rs index eea1b75a..ca0f6379 100644 --- a/src/ccu80_cc80/ins.rs +++ b/src/ccu80_cc80/ins.rs @@ -1549,10 +1549,10 @@ impl crate::RegisterSpec for INS_SPEC { impl crate::Readable for INS_SPEC {} #[doc = "`write(|w| ..)` method takes [`ins::W`](W) writer structure"] impl crate::Writable for INS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INS to value 0"] impl crate::Resettable for INS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/inte.rs b/src/ccu80_cc80/inte.rs index 3a28a6a5..969cb96d 100644 --- a/src/ccu80_cc80/inte.rs +++ b/src/ccu80_cc80/inte.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for INTE_SPEC { impl crate::Readable for INTE_SPEC {} #[doc = "`write(|w| ..)` method takes [`inte::W`](W) writer structure"] impl crate::Writable for INTE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INTE to value 0"] impl crate::Resettable for INTE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/ints.rs b/src/ccu80_cc80/ints.rs index d5b19727..e0a08bed 100644 --- a/src/ccu80_cc80/ints.rs +++ b/src/ccu80_cc80/ints.rs @@ -387,5 +387,5 @@ impl crate::RegisterSpec for INTS_SPEC { impl crate::Readable for INTS_SPEC {} #[doc = "`reset()` method sets INTS to value 0"] impl crate::Resettable for INTS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/pr.rs b/src/ccu80_cc80/pr.rs index 0c5cb46f..33893da5 100644 --- a/src/ccu80_cc80/pr.rs +++ b/src/ccu80_cc80/pr.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for PR_SPEC { impl crate::Readable for PR_SPEC {} #[doc = "`reset()` method sets PR to value 0"] impl crate::Resettable for PR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/prs.rs b/src/ccu80_cc80/prs.rs index 06dd30c4..42b94e8d 100644 --- a/src/ccu80_cc80/prs.rs +++ b/src/ccu80_cc80/prs.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for PRS_SPEC { impl crate::Readable for PRS_SPEC {} #[doc = "`write(|w| ..)` method takes [`prs::W`](W) writer structure"] impl crate::Writable for PRS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRS to value 0"] impl crate::Resettable for PRS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/psc.rs b/src/ccu80_cc80/psc.rs index 2021519b..bf44f412 100644 --- a/src/ccu80_cc80/psc.rs +++ b/src/ccu80_cc80/psc.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for PSC_SPEC { impl crate::Readable for PSC_SPEC {} #[doc = "`write(|w| ..)` method takes [`psc::W`](W) writer structure"] impl crate::Writable for PSC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSC to value 0"] impl crate::Resettable for PSC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/psl.rs b/src/ccu80_cc80/psl.rs index 7cce80fe..6543fc9e 100644 --- a/src/ccu80_cc80/psl.rs +++ b/src/ccu80_cc80/psl.rs @@ -281,10 +281,10 @@ impl crate::RegisterSpec for PSL_SPEC { impl crate::Readable for PSL_SPEC {} #[doc = "`write(|w| ..)` method takes [`psl::W`](W) writer structure"] impl crate::Writable for PSL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSL to value 0"] impl crate::Resettable for PSL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/srs.rs b/src/ccu80_cc80/srs.rs index 055f31c0..1d685048 100644 --- a/src/ccu80_cc80/srs.rs +++ b/src/ccu80_cc80/srs.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for SRS_SPEC { impl crate::Readable for SRS_SPEC {} #[doc = "`write(|w| ..)` method takes [`srs::W`](W) writer structure"] impl crate::Writable for SRS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRS to value 0"] impl crate::Resettable for SRS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/swr.rs b/src/ccu80_cc80/swr.rs index c7c8eac3..3ef115ef 100644 --- a/src/ccu80_cc80/swr.rs +++ b/src/ccu80_cc80/swr.rs @@ -99,10 +99,10 @@ impl crate::RegisterSpec for SWR_SPEC { } #[doc = "`write(|w| ..)` method takes [`swr::W`](W) writer structure"] impl crate::Writable for SWR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SWR to value 0"] impl crate::Resettable for SWR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/sws.rs b/src/ccu80_cc80/sws.rs index 9247dd2b..1bfa6e8d 100644 --- a/src/ccu80_cc80/sws.rs +++ b/src/ccu80_cc80/sws.rs @@ -99,10 +99,10 @@ impl crate::RegisterSpec for SWS_SPEC { } #[doc = "`write(|w| ..)` method takes [`sws::W`](W) writer structure"] impl crate::Writable for SWS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SWS to value 0"] impl crate::Resettable for SWS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/tc.rs b/src/ccu80_cc80/tc.rs index aa9a387c..5513fd34 100644 --- a/src/ccu80_cc80/tc.rs +++ b/src/ccu80_cc80/tc.rs @@ -1604,10 +1604,10 @@ impl crate::RegisterSpec for TC_SPEC { impl crate::Readable for TC_SPEC {} #[doc = "`write(|w| ..)` method takes [`tc::W`](W) writer structure"] impl crate::Writable for TC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TC to value 0x1800_0000"] impl crate::Resettable for TC_SPEC { - const RESET_VALUE: Self::Ux = 0x1800_0000; + const RESET_VALUE: u32 = 0x1800_0000; } diff --git a/src/ccu80_cc80/tcclr.rs b/src/ccu80_cc80/tcclr.rs index bfa6e851..237c6f8b 100644 --- a/src/ccu80_cc80/tcclr.rs +++ b/src/ccu80_cc80/tcclr.rs @@ -59,10 +59,10 @@ impl crate::RegisterSpec for TCCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`tcclr::W`](W) writer structure"] impl crate::Writable for TCCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TCCLR to value 0"] impl crate::Resettable for TCCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/tcset.rs b/src/ccu80_cc80/tcset.rs index 9681d83d..3fd6bb58 100644 --- a/src/ccu80_cc80/tcset.rs +++ b/src/ccu80_cc80/tcset.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for TCSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`tcset::W`](W) writer structure"] impl crate::Writable for TCSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TCSET to value 0"] impl crate::Resettable for TCSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/tcst.rs b/src/ccu80_cc80/tcst.rs index 4d68fef4..50db0b3c 100644 --- a/src/ccu80_cc80/tcst.rs +++ b/src/ccu80_cc80/tcst.rs @@ -175,5 +175,5 @@ impl crate::RegisterSpec for TCST_SPEC { impl crate::Readable for TCST_SPEC {} #[doc = "`reset()` method sets TCST to value 0"] impl crate::Resettable for TCST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ccu80_cc80/timer.rs b/src/ccu80_cc80/timer.rs index 456ff2cf..5aaa3b81 100644 --- a/src/ccu80_cc80/timer.rs +++ b/src/ccu80_cc80/timer.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TIMER_SPEC { impl crate::Readable for TIMER_SPEC {} #[doc = "`write(|w| ..)` method takes [`timer::W`](W) writer structure"] impl crate::Writable for TIMER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIMER to value 0"] impl crate::Resettable for TIMER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac01data.rs b/src/dac/dac01data.rs index f865f2d7..ebcaa72c 100644 --- a/src/dac/dac01data.rs +++ b/src/dac/dac01data.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DAC01DATA_SPEC { impl crate::Readable for DAC01DATA_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac01data::W`](W) writer structure"] impl crate::Writable for DAC01DATA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC01DATA to value 0"] impl crate::Resettable for DAC01DATA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac0cfg0.rs b/src/dac/dac0cfg0.rs index 4f0001bf..94e02cdb 100644 --- a/src/dac/dac0cfg0.rs +++ b/src/dac/dac0cfg0.rs @@ -510,10 +510,10 @@ impl crate::RegisterSpec for DAC0CFG0_SPEC { impl crate::Readable for DAC0CFG0_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac0cfg0::W`](W) writer structure"] impl crate::Writable for DAC0CFG0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC0CFG0 to value 0"] impl crate::Resettable for DAC0CFG0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac0cfg1.rs b/src/dac/dac0cfg1.rs index 0a810b7c..76ba0eb8 100644 --- a/src/dac/dac0cfg1.rs +++ b/src/dac/dac0cfg1.rs @@ -523,10 +523,10 @@ impl crate::RegisterSpec for DAC0CFG1_SPEC { impl crate::Readable for DAC0CFG1_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac0cfg1::W`](W) writer structure"] impl crate::Writable for DAC0CFG1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC0CFG1 to value 0"] impl crate::Resettable for DAC0CFG1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac0data.rs b/src/dac/dac0data.rs index 2eeb5e3d..ecdf102c 100644 --- a/src/dac/dac0data.rs +++ b/src/dac/dac0data.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DAC0DATA_SPEC { impl crate::Readable for DAC0DATA_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac0data::W`](W) writer structure"] impl crate::Writable for DAC0DATA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC0DATA to value 0"] impl crate::Resettable for DAC0DATA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac0path.rs b/src/dac/dac0path.rs index 3f7bbbf2..757b6794 100644 --- a/src/dac/dac0path.rs +++ b/src/dac/dac0path.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for DAC0PATH_SPEC { impl crate::Readable for DAC0PATH_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac0path::W`](W) writer structure"] impl crate::Writable for DAC0PATH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC0PATH to value 0x7fdd"] impl crate::Resettable for DAC0PATH_SPEC { - const RESET_VALUE: Self::Ux = 0x7fdd; + const RESET_VALUE: u32 = 0x7fdd; } diff --git a/src/dac/dac0patl.rs b/src/dac/dac0patl.rs index 32feefe0..582c3478 100644 --- a/src/dac/dac0patl.rs +++ b/src/dac/dac0patl.rs @@ -115,10 +115,10 @@ impl crate::RegisterSpec for DAC0PATL_SPEC { impl crate::Readable for DAC0PATL_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac0patl::W`](W) writer structure"] impl crate::Writable for DAC0PATL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC0PATL to value 0x3568_b0c0"] impl crate::Resettable for DAC0PATL_SPEC { - const RESET_VALUE: Self::Ux = 0x3568_b0c0; + const RESET_VALUE: u32 = 0x3568_b0c0; } diff --git a/src/dac/dac1cfg0.rs b/src/dac/dac1cfg0.rs index 593f6561..3cab9903 100644 --- a/src/dac/dac1cfg0.rs +++ b/src/dac/dac1cfg0.rs @@ -510,10 +510,10 @@ impl crate::RegisterSpec for DAC1CFG0_SPEC { impl crate::Readable for DAC1CFG0_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac1cfg0::W`](W) writer structure"] impl crate::Writable for DAC1CFG0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC1CFG0 to value 0"] impl crate::Resettable for DAC1CFG0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac1cfg1.rs b/src/dac/dac1cfg1.rs index 97dcde72..2bba09b6 100644 --- a/src/dac/dac1cfg1.rs +++ b/src/dac/dac1cfg1.rs @@ -459,10 +459,10 @@ impl crate::RegisterSpec for DAC1CFG1_SPEC { impl crate::Readable for DAC1CFG1_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac1cfg1::W`](W) writer structure"] impl crate::Writable for DAC1CFG1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC1CFG1 to value 0"] impl crate::Resettable for DAC1CFG1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac1data.rs b/src/dac/dac1data.rs index fef303da..c4aa2f1b 100644 --- a/src/dac/dac1data.rs +++ b/src/dac/dac1data.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DAC1DATA_SPEC { impl crate::Readable for DAC1DATA_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac1data::W`](W) writer structure"] impl crate::Writable for DAC1DATA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC1DATA to value 0"] impl crate::Resettable for DAC1DATA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dac/dac1path.rs b/src/dac/dac1path.rs index 0a80e8c4..6443e303 100644 --- a/src/dac/dac1path.rs +++ b/src/dac/dac1path.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for DAC1PATH_SPEC { impl crate::Readable for DAC1PATH_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac1path::W`](W) writer structure"] impl crate::Writable for DAC1PATH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC1PATH to value 0x7fdd"] impl crate::Resettable for DAC1PATH_SPEC { - const RESET_VALUE: Self::Ux = 0x7fdd; + const RESET_VALUE: u32 = 0x7fdd; } diff --git a/src/dac/dac1patl.rs b/src/dac/dac1patl.rs index e049f28b..2b5437a1 100644 --- a/src/dac/dac1patl.rs +++ b/src/dac/dac1patl.rs @@ -115,10 +115,10 @@ impl crate::RegisterSpec for DAC1PATL_SPEC { impl crate::Readable for DAC1PATL_SPEC {} #[doc = "`write(|w| ..)` method takes [`dac1patl::W`](W) writer structure"] impl crate::Writable for DAC1PATL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAC1PATL to value 0x3568_b0c0"] impl crate::Resettable for DAC1PATL_SPEC { - const RESET_VALUE: Self::Ux = 0x3568_b0c0; + const RESET_VALUE: u32 = 0x3568_b0c0; } diff --git a/src/dac/id.rs b/src/dac/id.rs index 67d3f7ff..e7416a95 100644 --- a/src/dac/id.rs +++ b/src/dac/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a5_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a5_c000; + const RESET_VALUE: u32 = 0x00a5_c000; } diff --git a/src/dlr/lnen.rs b/src/dlr/lnen.rs index d5544ac2..58b87640 100644 --- a/src/dlr/lnen.rs +++ b/src/dlr/lnen.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for LNEN_SPEC { impl crate::Readable for LNEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`lnen::W`](W) writer structure"] impl crate::Writable for LNEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LNEN to value 0"] impl crate::Resettable for LNEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dlr/ovrclr.rs b/src/dlr/ovrclr.rs index a1f198de..d66857e5 100644 --- a/src/dlr/ovrclr.rs +++ b/src/dlr/ovrclr.rs @@ -115,10 +115,10 @@ impl crate::RegisterSpec for OVRCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`ovrclr::W`](W) writer structure"] impl crate::Writable for OVRCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OVRCLR to value 0"] impl crate::Resettable for OVRCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dlr/ovrstat.rs b/src/dlr/ovrstat.rs index 30c989a3..79c1c71c 100644 --- a/src/dlr/ovrstat.rs +++ b/src/dlr/ovrstat.rs @@ -95,5 +95,5 @@ impl crate::RegisterSpec for OVRSTAT_SPEC { impl crate::Readable for OVRSTAT_SPEC {} #[doc = "`reset()` method sets OVRSTAT to value 0"] impl crate::Resettable for OVRSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dlr/srsel0.rs b/src/dlr/srsel0.rs index ab02ce1a..90d13c47 100644 --- a/src/dlr/srsel0.rs +++ b/src/dlr/srsel0.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for SRSEL0_SPEC { impl crate::Readable for SRSEL0_SPEC {} #[doc = "`write(|w| ..)` method takes [`srsel0::W`](W) writer structure"] impl crate::Writable for SRSEL0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRSEL0 to value 0"] impl crate::Resettable for SRSEL0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dlr/srsel1.rs b/src/dlr/srsel1.rs index d34124dc..a6350cc5 100644 --- a/src/dlr/srsel1.rs +++ b/src/dlr/srsel1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for SRSEL1_SPEC { impl crate::Readable for SRSEL1_SPEC {} #[doc = "`write(|w| ..)` method takes [`srsel1::W`](W) writer structure"] impl crate::Writable for SRSEL1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRSEL1 to value 0"] impl crate::Resettable for SRSEL1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd/cgcfg.rs b/src/dsd/cgcfg.rs index bf96e86c..4f071790 100644 --- a/src/dsd/cgcfg.rs +++ b/src/dsd/cgcfg.rs @@ -523,10 +523,10 @@ impl crate::RegisterSpec for CGCFG_SPEC { impl crate::Readable for CGCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`cgcfg::W`](W) writer structure"] impl crate::Writable for CGCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CGCFG to value 0x0710_0000"] impl crate::Resettable for CGCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x0710_0000; + const RESET_VALUE: u32 = 0x0710_0000; } diff --git a/src/dsd/clc.rs b/src/dsd/clc.rs index 7a7c39c0..3f95b451 100644 --- a/src/dsd/clc.rs +++ b/src/dsd/clc.rs @@ -194,10 +194,10 @@ impl crate::RegisterSpec for CLC_SPEC { impl crate::Readable for CLC_SPEC {} #[doc = "`write(|w| ..)` method takes [`clc::W`](W) writer structure"] impl crate::Writable for CLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLC to value 0x03"] impl crate::Resettable for CLC_SPEC { - const RESET_VALUE: Self::Ux = 0x03; + const RESET_VALUE: u32 = 0x03; } diff --git a/src/dsd/evflag.rs b/src/dsd/evflag.rs index 70f73cc7..35dd3f63 100644 --- a/src/dsd/evflag.rs +++ b/src/dsd/evflag.rs @@ -921,10 +921,10 @@ impl crate::RegisterSpec for EVFLAG_SPEC { impl crate::Readable for EVFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`evflag::W`](W) writer structure"] impl crate::Writable for EVFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EVFLAG to value 0"] impl crate::Resettable for EVFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd/evflagclr.rs b/src/dsd/evflagclr.rs index 098b497e..6336c5fa 100644 --- a/src/dsd/evflagclr.rs +++ b/src/dsd/evflagclr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for EVFLAGCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`evflagclr::W`](W) writer structure"] impl crate::Writable for EVFLAGCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EVFLAGCLR to value 0"] impl crate::Resettable for EVFLAGCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd/globcfg.rs b/src/dsd/globcfg.rs index fdf7b42b..0f7ec190 100644 --- a/src/dsd/globcfg.rs +++ b/src/dsd/globcfg.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for GLOBCFG_SPEC { impl crate::Readable for GLOBCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`globcfg::W`](W) writer structure"] impl crate::Writable for GLOBCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBCFG to value 0"] impl crate::Resettable for GLOBCFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd/globrc.rs b/src/dsd/globrc.rs index eaa5a566..a564bfba 100644 --- a/src/dsd/globrc.rs +++ b/src/dsd/globrc.rs @@ -281,10 +281,10 @@ impl crate::RegisterSpec for GLOBRC_SPEC { impl crate::Readable for GLOBRC_SPEC {} #[doc = "`write(|w| ..)` method takes [`globrc::W`](W) writer structure"] impl crate::Writable for GLOBRC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBRC to value 0"] impl crate::Resettable for GLOBRC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd/id.rs b/src/dsd/id.rs index 1abcb9bc..5e2344b1 100644 --- a/src/dsd/id.rs +++ b/src/dsd/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a4_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a4_c000; + const RESET_VALUE: u32 = 0x00a4_c000; } diff --git a/src/dsd/ocs.rs b/src/dsd/ocs.rs index 76e30cca..377949cb 100644 --- a/src/dsd/ocs.rs +++ b/src/dsd/ocs.rs @@ -183,10 +183,10 @@ impl crate::RegisterSpec for OCS_SPEC { impl crate::Readable for OCS_SPEC {} #[doc = "`write(|w| ..)` method takes [`ocs::W`](W) writer structure"] impl crate::Writable for OCS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OCS to value 0"] impl crate::Resettable for OCS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/boundsel.rs b/src/dsd_ch0/boundsel.rs index d92d4171..aadaea36 100644 --- a/src/dsd_ch0/boundsel.rs +++ b/src/dsd_ch0/boundsel.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for BOUNDSEL_SPEC { impl crate::Readable for BOUNDSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`boundsel::W`](W) writer structure"] impl crate::Writable for BOUNDSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BOUNDSEL to value 0"] impl crate::Resettable for BOUNDSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/cgsync.rs b/src/dsd_ch0/cgsync.rs index 6171fcad..263403a2 100644 --- a/src/dsd_ch0/cgsync.rs +++ b/src/dsd_ch0/cgsync.rs @@ -69,10 +69,10 @@ impl crate::RegisterSpec for CGSYNC_SPEC { impl crate::Readable for CGSYNC_SPEC {} #[doc = "`write(|w| ..)` method takes [`cgsync::W`](W) writer structure"] impl crate::Writable for CGSYNC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CGSYNC to value 0"] impl crate::Resettable for CGSYNC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/dicfg.rs b/src/dsd_ch0/dicfg.rs index b18c1d37..c4a695e6 100644 --- a/src/dsd_ch0/dicfg.rs +++ b/src/dsd_ch0/dicfg.rs @@ -657,10 +657,10 @@ impl crate::RegisterSpec for DICFG_SPEC { impl crate::Readable for DICFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`dicfg::W`](W) writer structure"] impl crate::Writable for DICFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DICFG to value 0"] impl crate::Resettable for DICFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/fcfga.rs b/src/dsd_ch0/fcfga.rs index 98af5186..b533f905 100644 --- a/src/dsd_ch0/fcfga.rs +++ b/src/dsd_ch0/fcfga.rs @@ -373,10 +373,10 @@ impl crate::RegisterSpec for FCFGA_SPEC { impl crate::Readable for FCFGA_SPEC {} #[doc = "`write(|w| ..)` method takes [`fcfga::W`](W) writer structure"] impl crate::Writable for FCFGA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FCFGA to value 0"] impl crate::Resettable for FCFGA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/fcfgc.rs b/src/dsd_ch0/fcfgc.rs index fa148979..0bbaac3d 100644 --- a/src/dsd_ch0/fcfgc.rs +++ b/src/dsd_ch0/fcfgc.rs @@ -292,10 +292,10 @@ impl crate::RegisterSpec for FCFGC_SPEC { impl crate::Readable for FCFGC_SPEC {} #[doc = "`write(|w| ..)` method takes [`fcfgc::W`](W) writer structure"] impl crate::Writable for FCFGC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FCFGC to value 0"] impl crate::Resettable for FCFGC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/iwctr.rs b/src/dsd_ch0/iwctr.rs index 0398ee55..fb7875b2 100644 --- a/src/dsd_ch0/iwctr.rs +++ b/src/dsd_ch0/iwctr.rs @@ -189,10 +189,10 @@ impl crate::RegisterSpec for IWCTR_SPEC { impl crate::Readable for IWCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`iwctr::W`](W) writer structure"] impl crate::Writable for IWCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IWCTR to value 0"] impl crate::Resettable for IWCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/modcfg.rs b/src/dsd_ch0/modcfg.rs index f446fd6f..bec27d01 100644 --- a/src/dsd_ch0/modcfg.rs +++ b/src/dsd_ch0/modcfg.rs @@ -158,10 +158,10 @@ impl crate::RegisterSpec for MODCFG_SPEC { impl crate::Readable for MODCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`modcfg::W`](W) writer structure"] impl crate::Writable for MODCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MODCFG to value 0"] impl crate::Resettable for MODCFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/offm.rs b/src/dsd_ch0/offm.rs index 4e869fe1..7ed92b0b 100644 --- a/src/dsd_ch0/offm.rs +++ b/src/dsd_ch0/offm.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for OFFM_SPEC { impl crate::Readable for OFFM_SPEC {} #[doc = "`write(|w| ..)` method takes [`offm::W`](W) writer structure"] impl crate::Writable for OFFM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OFFM to value 0"] impl crate::Resettable for OFFM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/rectcfg.rs b/src/dsd_ch0/rectcfg.rs index c3eab7de..58af749e 100644 --- a/src/dsd_ch0/rectcfg.rs +++ b/src/dsd_ch0/rectcfg.rs @@ -308,10 +308,10 @@ impl crate::RegisterSpec for RECTCFG_SPEC { impl crate::Readable for RECTCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`rectcfg::W`](W) writer structure"] impl crate::Writable for RECTCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RECTCFG to value 0x8000_0000"] impl crate::Resettable for RECTCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x8000_0000; + const RESET_VALUE: u32 = 0x8000_0000; } diff --git a/src/dsd_ch0/resa.rs b/src/dsd_ch0/resa.rs index 6fa8be5c..2b6b0e26 100644 --- a/src/dsd_ch0/resa.rs +++ b/src/dsd_ch0/resa.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RESA_SPEC { impl crate::Readable for RESA_SPEC {} #[doc = "`reset()` method sets RESA to value 0"] impl crate::Resettable for RESA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/resm.rs b/src/dsd_ch0/resm.rs index 49759fbd..2cec8ffe 100644 --- a/src/dsd_ch0/resm.rs +++ b/src/dsd_ch0/resm.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RESM_SPEC { impl crate::Readable for RESM_SPEC {} #[doc = "`reset()` method sets RESM to value 0"] impl crate::Resettable for RESM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/dsd_ch0/tstmp.rs b/src/dsd_ch0/tstmp.rs index 377cd8f9..f9c27107 100644 --- a/src/dsd_ch0/tstmp.rs +++ b/src/dsd_ch0/tstmp.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for TSTMP_SPEC { impl crate::Readable for TSTMP_SPEC {} #[doc = "`reset()` method sets TSTMP to value 0"] impl crate::Resettable for TSTMP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/addrsel0.rs b/src/ebu/addrsel0.rs index ebec1b45..4ccc9c5b 100644 --- a/src/ebu/addrsel0.rs +++ b/src/ebu/addrsel0.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for ADDRSEL0_SPEC { impl crate::Readable for ADDRSEL0_SPEC {} #[doc = "`write(|w| ..)` method takes [`addrsel0::W`](W) writer structure"] impl crate::Writable for ADDRSEL0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ADDRSEL0 to value 0"] impl crate::Resettable for ADDRSEL0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/addrsel1.rs b/src/ebu/addrsel1.rs index b3a90ded..1eb618d1 100644 --- a/src/ebu/addrsel1.rs +++ b/src/ebu/addrsel1.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for ADDRSEL1_SPEC { impl crate::Readable for ADDRSEL1_SPEC {} #[doc = "`write(|w| ..)` method takes [`addrsel1::W`](W) writer structure"] impl crate::Writable for ADDRSEL1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ADDRSEL1 to value 0"] impl crate::Resettable for ADDRSEL1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/addrsel2.rs b/src/ebu/addrsel2.rs index 9dc69120..38f16cc9 100644 --- a/src/ebu/addrsel2.rs +++ b/src/ebu/addrsel2.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for ADDRSEL2_SPEC { impl crate::Readable for ADDRSEL2_SPEC {} #[doc = "`write(|w| ..)` method takes [`addrsel2::W`](W) writer structure"] impl crate::Writable for ADDRSEL2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ADDRSEL2 to value 0"] impl crate::Resettable for ADDRSEL2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/addrsel3.rs b/src/ebu/addrsel3.rs index f7f7d99f..350b81a2 100644 --- a/src/ebu/addrsel3.rs +++ b/src/ebu/addrsel3.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for ADDRSEL3_SPEC { impl crate::Readable for ADDRSEL3_SPEC {} #[doc = "`write(|w| ..)` method takes [`addrsel3::W`](W) writer structure"] impl crate::Writable for ADDRSEL3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ADDRSEL3 to value 0"] impl crate::Resettable for ADDRSEL3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/busrap0.rs b/src/ebu/busrap0.rs index ccc16453..c433fa05 100644 --- a/src/ebu/busrap0.rs +++ b/src/ebu/busrap0.rs @@ -821,10 +821,10 @@ impl crate::RegisterSpec for BUSRAP0_SPEC { impl crate::Readable for BUSRAP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrap0::W`](W) writer structure"] impl crate::Writable for BUSRAP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRAP0 to value 0xffff_ffff"] impl crate::Resettable for BUSRAP0_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/busrap1.rs b/src/ebu/busrap1.rs index 96a67402..ef364a0f 100644 --- a/src/ebu/busrap1.rs +++ b/src/ebu/busrap1.rs @@ -821,10 +821,10 @@ impl crate::RegisterSpec for BUSRAP1_SPEC { impl crate::Readable for BUSRAP1_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrap1::W`](W) writer structure"] impl crate::Writable for BUSRAP1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRAP1 to value 0xffff_ffff"] impl crate::Resettable for BUSRAP1_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/busrap2.rs b/src/ebu/busrap2.rs index 77784582..d1715dff 100644 --- a/src/ebu/busrap2.rs +++ b/src/ebu/busrap2.rs @@ -821,10 +821,10 @@ impl crate::RegisterSpec for BUSRAP2_SPEC { impl crate::Readable for BUSRAP2_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrap2::W`](W) writer structure"] impl crate::Writable for BUSRAP2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRAP2 to value 0xffff_ffff"] impl crate::Resettable for BUSRAP2_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/busrap3.rs b/src/ebu/busrap3.rs index 644e1961..3a04b3b8 100644 --- a/src/ebu/busrap3.rs +++ b/src/ebu/busrap3.rs @@ -821,10 +821,10 @@ impl crate::RegisterSpec for BUSRAP3_SPEC { impl crate::Readable for BUSRAP3_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrap3::W`](W) writer structure"] impl crate::Writable for BUSRAP3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRAP3 to value 0xffff_ffff"] impl crate::Resettable for BUSRAP3_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/busrcon0.rs b/src/ebu/busrcon0.rs index 540b9572..2b29a50e 100644 --- a/src/ebu/busrcon0.rs +++ b/src/ebu/busrcon0.rs @@ -840,10 +840,10 @@ impl crate::RegisterSpec for BUSRCON0_SPEC { impl crate::Readable for BUSRCON0_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrcon0::W`](W) writer structure"] impl crate::Writable for BUSRCON0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRCON0 to value 0x00d3_0040"] impl crate::Resettable for BUSRCON0_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0040; + const RESET_VALUE: u32 = 0x00d3_0040; } diff --git a/src/ebu/busrcon1.rs b/src/ebu/busrcon1.rs index 430fde49..d883c3b8 100644 --- a/src/ebu/busrcon1.rs +++ b/src/ebu/busrcon1.rs @@ -840,10 +840,10 @@ impl crate::RegisterSpec for BUSRCON1_SPEC { impl crate::Readable for BUSRCON1_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrcon1::W`](W) writer structure"] impl crate::Writable for BUSRCON1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRCON1 to value 0x00d3_0040"] impl crate::Resettable for BUSRCON1_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0040; + const RESET_VALUE: u32 = 0x00d3_0040; } diff --git a/src/ebu/busrcon2.rs b/src/ebu/busrcon2.rs index 8c2cdad8..ce8bc1b2 100644 --- a/src/ebu/busrcon2.rs +++ b/src/ebu/busrcon2.rs @@ -840,10 +840,10 @@ impl crate::RegisterSpec for BUSRCON2_SPEC { impl crate::Readable for BUSRCON2_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrcon2::W`](W) writer structure"] impl crate::Writable for BUSRCON2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRCON2 to value 0x00d3_0040"] impl crate::Resettable for BUSRCON2_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0040; + const RESET_VALUE: u32 = 0x00d3_0040; } diff --git a/src/ebu/busrcon3.rs b/src/ebu/busrcon3.rs index e9bf3443..49978f19 100644 --- a/src/ebu/busrcon3.rs +++ b/src/ebu/busrcon3.rs @@ -840,10 +840,10 @@ impl crate::RegisterSpec for BUSRCON3_SPEC { impl crate::Readable for BUSRCON3_SPEC {} #[doc = "`write(|w| ..)` method takes [`busrcon3::W`](W) writer structure"] impl crate::Writable for BUSRCON3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSRCON3 to value 0x00d3_0040"] impl crate::Resettable for BUSRCON3_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0040; + const RESET_VALUE: u32 = 0x00d3_0040; } diff --git a/src/ebu/buswap0.rs b/src/ebu/buswap0.rs index 85eaec56..35b5c307 100644 --- a/src/ebu/buswap0.rs +++ b/src/ebu/buswap0.rs @@ -902,10 +902,10 @@ impl crate::RegisterSpec for BUSWAP0_SPEC { impl crate::Readable for BUSWAP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswap0::W`](W) writer structure"] impl crate::Writable for BUSWAP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWAP0 to value 0xffff_ffff"] impl crate::Resettable for BUSWAP0_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/buswap1.rs b/src/ebu/buswap1.rs index 3ee9b156..2e31a62d 100644 --- a/src/ebu/buswap1.rs +++ b/src/ebu/buswap1.rs @@ -902,10 +902,10 @@ impl crate::RegisterSpec for BUSWAP1_SPEC { impl crate::Readable for BUSWAP1_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswap1::W`](W) writer structure"] impl crate::Writable for BUSWAP1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWAP1 to value 0xffff_ffff"] impl crate::Resettable for BUSWAP1_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/buswap2.rs b/src/ebu/buswap2.rs index 398b878b..283b5f80 100644 --- a/src/ebu/buswap2.rs +++ b/src/ebu/buswap2.rs @@ -902,10 +902,10 @@ impl crate::RegisterSpec for BUSWAP2_SPEC { impl crate::Readable for BUSWAP2_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswap2::W`](W) writer structure"] impl crate::Writable for BUSWAP2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWAP2 to value 0xffff_ffff"] impl crate::Resettable for BUSWAP2_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/buswap3.rs b/src/ebu/buswap3.rs index e6c72682..6049e833 100644 --- a/src/ebu/buswap3.rs +++ b/src/ebu/buswap3.rs @@ -902,10 +902,10 @@ impl crate::RegisterSpec for BUSWAP3_SPEC { impl crate::Readable for BUSWAP3_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswap3::W`](W) writer structure"] impl crate::Writable for BUSWAP3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWAP3 to value 0xffff_ffff"] impl crate::Resettable for BUSWAP3_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/ebu/buswcon0.rs b/src/ebu/buswcon0.rs index 06107c02..74405314 100644 --- a/src/ebu/buswcon0.rs +++ b/src/ebu/buswcon0.rs @@ -632,10 +632,10 @@ impl crate::RegisterSpec for BUSWCON0_SPEC { impl crate::Readable for BUSWCON0_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswcon0::W`](W) writer structure"] impl crate::Writable for BUSWCON0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWCON0 to value 0x00d3_0000"] impl crate::Resettable for BUSWCON0_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0000; + const RESET_VALUE: u32 = 0x00d3_0000; } diff --git a/src/ebu/buswcon1.rs b/src/ebu/buswcon1.rs index 21eb4f1c..ec91dbd0 100644 --- a/src/ebu/buswcon1.rs +++ b/src/ebu/buswcon1.rs @@ -632,10 +632,10 @@ impl crate::RegisterSpec for BUSWCON1_SPEC { impl crate::Readable for BUSWCON1_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswcon1::W`](W) writer structure"] impl crate::Writable for BUSWCON1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWCON1 to value 0x00d3_0000"] impl crate::Resettable for BUSWCON1_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0000; + const RESET_VALUE: u32 = 0x00d3_0000; } diff --git a/src/ebu/buswcon2.rs b/src/ebu/buswcon2.rs index 5ba01730..78964c0c 100644 --- a/src/ebu/buswcon2.rs +++ b/src/ebu/buswcon2.rs @@ -632,10 +632,10 @@ impl crate::RegisterSpec for BUSWCON2_SPEC { impl crate::Readable for BUSWCON2_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswcon2::W`](W) writer structure"] impl crate::Writable for BUSWCON2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWCON2 to value 0x00d3_0000"] impl crate::Resettable for BUSWCON2_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0000; + const RESET_VALUE: u32 = 0x00d3_0000; } diff --git a/src/ebu/buswcon3.rs b/src/ebu/buswcon3.rs index dd41c795..9ea69522 100644 --- a/src/ebu/buswcon3.rs +++ b/src/ebu/buswcon3.rs @@ -632,10 +632,10 @@ impl crate::RegisterSpec for BUSWCON3_SPEC { impl crate::Readable for BUSWCON3_SPEC {} #[doc = "`write(|w| ..)` method takes [`buswcon3::W`](W) writer structure"] impl crate::Writable for BUSWCON3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUSWCON3 to value 0x00d3_0000"] impl crate::Resettable for BUSWCON3_SPEC { - const RESET_VALUE: Self::Ux = 0x00d3_0000; + const RESET_VALUE: u32 = 0x00d3_0000; } diff --git a/src/ebu/clc.rs b/src/ebu/clc.rs index d0dad363..8e2a3872 100644 --- a/src/ebu/clc.rs +++ b/src/ebu/clc.rs @@ -498,10 +498,10 @@ impl crate::RegisterSpec for CLC_SPEC { impl crate::Readable for CLC_SPEC {} #[doc = "`write(|w| ..)` method takes [`clc::W`](W) writer structure"] impl crate::Writable for CLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLC to value 0x0011_0000"] impl crate::Resettable for CLC_SPEC { - const RESET_VALUE: Self::Ux = 0x0011_0000; + const RESET_VALUE: u32 = 0x0011_0000; } diff --git a/src/ebu/id.rs b/src/ebu/id.rs index 00d9a901..48f4ab78 100644 --- a/src/ebu/id.rs +++ b/src/ebu/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x0014_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x0014_c000; + const RESET_VALUE: u32 = 0x0014_c000; } diff --git a/src/ebu/modcon.rs b/src/ebu/modcon.rs index c489466b..b41fd979 100644 --- a/src/ebu/modcon.rs +++ b/src/ebu/modcon.rs @@ -526,10 +526,10 @@ impl crate::RegisterSpec for MODCON_SPEC { impl crate::Readable for MODCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`modcon::W`](W) writer structure"] impl crate::Writable for MODCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MODCON to value 0x20"] impl crate::Resettable for MODCON_SPEC { - const RESET_VALUE: Self::Ux = 0x20; + const RESET_VALUE: u32 = 0x20; } diff --git a/src/ebu/sdrmcon.rs b/src/ebu/sdrmcon.rs index 129d563b..db76aa29 100644 --- a/src/ebu/sdrmcon.rs +++ b/src/ebu/sdrmcon.rs @@ -694,10 +694,10 @@ impl crate::RegisterSpec for SDRMCON_SPEC { impl crate::Readable for SDRMCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`sdrmcon::W`](W) writer structure"] impl crate::Writable for SDRMCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SDRMCON to value 0x8000_0000"] impl crate::Resettable for SDRMCON_SPEC { - const RESET_VALUE: Self::Ux = 0x8000_0000; + const RESET_VALUE: u32 = 0x8000_0000; } diff --git a/src/ebu/sdrmod.rs b/src/ebu/sdrmod.rs index da828cbf..b0d52167 100644 --- a/src/ebu/sdrmod.rs +++ b/src/ebu/sdrmod.rs @@ -351,10 +351,10 @@ impl crate::RegisterSpec for SDRMOD_SPEC { impl crate::Readable for SDRMOD_SPEC {} #[doc = "`write(|w| ..)` method takes [`sdrmod::W`](W) writer structure"] impl crate::Writable for SDRMOD_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SDRMOD to value 0x20"] impl crate::Resettable for SDRMOD_SPEC { - const RESET_VALUE: Self::Ux = 0x20; + const RESET_VALUE: u32 = 0x20; } diff --git a/src/ebu/sdrmref.rs b/src/ebu/sdrmref.rs index e1df748e..9faf8cbd 100644 --- a/src/ebu/sdrmref.rs +++ b/src/ebu/sdrmref.rs @@ -174,10 +174,10 @@ impl crate::RegisterSpec for SDRMREF_SPEC { impl crate::Readable for SDRMREF_SPEC {} #[doc = "`write(|w| ..)` method takes [`sdrmref::W`](W) writer structure"] impl crate::Writable for SDRMREF_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SDRMREF to value 0"] impl crate::Resettable for SDRMREF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ebu/sdrstat.rs b/src/ebu/sdrstat.rs index 7c05e42f..4ae97c3c 100644 --- a/src/ebu/sdrstat.rs +++ b/src/ebu/sdrstat.rs @@ -134,5 +134,5 @@ impl crate::RegisterSpec for SDRSTAT_SPEC { impl crate::Readable for SDRSTAT_SPEC {} #[doc = "`reset()` method sets SDRSTAT to value 0x0001_0000"] impl crate::Resettable for SDRSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0x0001_0000; + const RESET_VALUE: u32 = 0x0001_0000; } diff --git a/src/ebu/usercon.rs b/src/ebu/usercon.rs index 2e9e8805..8ffacfed 100644 --- a/src/ebu/usercon.rs +++ b/src/ebu/usercon.rs @@ -174,10 +174,10 @@ impl crate::RegisterSpec for USERCON_SPEC { impl crate::Readable for USERCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`usercon::W`](W) writer structure"] impl crate::Writable for USERCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets USERCON to value 0"] impl crate::Resettable for USERCON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eru0/exicon.rs b/src/eru0/exicon.rs index cc60aff7..8f7693fb 100644 --- a/src/eru0/exicon.rs +++ b/src/eru0/exicon.rs @@ -665,11 +665,11 @@ impl crate::RegisterSpec for EXICON_SPEC { impl crate::Readable for EXICON_SPEC {} #[doc = "`write(|w| ..)` method takes [`exicon::W`](W) writer structure"] impl crate::Writable for EXICON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EXICON[%s] to value 0"] impl crate::Resettable for EXICON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eru0/exisel.rs b/src/eru0/exisel.rs index 1eb8ceb5..e067e66c 100644 --- a/src/eru0/exisel.rs +++ b/src/eru0/exisel.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for EXISEL_SPEC { impl crate::Readable for EXISEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`exisel::W`](W) writer structure"] impl crate::Writable for EXISEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EXISEL to value 0"] impl crate::Resettable for EXISEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eru0/exocon.rs b/src/eru0/exocon.rs index 922ae74e..f060e1d5 100644 --- a/src/eru0/exocon.rs +++ b/src/eru0/exocon.rs @@ -578,11 +578,11 @@ impl crate::RegisterSpec for EXOCON_SPEC { impl crate::Readable for EXOCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`exocon::W`](W) writer structure"] impl crate::Writable for EXOCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EXOCON[%s] to value 0x08"] impl crate::Resettable for EXOCON_SPEC { - const RESET_VALUE: Self::Ux = 0x08; + const RESET_VALUE: u32 = 0x08; } diff --git a/src/eth0/ahb_status.rs b/src/eth0/ahb_status.rs index c7837d5a..567a6350 100644 --- a/src/eth0/ahb_status.rs +++ b/src/eth0/ahb_status.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for AHB_STATUS_SPEC { impl crate::Readable for AHB_STATUS_SPEC {} #[doc = "`reset()` method sets AHB_STATUS to value 0"] impl crate::Resettable for AHB_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/bus_mode.rs b/src/eth0/bus_mode.rs index 7459b650..68d7312a 100644 --- a/src/eth0/bus_mode.rs +++ b/src/eth0/bus_mode.rs @@ -227,10 +227,10 @@ impl crate::RegisterSpec for BUS_MODE_SPEC { impl crate::Readable for BUS_MODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`bus_mode::W`](W) writer structure"] impl crate::Writable for BUS_MODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BUS_MODE to value 0x0002_0101"] impl crate::Resettable for BUS_MODE_SPEC { - const RESET_VALUE: Self::Ux = 0x0002_0101; + const RESET_VALUE: u32 = 0x0002_0101; } diff --git a/src/eth0/current_host_receive_buffer_address.rs b/src/eth0/current_host_receive_buffer_address.rs index 26d6dc63..3cabf1c4 100644 --- a/src/eth0/current_host_receive_buffer_address.rs +++ b/src/eth0/current_host_receive_buffer_address.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CURRENT_HOST_RECEIVE_BUFFER_ADDRESS_SPEC { impl crate::Readable for CURRENT_HOST_RECEIVE_BUFFER_ADDRESS_SPEC {} #[doc = "`reset()` method sets CURRENT_HOST_RECEIVE_BUFFER_ADDRESS to value 0"] impl crate::Resettable for CURRENT_HOST_RECEIVE_BUFFER_ADDRESS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/current_host_receive_descriptor.rs b/src/eth0/current_host_receive_descriptor.rs index a240541b..92f5f854 100644 --- a/src/eth0/current_host_receive_descriptor.rs +++ b/src/eth0/current_host_receive_descriptor.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CURRENT_HOST_RECEIVE_DESCRIPTOR_SPEC { impl crate::Readable for CURRENT_HOST_RECEIVE_DESCRIPTOR_SPEC {} #[doc = "`reset()` method sets CURRENT_HOST_RECEIVE_DESCRIPTOR to value 0"] impl crate::Resettable for CURRENT_HOST_RECEIVE_DESCRIPTOR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/current_host_transmit_buffer_address.rs b/src/eth0/current_host_transmit_buffer_address.rs index 4eda9260..120f4717 100644 --- a/src/eth0/current_host_transmit_buffer_address.rs +++ b/src/eth0/current_host_transmit_buffer_address.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CURRENT_HOST_TRANSMIT_BUFFER_ADDRESS_SPEC { impl crate::Readable for CURRENT_HOST_TRANSMIT_BUFFER_ADDRESS_SPEC {} #[doc = "`reset()` method sets CURRENT_HOST_TRANSMIT_BUFFER_ADDRESS to value 0"] impl crate::Resettable for CURRENT_HOST_TRANSMIT_BUFFER_ADDRESS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/current_host_transmit_descriptor.rs b/src/eth0/current_host_transmit_descriptor.rs index 7daae092..b6c89a82 100644 --- a/src/eth0/current_host_transmit_descriptor.rs +++ b/src/eth0/current_host_transmit_descriptor.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for CURRENT_HOST_TRANSMIT_DESCRIPTOR_SPEC { impl crate::Readable for CURRENT_HOST_TRANSMIT_DESCRIPTOR_SPEC {} #[doc = "`reset()` method sets CURRENT_HOST_TRANSMIT_DESCRIPTOR to value 0"] impl crate::Resettable for CURRENT_HOST_TRANSMIT_DESCRIPTOR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/debug.rs b/src/eth0/debug.rs index 61c8c342..9ae9427c 100644 --- a/src/eth0/debug.rs +++ b/src/eth0/debug.rs @@ -95,5 +95,5 @@ impl crate::RegisterSpec for DEBUG_SPEC { impl crate::Readable for DEBUG_SPEC {} #[doc = "`reset()` method sets DEBUG to value 0"] impl crate::Resettable for DEBUG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/flow_control.rs b/src/eth0/flow_control.rs index 83a6665d..51f05926 100644 --- a/src/eth0/flow_control.rs +++ b/src/eth0/flow_control.rs @@ -130,10 +130,10 @@ impl crate::RegisterSpec for FLOW_CONTROL_SPEC { impl crate::Readable for FLOW_CONTROL_SPEC {} #[doc = "`write(|w| ..)` method takes [`flow_control::W`](W) writer structure"] impl crate::Writable for FLOW_CONTROL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FLOW_CONTROL to value 0"] impl crate::Resettable for FLOW_CONTROL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/gmii_address.rs b/src/eth0/gmii_address.rs index 0bed4580..7c948e93 100644 --- a/src/eth0/gmii_address.rs +++ b/src/eth0/gmii_address.rs @@ -100,10 +100,10 @@ impl crate::RegisterSpec for GMII_ADDRESS_SPEC { impl crate::Readable for GMII_ADDRESS_SPEC {} #[doc = "`write(|w| ..)` method takes [`gmii_address::W`](W) writer structure"] impl crate::Writable for GMII_ADDRESS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GMII_ADDRESS to value 0"] impl crate::Resettable for GMII_ADDRESS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/gmii_data.rs b/src/eth0/gmii_data.rs index 101971ae..6bb8fe48 100644 --- a/src/eth0/gmii_data.rs +++ b/src/eth0/gmii_data.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for GMII_DATA_SPEC { impl crate::Readable for GMII_DATA_SPEC {} #[doc = "`write(|w| ..)` method takes [`gmii_data::W`](W) writer structure"] impl crate::Writable for GMII_DATA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GMII_DATA to value 0"] impl crate::Resettable for GMII_DATA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/hash_table_high.rs b/src/eth0/hash_table_high.rs index 087f90a3..fa1df834 100644 --- a/src/eth0/hash_table_high.rs +++ b/src/eth0/hash_table_high.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for HASH_TABLE_HIGH_SPEC { impl crate::Readable for HASH_TABLE_HIGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`hash_table_high::W`](W) writer structure"] impl crate::Writable for HASH_TABLE_HIGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HASH_TABLE_HIGH to value 0"] impl crate::Resettable for HASH_TABLE_HIGH_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/hash_table_low.rs b/src/eth0/hash_table_low.rs index be3f6115..b359af1a 100644 --- a/src/eth0/hash_table_low.rs +++ b/src/eth0/hash_table_low.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for HASH_TABLE_LOW_SPEC { impl crate::Readable for HASH_TABLE_LOW_SPEC {} #[doc = "`write(|w| ..)` method takes [`hash_table_low::W`](W) writer structure"] impl crate::Writable for HASH_TABLE_LOW_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HASH_TABLE_LOW to value 0"] impl crate::Resettable for HASH_TABLE_LOW_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/hw_feature.rs b/src/eth0/hw_feature.rs index e370d752..bf757840 100644 --- a/src/eth0/hw_feature.rs +++ b/src/eth0/hw_feature.rs @@ -222,10 +222,10 @@ impl crate::RegisterSpec for HW_FEATURE_SPEC { impl crate::Readable for HW_FEATURE_SPEC {} #[doc = "`write(|w| ..)` method takes [`hw_feature::W`](W) writer structure"] impl crate::Writable for HW_FEATURE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HW_FEATURE to value 0x0305_2f35"] impl crate::Resettable for HW_FEATURE_SPEC { - const RESET_VALUE: Self::Ux = 0x0305_2f35; + const RESET_VALUE: u32 = 0x0305_2f35; } diff --git a/src/eth0/interrupt_enable.rs b/src/eth0/interrupt_enable.rs index 8d21d5c2..ff4928e1 100644 --- a/src/eth0/interrupt_enable.rs +++ b/src/eth0/interrupt_enable.rs @@ -250,10 +250,10 @@ impl crate::RegisterSpec for INTERRUPT_ENABLE_SPEC { impl crate::Readable for INTERRUPT_ENABLE_SPEC {} #[doc = "`write(|w| ..)` method takes [`interrupt_enable::W`](W) writer structure"] impl crate::Writable for INTERRUPT_ENABLE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INTERRUPT_ENABLE to value 0"] impl crate::Resettable for INTERRUPT_ENABLE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/interrupt_mask.rs b/src/eth0/interrupt_mask.rs index cd9d57c4..f4787cf9 100644 --- a/src/eth0/interrupt_mask.rs +++ b/src/eth0/interrupt_mask.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for INTERRUPT_MASK_SPEC { impl crate::Readable for INTERRUPT_MASK_SPEC {} #[doc = "`write(|w| ..)` method takes [`interrupt_mask::W`](W) writer structure"] impl crate::Writable for INTERRUPT_MASK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INTERRUPT_MASK to value 0"] impl crate::Resettable for INTERRUPT_MASK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/interrupt_status.rs b/src/eth0/interrupt_status.rs index 72d9ebdb..0a7aa7e6 100644 --- a/src/eth0/interrupt_status.rs +++ b/src/eth0/interrupt_status.rs @@ -53,5 +53,5 @@ impl crate::RegisterSpec for INTERRUPT_STATUS_SPEC { impl crate::Readable for INTERRUPT_STATUS_SPEC {} #[doc = "`reset()` method sets INTERRUPT_STATUS to value 0"] impl crate::Resettable for INTERRUPT_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mac_address0_high.rs b/src/eth0/mac_address0_high.rs index df2cc865..42dafe8d 100644 --- a/src/eth0/mac_address0_high.rs +++ b/src/eth0/mac_address0_high.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for MAC_ADDRESS0_HIGH_SPEC { impl crate::Readable for MAC_ADDRESS0_HIGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address0_high::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS0_HIGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS0_HIGH to value 0x8000_ffff"] impl crate::Resettable for MAC_ADDRESS0_HIGH_SPEC { - const RESET_VALUE: Self::Ux = 0x8000_ffff; + const RESET_VALUE: u32 = 0x8000_ffff; } diff --git a/src/eth0/mac_address0_low.rs b/src/eth0/mac_address0_low.rs index 863e8083..02208270 100644 --- a/src/eth0/mac_address0_low.rs +++ b/src/eth0/mac_address0_low.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MAC_ADDRESS0_LOW_SPEC { impl crate::Readable for MAC_ADDRESS0_LOW_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address0_low::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS0_LOW_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS0_LOW to value 0xffff_ffff"] impl crate::Resettable for MAC_ADDRESS0_LOW_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/eth0/mac_address1_high.rs b/src/eth0/mac_address1_high.rs index 3f5813cf..eba0d3c5 100644 --- a/src/eth0/mac_address1_high.rs +++ b/src/eth0/mac_address1_high.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MAC_ADDRESS1_HIGH_SPEC { impl crate::Readable for MAC_ADDRESS1_HIGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address1_high::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS1_HIGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS1_HIGH to value 0xffff"] impl crate::Resettable for MAC_ADDRESS1_HIGH_SPEC { - const RESET_VALUE: Self::Ux = 0xffff; + const RESET_VALUE: u32 = 0xffff; } diff --git a/src/eth0/mac_address1_low.rs b/src/eth0/mac_address1_low.rs index 16289e47..e21e24e5 100644 --- a/src/eth0/mac_address1_low.rs +++ b/src/eth0/mac_address1_low.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MAC_ADDRESS1_LOW_SPEC { impl crate::Readable for MAC_ADDRESS1_LOW_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address1_low::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS1_LOW_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS1_LOW to value 0xffff_ffff"] impl crate::Resettable for MAC_ADDRESS1_LOW_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/eth0/mac_address2_high.rs b/src/eth0/mac_address2_high.rs index 34df44fd..4ac77206 100644 --- a/src/eth0/mac_address2_high.rs +++ b/src/eth0/mac_address2_high.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MAC_ADDRESS2_HIGH_SPEC { impl crate::Readable for MAC_ADDRESS2_HIGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address2_high::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS2_HIGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS2_HIGH to value 0xffff"] impl crate::Resettable for MAC_ADDRESS2_HIGH_SPEC { - const RESET_VALUE: Self::Ux = 0xffff; + const RESET_VALUE: u32 = 0xffff; } diff --git a/src/eth0/mac_address2_low.rs b/src/eth0/mac_address2_low.rs index 35b2fe87..e9667cc4 100644 --- a/src/eth0/mac_address2_low.rs +++ b/src/eth0/mac_address2_low.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MAC_ADDRESS2_LOW_SPEC { impl crate::Readable for MAC_ADDRESS2_LOW_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address2_low::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS2_LOW_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS2_LOW to value 0xffff_ffff"] impl crate::Resettable for MAC_ADDRESS2_LOW_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/eth0/mac_address3_high.rs b/src/eth0/mac_address3_high.rs index ba3350bb..338e9179 100644 --- a/src/eth0/mac_address3_high.rs +++ b/src/eth0/mac_address3_high.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for MAC_ADDRESS3_HIGH_SPEC { impl crate::Readable for MAC_ADDRESS3_HIGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address3_high::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS3_HIGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS3_HIGH to value 0xffff"] impl crate::Resettable for MAC_ADDRESS3_HIGH_SPEC { - const RESET_VALUE: Self::Ux = 0xffff; + const RESET_VALUE: u32 = 0xffff; } diff --git a/src/eth0/mac_address3_low.rs b/src/eth0/mac_address3_low.rs index ceb19698..4b776a13 100644 --- a/src/eth0/mac_address3_low.rs +++ b/src/eth0/mac_address3_low.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MAC_ADDRESS3_LOW_SPEC { impl crate::Readable for MAC_ADDRESS3_LOW_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_address3_low::W`](W) writer structure"] impl crate::Writable for MAC_ADDRESS3_LOW_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_ADDRESS3_LOW to value 0xffff_ffff"] impl crate::Resettable for MAC_ADDRESS3_LOW_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/eth0/mac_configuration.rs b/src/eth0/mac_configuration.rs index 7b2eff5c..ca70f785 100644 --- a/src/eth0/mac_configuration.rs +++ b/src/eth0/mac_configuration.rs @@ -331,10 +331,10 @@ impl crate::RegisterSpec for MAC_CONFIGURATION_SPEC { impl crate::Readable for MAC_CONFIGURATION_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_configuration::W`](W) writer structure"] impl crate::Writable for MAC_CONFIGURATION_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_CONFIGURATION to value 0x8000"] impl crate::Resettable for MAC_CONFIGURATION_SPEC { - const RESET_VALUE: Self::Ux = 0x8000; + const RESET_VALUE: u32 = 0x8000; } diff --git a/src/eth0/mac_frame_filter.rs b/src/eth0/mac_frame_filter.rs index 644b3d4f..93b2b04f 100644 --- a/src/eth0/mac_frame_filter.rs +++ b/src/eth0/mac_frame_filter.rs @@ -219,10 +219,10 @@ impl crate::RegisterSpec for MAC_FRAME_FILTER_SPEC { impl crate::Readable for MAC_FRAME_FILTER_SPEC {} #[doc = "`write(|w| ..)` method takes [`mac_frame_filter::W`](W) writer structure"] impl crate::Writable for MAC_FRAME_FILTER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAC_FRAME_FILTER to value 0"] impl crate::Resettable for MAC_FRAME_FILTER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/missed_frame_and_buffer_overflow_counter.rs b/src/eth0/missed_frame_and_buffer_overflow_counter.rs index 7f9bd73b..e958542d 100644 --- a/src/eth0/missed_frame_and_buffer_overflow_counter.rs +++ b/src/eth0/missed_frame_and_buffer_overflow_counter.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for MISSED_FRAME_AND_BUFFER_OVERFLOW_COUNTER_SPEC { impl crate::Readable for MISSED_FRAME_AND_BUFFER_OVERFLOW_COUNTER_SPEC {} #[doc = "`reset()` method sets MISSED_FRAME_AND_BUFFER_OVERFLOW_COUNTER to value 0"] impl crate::Resettable for MISSED_FRAME_AND_BUFFER_OVERFLOW_COUNTER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_control.rs b/src/eth0/mmc_control.rs index 103e58a9..de88ca71 100644 --- a/src/eth0/mmc_control.rs +++ b/src/eth0/mmc_control.rs @@ -130,10 +130,10 @@ impl crate::RegisterSpec for MMC_CONTROL_SPEC { impl crate::Readable for MMC_CONTROL_SPEC {} #[doc = "`write(|w| ..)` method takes [`mmc_control::W`](W) writer structure"] impl crate::Writable for MMC_CONTROL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MMC_CONTROL to value 0"] impl crate::Resettable for MMC_CONTROL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_ipc_receive_interrupt.rs b/src/eth0/mmc_ipc_receive_interrupt.rs index 5c64ac7d..811a952e 100644 --- a/src/eth0/mmc_ipc_receive_interrupt.rs +++ b/src/eth0/mmc_ipc_receive_interrupt.rs @@ -207,5 +207,5 @@ impl crate::RegisterSpec for MMC_IPC_RECEIVE_INTERRUPT_SPEC { impl crate::Readable for MMC_IPC_RECEIVE_INTERRUPT_SPEC {} #[doc = "`reset()` method sets MMC_IPC_RECEIVE_INTERRUPT to value 0"] impl crate::Resettable for MMC_IPC_RECEIVE_INTERRUPT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_ipc_receive_interrupt_mask.rs b/src/eth0/mmc_ipc_receive_interrupt_mask.rs index f31b2a1e..3d82c778 100644 --- a/src/eth0/mmc_ipc_receive_interrupt_mask.rs +++ b/src/eth0/mmc_ipc_receive_interrupt_mask.rs @@ -445,10 +445,10 @@ impl crate::RegisterSpec for MMC_IPC_RECEIVE_INTERRUPT_MASK_SPEC { impl crate::Readable for MMC_IPC_RECEIVE_INTERRUPT_MASK_SPEC {} #[doc = "`write(|w| ..)` method takes [`mmc_ipc_receive_interrupt_mask::W`](W) writer structure"] impl crate::Writable for MMC_IPC_RECEIVE_INTERRUPT_MASK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MMC_IPC_RECEIVE_INTERRUPT_MASK to value 0"] impl crate::Resettable for MMC_IPC_RECEIVE_INTERRUPT_MASK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_receive_interrupt.rs b/src/eth0/mmc_receive_interrupt.rs index a502763f..4dcaab74 100644 --- a/src/eth0/mmc_receive_interrupt.rs +++ b/src/eth0/mmc_receive_interrupt.rs @@ -193,5 +193,5 @@ impl crate::RegisterSpec for MMC_RECEIVE_INTERRUPT_SPEC { impl crate::Readable for MMC_RECEIVE_INTERRUPT_SPEC {} #[doc = "`reset()` method sets MMC_RECEIVE_INTERRUPT to value 0"] impl crate::Resettable for MMC_RECEIVE_INTERRUPT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_receive_interrupt_mask.rs b/src/eth0/mmc_receive_interrupt_mask.rs index 7e2a8ca1..535b1c41 100644 --- a/src/eth0/mmc_receive_interrupt_mask.rs +++ b/src/eth0/mmc_receive_interrupt_mask.rs @@ -415,10 +415,10 @@ impl crate::RegisterSpec for MMC_RECEIVE_INTERRUPT_MASK_SPEC { impl crate::Readable for MMC_RECEIVE_INTERRUPT_MASK_SPEC {} #[doc = "`write(|w| ..)` method takes [`mmc_receive_interrupt_mask::W`](W) writer structure"] impl crate::Writable for MMC_RECEIVE_INTERRUPT_MASK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MMC_RECEIVE_INTERRUPT_MASK to value 0"] impl crate::Resettable for MMC_RECEIVE_INTERRUPT_MASK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_transmit_interrupt.rs b/src/eth0/mmc_transmit_interrupt.rs index 3d0f00ce..c1695943 100644 --- a/src/eth0/mmc_transmit_interrupt.rs +++ b/src/eth0/mmc_transmit_interrupt.rs @@ -193,5 +193,5 @@ impl crate::RegisterSpec for MMC_TRANSMIT_INTERRUPT_SPEC { impl crate::Readable for MMC_TRANSMIT_INTERRUPT_SPEC {} #[doc = "`reset()` method sets MMC_TRANSMIT_INTERRUPT to value 0"] impl crate::Resettable for MMC_TRANSMIT_INTERRUPT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/mmc_transmit_interrupt_mask.rs b/src/eth0/mmc_transmit_interrupt_mask.rs index 797aa32a..91067220 100644 --- a/src/eth0/mmc_transmit_interrupt_mask.rs +++ b/src/eth0/mmc_transmit_interrupt_mask.rs @@ -415,10 +415,10 @@ impl crate::RegisterSpec for MMC_TRANSMIT_INTERRUPT_MASK_SPEC { impl crate::Readable for MMC_TRANSMIT_INTERRUPT_MASK_SPEC {} #[doc = "`write(|w| ..)` method takes [`mmc_transmit_interrupt_mask::W`](W) writer structure"] impl crate::Writable for MMC_TRANSMIT_INTERRUPT_MASK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MMC_TRANSMIT_INTERRUPT_MASK to value 0"] impl crate::Resettable for MMC_TRANSMIT_INTERRUPT_MASK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/operation_mode.rs b/src/eth0/operation_mode.rs index 23556ca1..7c793796 100644 --- a/src/eth0/operation_mode.rs +++ b/src/eth0/operation_mode.rs @@ -205,10 +205,10 @@ impl crate::RegisterSpec for OPERATION_MODE_SPEC { impl crate::Readable for OPERATION_MODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`operation_mode::W`](W) writer structure"] impl crate::Writable for OPERATION_MODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OPERATION_MODE to value 0"] impl crate::Resettable for OPERATION_MODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/pmt_control_status.rs b/src/eth0/pmt_control_status.rs index 30aa10d1..cea36e32 100644 --- a/src/eth0/pmt_control_status.rs +++ b/src/eth0/pmt_control_status.rs @@ -114,10 +114,10 @@ impl crate::RegisterSpec for PMT_CONTROL_STATUS_SPEC { impl crate::Readable for PMT_CONTROL_STATUS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pmt_control_status::W`](W) writer structure"] impl crate::Writable for PMT_CONTROL_STATUS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PMT_CONTROL_STATUS to value 0"] impl crate::Resettable for PMT_CONTROL_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/pps_control.rs b/src/eth0/pps_control.rs index 484313b7..14c41edc 100644 --- a/src/eth0/pps_control.rs +++ b/src/eth0/pps_control.rs @@ -96,10 +96,10 @@ impl crate::RegisterSpec for PPS_CONTROL_SPEC { impl crate::Readable for PPS_CONTROL_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps_control::W`](W) writer structure"] impl crate::Writable for PPS_CONTROL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS_CONTROL to value 0"] impl crate::Resettable for PPS_CONTROL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/receive_descriptor_list_address.rs b/src/eth0/receive_descriptor_list_address.rs index 3aed7f6e..9302198f 100644 --- a/src/eth0/receive_descriptor_list_address.rs +++ b/src/eth0/receive_descriptor_list_address.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for RECEIVE_DESCRIPTOR_LIST_ADDRESS_SPEC { impl crate::Readable for RECEIVE_DESCRIPTOR_LIST_ADDRESS_SPEC {} #[doc = "`write(|w| ..)` method takes [`receive_descriptor_list_address::W`](W) writer structure"] impl crate::Writable for RECEIVE_DESCRIPTOR_LIST_ADDRESS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RECEIVE_DESCRIPTOR_LIST_ADDRESS to value 0"] impl crate::Resettable for RECEIVE_DESCRIPTOR_LIST_ADDRESS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/receive_interrupt_watchdog_timer.rs b/src/eth0/receive_interrupt_watchdog_timer.rs index f67a4f0e..d7726381 100644 --- a/src/eth0/receive_interrupt_watchdog_timer.rs +++ b/src/eth0/receive_interrupt_watchdog_timer.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for RECEIVE_INTERRUPT_WATCHDOG_TIMER_SPEC { impl crate::Readable for RECEIVE_INTERRUPT_WATCHDOG_TIMER_SPEC {} #[doc = "`write(|w| ..)` method takes [`receive_interrupt_watchdog_timer::W`](W) writer structure"] impl crate::Writable for RECEIVE_INTERRUPT_WATCHDOG_TIMER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RECEIVE_INTERRUPT_WATCHDOG_TIMER to value 0"] impl crate::Resettable for RECEIVE_INTERRUPT_WATCHDOG_TIMER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/receive_poll_demand.rs b/src/eth0/receive_poll_demand.rs index 8d6f7134..29d28991 100644 --- a/src/eth0/receive_poll_demand.rs +++ b/src/eth0/receive_poll_demand.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for RECEIVE_POLL_DEMAND_SPEC { impl crate::Readable for RECEIVE_POLL_DEMAND_SPEC {} #[doc = "`write(|w| ..)` method takes [`receive_poll_demand::W`](W) writer structure"] impl crate::Writable for RECEIVE_POLL_DEMAND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RECEIVE_POLL_DEMAND to value 0"] impl crate::Resettable for RECEIVE_POLL_DEMAND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/remote_wake_up_frame_filter.rs b/src/eth0/remote_wake_up_frame_filter.rs index 78d3e8b9..9e308902 100644 --- a/src/eth0/remote_wake_up_frame_filter.rs +++ b/src/eth0/remote_wake_up_frame_filter.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for REMOTE_WAKE_UP_FRAME_FILTER_SPEC { impl crate::Readable for REMOTE_WAKE_UP_FRAME_FILTER_SPEC {} #[doc = "`write(|w| ..)` method takes [`remote_wake_up_frame_filter::W`](W) writer structure"] impl crate::Writable for REMOTE_WAKE_UP_FRAME_FILTER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REMOTE_WAKE_UP_FRAME_FILTER to value 0"] impl crate::Resettable for REMOTE_WAKE_UP_FRAME_FILTER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_1024tomaxoctets_frames_good_bad.rs b/src/eth0/rx_1024tomaxoctets_frames_good_bad.rs index cd99d749..31de4066 100644 --- a/src/eth0/rx_1024tomaxoctets_frames_good_bad.rs +++ b/src/eth0/rx_1024tomaxoctets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_1024TOMAXOCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_128to255octets_frames_good_bad.rs b/src/eth0/rx_128to255octets_frames_good_bad.rs index d1d1860a..d7602b34 100644 --- a/src/eth0/rx_128to255octets_frames_good_bad.rs +++ b/src/eth0/rx_128to255octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_128TO255OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_256to511octets_frames_good_bad.rs b/src/eth0/rx_256to511octets_frames_good_bad.rs index 2d9dc335..90327629 100644 --- a/src/eth0/rx_256to511octets_frames_good_bad.rs +++ b/src/eth0/rx_256to511octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_256TO511OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_512to1023octets_frames_good_bad.rs b/src/eth0/rx_512to1023octets_frames_good_bad.rs index 2710cdbf..d9888d62 100644 --- a/src/eth0/rx_512to1023octets_frames_good_bad.rs +++ b/src/eth0/rx_512to1023octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_512TO1023OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_64octets_frames_good_bad.rs b/src/eth0/rx_64octets_frames_good_bad.rs index fa4140ce..1cafffe4 100644 --- a/src/eth0/rx_64octets_frames_good_bad.rs +++ b/src/eth0/rx_64octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_64OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_64OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_64OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_64OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_65to127octets_frames_good_bad.rs b/src/eth0/rx_65to127octets_frames_good_bad.rs index 2fdd1e47..69843349 100644 --- a/src/eth0/rx_65to127octets_frames_good_bad.rs +++ b/src/eth0/rx_65to127octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_65TO127OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_alignment_error_frames.rs b/src/eth0/rx_alignment_error_frames.rs index 6c98e41a..db3834e3 100644 --- a/src/eth0/rx_alignment_error_frames.rs +++ b/src/eth0/rx_alignment_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_ALIGNMENT_ERROR_FRAMES_SPEC { impl crate::Readable for RX_ALIGNMENT_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_ALIGNMENT_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_ALIGNMENT_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_broadcast_frames_good.rs b/src/eth0/rx_broadcast_frames_good.rs index 742f0326..522799d9 100644 --- a/src/eth0/rx_broadcast_frames_good.rs +++ b/src/eth0/rx_broadcast_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_BROADCAST_FRAMES_GOOD_SPEC { impl crate::Readable for RX_BROADCAST_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_BROADCAST_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_BROADCAST_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_control_frames_good.rs b/src/eth0/rx_control_frames_good.rs index b7158607..2cc7a68b 100644 --- a/src/eth0/rx_control_frames_good.rs +++ b/src/eth0/rx_control_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_CONTROL_FRAMES_GOOD_SPEC { impl crate::Readable for RX_CONTROL_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_CONTROL_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_CONTROL_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_crc_error_frames.rs b/src/eth0/rx_crc_error_frames.rs index 10caad5b..bbd9088b 100644 --- a/src/eth0/rx_crc_error_frames.rs +++ b/src/eth0/rx_crc_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_CRC_ERROR_FRAMES_SPEC { impl crate::Readable for RX_CRC_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_CRC_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_CRC_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_fifo_overflow_frames.rs b/src/eth0/rx_fifo_overflow_frames.rs index fd0a5564..105ac3b7 100644 --- a/src/eth0/rx_fifo_overflow_frames.rs +++ b/src/eth0/rx_fifo_overflow_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_FIFO_OVERFLOW_FRAMES_SPEC { impl crate::Readable for RX_FIFO_OVERFLOW_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_FIFO_OVERFLOW_FRAMES to value 0"] impl crate::Resettable for RX_FIFO_OVERFLOW_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_frames_count_good_bad.rs b/src/eth0/rx_frames_count_good_bad.rs index cb14e16e..62305550 100644 --- a/src/eth0/rx_frames_count_good_bad.rs +++ b/src/eth0/rx_frames_count_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_FRAMES_COUNT_GOOD_BAD_SPEC { impl crate::Readable for RX_FRAMES_COUNT_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_FRAMES_COUNT_GOOD_BAD to value 0"] impl crate::Resettable for RX_FRAMES_COUNT_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_jabber_error_frames.rs b/src/eth0/rx_jabber_error_frames.rs index a886c1e1..3bcf4483 100644 --- a/src/eth0/rx_jabber_error_frames.rs +++ b/src/eth0/rx_jabber_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_JABBER_ERROR_FRAMES_SPEC { impl crate::Readable for RX_JABBER_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_JABBER_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_JABBER_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_length_error_frames.rs b/src/eth0/rx_length_error_frames.rs index 8ed6c046..79b8572e 100644 --- a/src/eth0/rx_length_error_frames.rs +++ b/src/eth0/rx_length_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_LENGTH_ERROR_FRAMES_SPEC { impl crate::Readable for RX_LENGTH_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_LENGTH_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_LENGTH_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_multicast_frames_good.rs b/src/eth0/rx_multicast_frames_good.rs index 553b8d76..7f411b45 100644 --- a/src/eth0/rx_multicast_frames_good.rs +++ b/src/eth0/rx_multicast_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_MULTICAST_FRAMES_GOOD_SPEC { impl crate::Readable for RX_MULTICAST_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_MULTICAST_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_MULTICAST_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_octet_count_good.rs b/src/eth0/rx_octet_count_good.rs index 57482c38..79b33e95 100644 --- a/src/eth0/rx_octet_count_good.rs +++ b/src/eth0/rx_octet_count_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_OCTET_COUNT_GOOD_SPEC { impl crate::Readable for RX_OCTET_COUNT_GOOD_SPEC {} #[doc = "`reset()` method sets RX_OCTET_COUNT_GOOD to value 0"] impl crate::Resettable for RX_OCTET_COUNT_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_octet_count_good_bad.rs b/src/eth0/rx_octet_count_good_bad.rs index 3459a5d6..b05cf958 100644 --- a/src/eth0/rx_octet_count_good_bad.rs +++ b/src/eth0/rx_octet_count_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_OCTET_COUNT_GOOD_BAD_SPEC { impl crate::Readable for RX_OCTET_COUNT_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_OCTET_COUNT_GOOD_BAD to value 0"] impl crate::Resettable for RX_OCTET_COUNT_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_out_of_range_type_frames.rs b/src/eth0/rx_out_of_range_type_frames.rs index 8571487a..791128ee 100644 --- a/src/eth0/rx_out_of_range_type_frames.rs +++ b/src/eth0/rx_out_of_range_type_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_OUT_OF_RANGE_TYPE_FRAMES_SPEC { impl crate::Readable for RX_OUT_OF_RANGE_TYPE_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_OUT_OF_RANGE_TYPE_FRAMES to value 0"] impl crate::Resettable for RX_OUT_OF_RANGE_TYPE_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_oversize_frames_good.rs b/src/eth0/rx_oversize_frames_good.rs index 96ef48f0..b804282c 100644 --- a/src/eth0/rx_oversize_frames_good.rs +++ b/src/eth0/rx_oversize_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_OVERSIZE_FRAMES_GOOD_SPEC { impl crate::Readable for RX_OVERSIZE_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_OVERSIZE_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_OVERSIZE_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_pause_frames.rs b/src/eth0/rx_pause_frames.rs index 985cec3f..d9a756ef 100644 --- a/src/eth0/rx_pause_frames.rs +++ b/src/eth0/rx_pause_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_PAUSE_FRAMES_SPEC { impl crate::Readable for RX_PAUSE_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_PAUSE_FRAMES to value 0"] impl crate::Resettable for RX_PAUSE_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_receive_error_frames.rs b/src/eth0/rx_receive_error_frames.rs index 06e09a65..92263e15 100644 --- a/src/eth0/rx_receive_error_frames.rs +++ b/src/eth0/rx_receive_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_RECEIVE_ERROR_FRAMES_SPEC { impl crate::Readable for RX_RECEIVE_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_RECEIVE_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_RECEIVE_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_runt_error_frames.rs b/src/eth0/rx_runt_error_frames.rs index fc01b04b..d840acfe 100644 --- a/src/eth0/rx_runt_error_frames.rs +++ b/src/eth0/rx_runt_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_RUNT_ERROR_FRAMES_SPEC { impl crate::Readable for RX_RUNT_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_RUNT_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_RUNT_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_undersize_frames_good.rs b/src/eth0/rx_undersize_frames_good.rs index 5ce5676b..32420602 100644 --- a/src/eth0/rx_undersize_frames_good.rs +++ b/src/eth0/rx_undersize_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_UNDERSIZE_FRAMES_GOOD_SPEC { impl crate::Readable for RX_UNDERSIZE_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_UNDERSIZE_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_UNDERSIZE_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_unicast_frames_good.rs b/src/eth0/rx_unicast_frames_good.rs index 33d61f72..4882e81a 100644 --- a/src/eth0/rx_unicast_frames_good.rs +++ b/src/eth0/rx_unicast_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_UNICAST_FRAMES_GOOD_SPEC { impl crate::Readable for RX_UNICAST_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets RX_UNICAST_FRAMES_GOOD to value 0"] impl crate::Resettable for RX_UNICAST_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_vlan_frames_good_bad.rs b/src/eth0/rx_vlan_frames_good_bad.rs index 43c20e1c..c6045da3 100644 --- a/src/eth0/rx_vlan_frames_good_bad.rs +++ b/src/eth0/rx_vlan_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_VLAN_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for RX_VLAN_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets RX_VLAN_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for RX_VLAN_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rx_watchdog_error_frames.rs b/src/eth0/rx_watchdog_error_frames.rs index b83b7110..c49ad1a6 100644 --- a/src/eth0/rx_watchdog_error_frames.rs +++ b/src/eth0/rx_watchdog_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RX_WATCHDOG_ERROR_FRAMES_SPEC { impl crate::Readable for RX_WATCHDOG_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RX_WATCHDOG_ERROR_FRAMES to value 0"] impl crate::Resettable for RX_WATCHDOG_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxicmp_error_frames.rs b/src/eth0/rxicmp_error_frames.rs index a6262309..0f8b6ea6 100644 --- a/src/eth0/rxicmp_error_frames.rs +++ b/src/eth0/rxicmp_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXICMP_ERROR_FRAMES_SPEC { impl crate::Readable for RXICMP_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RXICMP_ERROR_FRAMES to value 0"] impl crate::Resettable for RXICMP_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxicmp_error_octets.rs b/src/eth0/rxicmp_error_octets.rs index 21dcfb39..697a1f3c 100644 --- a/src/eth0/rxicmp_error_octets.rs +++ b/src/eth0/rxicmp_error_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXICMP_ERROR_OCTETS_SPEC { impl crate::Readable for RXICMP_ERROR_OCTETS_SPEC {} #[doc = "`reset()` method sets RXICMP_ERROR_OCTETS to value 0"] impl crate::Resettable for RXICMP_ERROR_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxicmp_good_frames.rs b/src/eth0/rxicmp_good_frames.rs index f6fcd6ae..350f656a 100644 --- a/src/eth0/rxicmp_good_frames.rs +++ b/src/eth0/rxicmp_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXICMP_GOOD_FRAMES_SPEC { impl crate::Readable for RXICMP_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXICMP_GOOD_FRAMES to value 0"] impl crate::Resettable for RXICMP_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxicmp_good_octets.rs b/src/eth0/rxicmp_good_octets.rs index 6dd851d5..73ef7133 100644 --- a/src/eth0/rxicmp_good_octets.rs +++ b/src/eth0/rxicmp_good_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXICMP_GOOD_OCTETS_SPEC { impl crate::Readable for RXICMP_GOOD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXICMP_GOOD_OCTETS to value 0"] impl crate::Resettable for RXICMP_GOOD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_fragmented_frames.rs b/src/eth0/rxipv4_fragmented_frames.rs index ac65f8fd..c27990aa 100644 --- a/src/eth0/rxipv4_fragmented_frames.rs +++ b/src/eth0/rxipv4_fragmented_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_FRAGMENTED_FRAMES_SPEC { impl crate::Readable for RXIPV4_FRAGMENTED_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV4_FRAGMENTED_FRAMES to value 0"] impl crate::Resettable for RXIPV4_FRAGMENTED_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_fragmented_octets.rs b/src/eth0/rxipv4_fragmented_octets.rs index c8fbc3b9..adc385dd 100644 --- a/src/eth0/rxipv4_fragmented_octets.rs +++ b/src/eth0/rxipv4_fragmented_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_FRAGMENTED_OCTETS_SPEC { impl crate::Readable for RXIPV4_FRAGMENTED_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV4_FRAGMENTED_OCTETS to value 0"] impl crate::Resettable for RXIPV4_FRAGMENTED_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_good_frames.rs b/src/eth0/rxipv4_good_frames.rs index b9c086a7..96ee0303 100644 --- a/src/eth0/rxipv4_good_frames.rs +++ b/src/eth0/rxipv4_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_GOOD_FRAMES_SPEC { impl crate::Readable for RXIPV4_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV4_GOOD_FRAMES to value 0"] impl crate::Resettable for RXIPV4_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_good_octets.rs b/src/eth0/rxipv4_good_octets.rs index 15b9384b..0cb19e08 100644 --- a/src/eth0/rxipv4_good_octets.rs +++ b/src/eth0/rxipv4_good_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_GOOD_OCTETS_SPEC { impl crate::Readable for RXIPV4_GOOD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV4_GOOD_OCTETS to value 0"] impl crate::Resettable for RXIPV4_GOOD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_header_error_frames.rs b/src/eth0/rxipv4_header_error_frames.rs index 86e9c3be..cda4e729 100644 --- a/src/eth0/rxipv4_header_error_frames.rs +++ b/src/eth0/rxipv4_header_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_HEADER_ERROR_FRAMES_SPEC { impl crate::Readable for RXIPV4_HEADER_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV4_HEADER_ERROR_FRAMES to value 0"] impl crate::Resettable for RXIPV4_HEADER_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_header_error_octets.rs b/src/eth0/rxipv4_header_error_octets.rs index d8606d55..c38fc1ab 100644 --- a/src/eth0/rxipv4_header_error_octets.rs +++ b/src/eth0/rxipv4_header_error_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_HEADER_ERROR_OCTETS_SPEC { impl crate::Readable for RXIPV4_HEADER_ERROR_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV4_HEADER_ERROR_OCTETS to value 0"] impl crate::Resettable for RXIPV4_HEADER_ERROR_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_no_payload_frames.rs b/src/eth0/rxipv4_no_payload_frames.rs index 78406fd8..06a0129b 100644 --- a/src/eth0/rxipv4_no_payload_frames.rs +++ b/src/eth0/rxipv4_no_payload_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_NO_PAYLOAD_FRAMES_SPEC { impl crate::Readable for RXIPV4_NO_PAYLOAD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV4_NO_PAYLOAD_FRAMES to value 0"] impl crate::Resettable for RXIPV4_NO_PAYLOAD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_no_payload_octets.rs b/src/eth0/rxipv4_no_payload_octets.rs index 0c9c550a..0805e8d5 100644 --- a/src/eth0/rxipv4_no_payload_octets.rs +++ b/src/eth0/rxipv4_no_payload_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_NO_PAYLOAD_OCTETS_SPEC { impl crate::Readable for RXIPV4_NO_PAYLOAD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV4_NO_PAYLOAD_OCTETS to value 0"] impl crate::Resettable for RXIPV4_NO_PAYLOAD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_udp_checksum_disable_octets.rs b/src/eth0/rxipv4_udp_checksum_disable_octets.rs index 90aeb965..8a563e1a 100644 --- a/src/eth0/rxipv4_udp_checksum_disable_octets.rs +++ b/src/eth0/rxipv4_udp_checksum_disable_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_UDP_CHECKSUM_DISABLE_OCTETS_SPEC { impl crate::Readable for RXIPV4_UDP_CHECKSUM_DISABLE_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV4_UDP_CHECKSUM_DISABLE_OCTETS to value 0"] impl crate::Resettable for RXIPV4_UDP_CHECKSUM_DISABLE_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv4_udp_checksum_disabled_frames.rs b/src/eth0/rxipv4_udp_checksum_disabled_frames.rs index 7b419e7f..56153397 100644 --- a/src/eth0/rxipv4_udp_checksum_disabled_frames.rs +++ b/src/eth0/rxipv4_udp_checksum_disabled_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV4_UDP_CHECKSUM_DISABLED_FRAMES_SPEC { impl crate::Readable for RXIPV4_UDP_CHECKSUM_DISABLED_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV4_UDP_CHECKSUM_DISABLED_FRAMES to value 0"] impl crate::Resettable for RXIPV4_UDP_CHECKSUM_DISABLED_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_good_frames.rs b/src/eth0/rxipv6_good_frames.rs index 8f0f6ed2..6077c681 100644 --- a/src/eth0/rxipv6_good_frames.rs +++ b/src/eth0/rxipv6_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_GOOD_FRAMES_SPEC { impl crate::Readable for RXIPV6_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV6_GOOD_FRAMES to value 0"] impl crate::Resettable for RXIPV6_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_good_octets.rs b/src/eth0/rxipv6_good_octets.rs index f2bb6d4b..255f23ad 100644 --- a/src/eth0/rxipv6_good_octets.rs +++ b/src/eth0/rxipv6_good_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_GOOD_OCTETS_SPEC { impl crate::Readable for RXIPV6_GOOD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV6_GOOD_OCTETS to value 0"] impl crate::Resettable for RXIPV6_GOOD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_header_error_frames.rs b/src/eth0/rxipv6_header_error_frames.rs index 278844a9..a5d1df7d 100644 --- a/src/eth0/rxipv6_header_error_frames.rs +++ b/src/eth0/rxipv6_header_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_HEADER_ERROR_FRAMES_SPEC { impl crate::Readable for RXIPV6_HEADER_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV6_HEADER_ERROR_FRAMES to value 0"] impl crate::Resettable for RXIPV6_HEADER_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_header_error_octets.rs b/src/eth0/rxipv6_header_error_octets.rs index 576ce95d..572058aa 100644 --- a/src/eth0/rxipv6_header_error_octets.rs +++ b/src/eth0/rxipv6_header_error_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_HEADER_ERROR_OCTETS_SPEC { impl crate::Readable for RXIPV6_HEADER_ERROR_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV6_HEADER_ERROR_OCTETS to value 0"] impl crate::Resettable for RXIPV6_HEADER_ERROR_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_no_payload_frames.rs b/src/eth0/rxipv6_no_payload_frames.rs index c943a82a..7a3a694a 100644 --- a/src/eth0/rxipv6_no_payload_frames.rs +++ b/src/eth0/rxipv6_no_payload_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_NO_PAYLOAD_FRAMES_SPEC { impl crate::Readable for RXIPV6_NO_PAYLOAD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXIPV6_NO_PAYLOAD_FRAMES to value 0"] impl crate::Resettable for RXIPV6_NO_PAYLOAD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxipv6_no_payload_octets.rs b/src/eth0/rxipv6_no_payload_octets.rs index 4e2741b6..6165c522 100644 --- a/src/eth0/rxipv6_no_payload_octets.rs +++ b/src/eth0/rxipv6_no_payload_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXIPV6_NO_PAYLOAD_OCTETS_SPEC { impl crate::Readable for RXIPV6_NO_PAYLOAD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXIPV6_NO_PAYLOAD_OCTETS to value 0"] impl crate::Resettable for RXIPV6_NO_PAYLOAD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxtcp_error_frames.rs b/src/eth0/rxtcp_error_frames.rs index c49b153f..906af0b7 100644 --- a/src/eth0/rxtcp_error_frames.rs +++ b/src/eth0/rxtcp_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXTCP_ERROR_FRAMES_SPEC { impl crate::Readable for RXTCP_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RXTCP_ERROR_FRAMES to value 0"] impl crate::Resettable for RXTCP_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxtcp_error_octets.rs b/src/eth0/rxtcp_error_octets.rs index 807f9459..9f067968 100644 --- a/src/eth0/rxtcp_error_octets.rs +++ b/src/eth0/rxtcp_error_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXTCP_ERROR_OCTETS_SPEC { impl crate::Readable for RXTCP_ERROR_OCTETS_SPEC {} #[doc = "`reset()` method sets RXTCP_ERROR_OCTETS to value 0"] impl crate::Resettable for RXTCP_ERROR_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxtcp_good_frames.rs b/src/eth0/rxtcp_good_frames.rs index 4003e357..556ff979 100644 --- a/src/eth0/rxtcp_good_frames.rs +++ b/src/eth0/rxtcp_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXTCP_GOOD_FRAMES_SPEC { impl crate::Readable for RXTCP_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXTCP_GOOD_FRAMES to value 0"] impl crate::Resettable for RXTCP_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxtcp_good_octets.rs b/src/eth0/rxtcp_good_octets.rs index 5c57964a..eb8a5e1c 100644 --- a/src/eth0/rxtcp_good_octets.rs +++ b/src/eth0/rxtcp_good_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXTCP_GOOD_OCTETS_SPEC { impl crate::Readable for RXTCP_GOOD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXTCP_GOOD_OCTETS to value 0"] impl crate::Resettable for RXTCP_GOOD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxudp_error_frames.rs b/src/eth0/rxudp_error_frames.rs index 9eed662a..5d15bbaf 100644 --- a/src/eth0/rxudp_error_frames.rs +++ b/src/eth0/rxudp_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXUDP_ERROR_FRAMES_SPEC { impl crate::Readable for RXUDP_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets RXUDP_ERROR_FRAMES to value 0"] impl crate::Resettable for RXUDP_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxudp_error_octets.rs b/src/eth0/rxudp_error_octets.rs index 87018d52..80be3ba4 100644 --- a/src/eth0/rxudp_error_octets.rs +++ b/src/eth0/rxudp_error_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXUDP_ERROR_OCTETS_SPEC { impl crate::Readable for RXUDP_ERROR_OCTETS_SPEC {} #[doc = "`reset()` method sets RXUDP_ERROR_OCTETS to value 0"] impl crate::Resettable for RXUDP_ERROR_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxudp_good_frames.rs b/src/eth0/rxudp_good_frames.rs index e47cdae6..d796052e 100644 --- a/src/eth0/rxudp_good_frames.rs +++ b/src/eth0/rxudp_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXUDP_GOOD_FRAMES_SPEC { impl crate::Readable for RXUDP_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets RXUDP_GOOD_FRAMES to value 0"] impl crate::Resettable for RXUDP_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/rxudp_good_octets.rs b/src/eth0/rxudp_good_octets.rs index 7193549c..52798b60 100644 --- a/src/eth0/rxudp_good_octets.rs +++ b/src/eth0/rxudp_good_octets.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RXUDP_GOOD_OCTETS_SPEC { impl crate::Readable for RXUDP_GOOD_OCTETS_SPEC {} #[doc = "`reset()` method sets RXUDP_GOOD_OCTETS to value 0"] impl crate::Resettable for RXUDP_GOOD_OCTETS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/status.rs b/src/eth0/status.rs index b88257cc..1009e095 100644 --- a/src/eth0/status.rs +++ b/src/eth0/status.rs @@ -292,10 +292,10 @@ impl crate::RegisterSpec for STATUS_SPEC { impl crate::Readable for STATUS_SPEC {} #[doc = "`write(|w| ..)` method takes [`status::W`](W) writer structure"] impl crate::Writable for STATUS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets STATUS to value 0"] impl crate::Resettable for STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/sub_second_increment.rs b/src/eth0/sub_second_increment.rs index aa55108d..b49af5fd 100644 --- a/src/eth0/sub_second_increment.rs +++ b/src/eth0/sub_second_increment.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SUB_SECOND_INCREMENT_SPEC { impl crate::Readable for SUB_SECOND_INCREMENT_SPEC {} #[doc = "`write(|w| ..)` method takes [`sub_second_increment::W`](W) writer structure"] impl crate::Writable for SUB_SECOND_INCREMENT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SUB_SECOND_INCREMENT to value 0"] impl crate::Resettable for SUB_SECOND_INCREMENT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/system_time_higher_word_seconds.rs b/src/eth0/system_time_higher_word_seconds.rs index 22e42230..ba4d0bcb 100644 --- a/src/eth0/system_time_higher_word_seconds.rs +++ b/src/eth0/system_time_higher_word_seconds.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SYSTEM_TIME_HIGHER_WORD_SECONDS_SPEC { impl crate::Readable for SYSTEM_TIME_HIGHER_WORD_SECONDS_SPEC {} #[doc = "`write(|w| ..)` method takes [`system_time_higher_word_seconds::W`](W) writer structure"] impl crate::Writable for SYSTEM_TIME_HIGHER_WORD_SECONDS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYSTEM_TIME_HIGHER_WORD_SECONDS to value 0"] impl crate::Resettable for SYSTEM_TIME_HIGHER_WORD_SECONDS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/system_time_nanoseconds.rs b/src/eth0/system_time_nanoseconds.rs index 6dc29713..51f868eb 100644 --- a/src/eth0/system_time_nanoseconds.rs +++ b/src/eth0/system_time_nanoseconds.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for SYSTEM_TIME_NANOSECONDS_SPEC { impl crate::Readable for SYSTEM_TIME_NANOSECONDS_SPEC {} #[doc = "`reset()` method sets SYSTEM_TIME_NANOSECONDS to value 0"] impl crate::Resettable for SYSTEM_TIME_NANOSECONDS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/system_time_nanoseconds_update.rs b/src/eth0/system_time_nanoseconds_update.rs index ff14d820..b4d1c444 100644 --- a/src/eth0/system_time_nanoseconds_update.rs +++ b/src/eth0/system_time_nanoseconds_update.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for SYSTEM_TIME_NANOSECONDS_UPDATE_SPEC { impl crate::Readable for SYSTEM_TIME_NANOSECONDS_UPDATE_SPEC {} #[doc = "`write(|w| ..)` method takes [`system_time_nanoseconds_update::W`](W) writer structure"] impl crate::Writable for SYSTEM_TIME_NANOSECONDS_UPDATE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYSTEM_TIME_NANOSECONDS_UPDATE to value 0"] impl crate::Resettable for SYSTEM_TIME_NANOSECONDS_UPDATE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/system_time_seconds.rs b/src/eth0/system_time_seconds.rs index 4f0b1cd3..7691823b 100644 --- a/src/eth0/system_time_seconds.rs +++ b/src/eth0/system_time_seconds.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for SYSTEM_TIME_SECONDS_SPEC { impl crate::Readable for SYSTEM_TIME_SECONDS_SPEC {} #[doc = "`reset()` method sets SYSTEM_TIME_SECONDS to value 0"] impl crate::Resettable for SYSTEM_TIME_SECONDS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/system_time_seconds_update.rs b/src/eth0/system_time_seconds_update.rs index 7c9cdbfd..1f36bb2f 100644 --- a/src/eth0/system_time_seconds_update.rs +++ b/src/eth0/system_time_seconds_update.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SYSTEM_TIME_SECONDS_UPDATE_SPEC { impl crate::Readable for SYSTEM_TIME_SECONDS_UPDATE_SPEC {} #[doc = "`write(|w| ..)` method takes [`system_time_seconds_update::W`](W) writer structure"] impl crate::Writable for SYSTEM_TIME_SECONDS_UPDATE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYSTEM_TIME_SECONDS_UPDATE to value 0"] impl crate::Resettable for SYSTEM_TIME_SECONDS_UPDATE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/target_time_nanoseconds.rs b/src/eth0/target_time_nanoseconds.rs index d8413efb..e7914fa4 100644 --- a/src/eth0/target_time_nanoseconds.rs +++ b/src/eth0/target_time_nanoseconds.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for TARGET_TIME_NANOSECONDS_SPEC { impl crate::Readable for TARGET_TIME_NANOSECONDS_SPEC {} #[doc = "`write(|w| ..)` method takes [`target_time_nanoseconds::W`](W) writer structure"] impl crate::Writable for TARGET_TIME_NANOSECONDS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TARGET_TIME_NANOSECONDS to value 0"] impl crate::Resettable for TARGET_TIME_NANOSECONDS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/target_time_seconds.rs b/src/eth0/target_time_seconds.rs index 8570de1e..008daa3d 100644 --- a/src/eth0/target_time_seconds.rs +++ b/src/eth0/target_time_seconds.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TARGET_TIME_SECONDS_SPEC { impl crate::Readable for TARGET_TIME_SECONDS_SPEC {} #[doc = "`write(|w| ..)` method takes [`target_time_seconds::W`](W) writer structure"] impl crate::Writable for TARGET_TIME_SECONDS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TARGET_TIME_SECONDS to value 0"] impl crate::Resettable for TARGET_TIME_SECONDS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/timestamp_addend.rs b/src/eth0/timestamp_addend.rs index 2c0d30e8..eac9bba1 100644 --- a/src/eth0/timestamp_addend.rs +++ b/src/eth0/timestamp_addend.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TIMESTAMP_ADDEND_SPEC { impl crate::Readable for TIMESTAMP_ADDEND_SPEC {} #[doc = "`write(|w| ..)` method takes [`timestamp_addend::W`](W) writer structure"] impl crate::Writable for TIMESTAMP_ADDEND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIMESTAMP_ADDEND to value 0"] impl crate::Resettable for TIMESTAMP_ADDEND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/timestamp_control.rs b/src/eth0/timestamp_control.rs index cc6166b8..57b53168 100644 --- a/src/eth0/timestamp_control.rs +++ b/src/eth0/timestamp_control.rs @@ -265,10 +265,10 @@ impl crate::RegisterSpec for TIMESTAMP_CONTROL_SPEC { impl crate::Readable for TIMESTAMP_CONTROL_SPEC {} #[doc = "`write(|w| ..)` method takes [`timestamp_control::W`](W) writer structure"] impl crate::Writable for TIMESTAMP_CONTROL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIMESTAMP_CONTROL to value 0x2000"] impl crate::Resettable for TIMESTAMP_CONTROL_SPEC { - const RESET_VALUE: Self::Ux = 0x2000; + const RESET_VALUE: u32 = 0x2000; } diff --git a/src/eth0/timestamp_status.rs b/src/eth0/timestamp_status.rs index 28e6b979..f0a13bcd 100644 --- a/src/eth0/timestamp_status.rs +++ b/src/eth0/timestamp_status.rs @@ -74,5 +74,5 @@ impl crate::RegisterSpec for TIMESTAMP_STATUS_SPEC { impl crate::Readable for TIMESTAMP_STATUS_SPEC {} #[doc = "`reset()` method sets TIMESTAMP_STATUS to value 0"] impl crate::Resettable for TIMESTAMP_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/transmit_descriptor_list_address.rs b/src/eth0/transmit_descriptor_list_address.rs index 9cdb8763..38fbdb40 100644 --- a/src/eth0/transmit_descriptor_list_address.rs +++ b/src/eth0/transmit_descriptor_list_address.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TRANSMIT_DESCRIPTOR_LIST_ADDRESS_SPEC { impl crate::Readable for TRANSMIT_DESCRIPTOR_LIST_ADDRESS_SPEC {} #[doc = "`write(|w| ..)` method takes [`transmit_descriptor_list_address::W`](W) writer structure"] impl crate::Writable for TRANSMIT_DESCRIPTOR_LIST_ADDRESS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRANSMIT_DESCRIPTOR_LIST_ADDRESS to value 0"] impl crate::Resettable for TRANSMIT_DESCRIPTOR_LIST_ADDRESS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/transmit_poll_demand.rs b/src/eth0/transmit_poll_demand.rs index 982c458c..7386aa69 100644 --- a/src/eth0/transmit_poll_demand.rs +++ b/src/eth0/transmit_poll_demand.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for TRANSMIT_POLL_DEMAND_SPEC { impl crate::Readable for TRANSMIT_POLL_DEMAND_SPEC {} #[doc = "`write(|w| ..)` method takes [`transmit_poll_demand::W`](W) writer structure"] impl crate::Writable for TRANSMIT_POLL_DEMAND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRANSMIT_POLL_DEMAND to value 0"] impl crate::Resettable for TRANSMIT_POLL_DEMAND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_1024tomaxoctets_frames_good_bad.rs b/src/eth0/tx_1024tomaxoctets_frames_good_bad.rs index c5177ca4..cf970e8e 100644 --- a/src/eth0/tx_1024tomaxoctets_frames_good_bad.rs +++ b/src/eth0/tx_1024tomaxoctets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_1024TOMAXOCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_1024TOMAXOCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_128to255octets_frames_good_bad.rs b/src/eth0/tx_128to255octets_frames_good_bad.rs index 1f86c2a3..b10a3abd 100644 --- a/src/eth0/tx_128to255octets_frames_good_bad.rs +++ b/src/eth0/tx_128to255octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_128TO255OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_128TO255OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_256to511octets_frames_good_bad.rs b/src/eth0/tx_256to511octets_frames_good_bad.rs index 55aae780..b7933cba 100644 --- a/src/eth0/tx_256to511octets_frames_good_bad.rs +++ b/src/eth0/tx_256to511octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_256TO511OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_256TO511OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_512to1023octets_frames_good_bad.rs b/src/eth0/tx_512to1023octets_frames_good_bad.rs index 3768172e..4e0e16a0 100644 --- a/src/eth0/tx_512to1023octets_frames_good_bad.rs +++ b/src/eth0/tx_512to1023octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_512TO1023OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_512TO1023OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_64octets_frames_good_bad.rs b/src/eth0/tx_64octets_frames_good_bad.rs index 1a5f957e..f09504a6 100644 --- a/src/eth0/tx_64octets_frames_good_bad.rs +++ b/src/eth0/tx_64octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_64OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_64OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_64OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_64OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_65to127octets_frames_good_bad.rs b/src/eth0/tx_65to127octets_frames_good_bad.rs index b9d00587..299775cd 100644 --- a/src/eth0/tx_65to127octets_frames_good_bad.rs +++ b/src/eth0/tx_65to127octets_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_65TO127OCTETS_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_65TO127OCTETS_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_broadcast_frames_good.rs b/src/eth0/tx_broadcast_frames_good.rs index fb21ea76..bdd715db 100644 --- a/src/eth0/tx_broadcast_frames_good.rs +++ b/src/eth0/tx_broadcast_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_BROADCAST_FRAMES_GOOD_SPEC { impl crate::Readable for TX_BROADCAST_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets TX_BROADCAST_FRAMES_GOOD to value 0"] impl crate::Resettable for TX_BROADCAST_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_broadcast_frames_good_bad.rs b/src/eth0/tx_broadcast_frames_good_bad.rs index 2aae79d3..4916f5e7 100644 --- a/src/eth0/tx_broadcast_frames_good_bad.rs +++ b/src/eth0/tx_broadcast_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_BROADCAST_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_BROADCAST_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_BROADCAST_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_BROADCAST_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_carrier_error_frames.rs b/src/eth0/tx_carrier_error_frames.rs index 76066546..934056d3 100644 --- a/src/eth0/tx_carrier_error_frames.rs +++ b/src/eth0/tx_carrier_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_CARRIER_ERROR_FRAMES_SPEC { impl crate::Readable for TX_CARRIER_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_CARRIER_ERROR_FRAMES to value 0"] impl crate::Resettable for TX_CARRIER_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_deferred_frames.rs b/src/eth0/tx_deferred_frames.rs index 82c3a313..cebc6757 100644 --- a/src/eth0/tx_deferred_frames.rs +++ b/src/eth0/tx_deferred_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_DEFERRED_FRAMES_SPEC { impl crate::Readable for TX_DEFERRED_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_DEFERRED_FRAMES to value 0"] impl crate::Resettable for TX_DEFERRED_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_excessive_collision_frames.rs b/src/eth0/tx_excessive_collision_frames.rs index 7f9ef05f..abedf48f 100644 --- a/src/eth0/tx_excessive_collision_frames.rs +++ b/src/eth0/tx_excessive_collision_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_EXCESSIVE_COLLISION_FRAMES_SPEC { impl crate::Readable for TX_EXCESSIVE_COLLISION_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_EXCESSIVE_COLLISION_FRAMES to value 0"] impl crate::Resettable for TX_EXCESSIVE_COLLISION_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_excessive_deferral_error.rs b/src/eth0/tx_excessive_deferral_error.rs index 4b28e1d6..fafc9a38 100644 --- a/src/eth0/tx_excessive_deferral_error.rs +++ b/src/eth0/tx_excessive_deferral_error.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_EXCESSIVE_DEFERRAL_ERROR_SPEC { impl crate::Readable for TX_EXCESSIVE_DEFERRAL_ERROR_SPEC {} #[doc = "`reset()` method sets TX_EXCESSIVE_DEFERRAL_ERROR to value 0"] impl crate::Resettable for TX_EXCESSIVE_DEFERRAL_ERROR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_frame_count_good.rs b/src/eth0/tx_frame_count_good.rs index 8e929f94..c6237f94 100644 --- a/src/eth0/tx_frame_count_good.rs +++ b/src/eth0/tx_frame_count_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_FRAME_COUNT_GOOD_SPEC { impl crate::Readable for TX_FRAME_COUNT_GOOD_SPEC {} #[doc = "`reset()` method sets TX_FRAME_COUNT_GOOD to value 0"] impl crate::Resettable for TX_FRAME_COUNT_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_frame_count_good_bad.rs b/src/eth0/tx_frame_count_good_bad.rs index 7f499370..a8be5001 100644 --- a/src/eth0/tx_frame_count_good_bad.rs +++ b/src/eth0/tx_frame_count_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_FRAME_COUNT_GOOD_BAD_SPEC { impl crate::Readable for TX_FRAME_COUNT_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_FRAME_COUNT_GOOD_BAD to value 0"] impl crate::Resettable for TX_FRAME_COUNT_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_late_collision_frames.rs b/src/eth0/tx_late_collision_frames.rs index 859ceca3..e804cb84 100644 --- a/src/eth0/tx_late_collision_frames.rs +++ b/src/eth0/tx_late_collision_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_LATE_COLLISION_FRAMES_SPEC { impl crate::Readable for TX_LATE_COLLISION_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_LATE_COLLISION_FRAMES to value 0"] impl crate::Resettable for TX_LATE_COLLISION_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_multicast_frames_good.rs b/src/eth0/tx_multicast_frames_good.rs index d7af3cfe..33c7bc3d 100644 --- a/src/eth0/tx_multicast_frames_good.rs +++ b/src/eth0/tx_multicast_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_MULTICAST_FRAMES_GOOD_SPEC { impl crate::Readable for TX_MULTICAST_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets TX_MULTICAST_FRAMES_GOOD to value 0"] impl crate::Resettable for TX_MULTICAST_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_multicast_frames_good_bad.rs b/src/eth0/tx_multicast_frames_good_bad.rs index 409afca4..3f66ef24 100644 --- a/src/eth0/tx_multicast_frames_good_bad.rs +++ b/src/eth0/tx_multicast_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_MULTICAST_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_MULTICAST_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_MULTICAST_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_MULTICAST_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_multiple_collision_good_frames.rs b/src/eth0/tx_multiple_collision_good_frames.rs index 2fb0d839..bfe4a438 100644 --- a/src/eth0/tx_multiple_collision_good_frames.rs +++ b/src/eth0/tx_multiple_collision_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_MULTIPLE_COLLISION_GOOD_FRAMES_SPEC { impl crate::Readable for TX_MULTIPLE_COLLISION_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_MULTIPLE_COLLISION_GOOD_FRAMES to value 0"] impl crate::Resettable for TX_MULTIPLE_COLLISION_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_octet_count_good.rs b/src/eth0/tx_octet_count_good.rs index a20d34e9..1478b24d 100644 --- a/src/eth0/tx_octet_count_good.rs +++ b/src/eth0/tx_octet_count_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_OCTET_COUNT_GOOD_SPEC { impl crate::Readable for TX_OCTET_COUNT_GOOD_SPEC {} #[doc = "`reset()` method sets TX_OCTET_COUNT_GOOD to value 0"] impl crate::Resettable for TX_OCTET_COUNT_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_octet_count_good_bad.rs b/src/eth0/tx_octet_count_good_bad.rs index 7fcb1c78..cba1085e 100644 --- a/src/eth0/tx_octet_count_good_bad.rs +++ b/src/eth0/tx_octet_count_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_OCTET_COUNT_GOOD_BAD_SPEC { impl crate::Readable for TX_OCTET_COUNT_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_OCTET_COUNT_GOOD_BAD to value 0"] impl crate::Resettable for TX_OCTET_COUNT_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_osize_frames_good.rs b/src/eth0/tx_osize_frames_good.rs index 4ba25fea..111f2568 100644 --- a/src/eth0/tx_osize_frames_good.rs +++ b/src/eth0/tx_osize_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_OSIZE_FRAMES_GOOD_SPEC { impl crate::Readable for TX_OSIZE_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets TX_OSIZE_FRAMES_GOOD to value 0"] impl crate::Resettable for TX_OSIZE_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_pause_frames.rs b/src/eth0/tx_pause_frames.rs index 29ab009d..a22d49bc 100644 --- a/src/eth0/tx_pause_frames.rs +++ b/src/eth0/tx_pause_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_PAUSE_FRAMES_SPEC { impl crate::Readable for TX_PAUSE_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_PAUSE_FRAMES to value 0"] impl crate::Resettable for TX_PAUSE_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_single_collision_good_frames.rs b/src/eth0/tx_single_collision_good_frames.rs index 287c4eac..ef1e763e 100644 --- a/src/eth0/tx_single_collision_good_frames.rs +++ b/src/eth0/tx_single_collision_good_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_SINGLE_COLLISION_GOOD_FRAMES_SPEC { impl crate::Readable for TX_SINGLE_COLLISION_GOOD_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_SINGLE_COLLISION_GOOD_FRAMES to value 0"] impl crate::Resettable for TX_SINGLE_COLLISION_GOOD_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_underflow_error_frames.rs b/src/eth0/tx_underflow_error_frames.rs index 23e1b5ad..93e55ac9 100644 --- a/src/eth0/tx_underflow_error_frames.rs +++ b/src/eth0/tx_underflow_error_frames.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_UNDERFLOW_ERROR_FRAMES_SPEC { impl crate::Readable for TX_UNDERFLOW_ERROR_FRAMES_SPEC {} #[doc = "`reset()` method sets TX_UNDERFLOW_ERROR_FRAMES to value 0"] impl crate::Resettable for TX_UNDERFLOW_ERROR_FRAMES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_unicast_frames_good_bad.rs b/src/eth0/tx_unicast_frames_good_bad.rs index c8ef4b9b..ca67a94e 100644 --- a/src/eth0/tx_unicast_frames_good_bad.rs +++ b/src/eth0/tx_unicast_frames_good_bad.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_UNICAST_FRAMES_GOOD_BAD_SPEC { impl crate::Readable for TX_UNICAST_FRAMES_GOOD_BAD_SPEC {} #[doc = "`reset()` method sets TX_UNICAST_FRAMES_GOOD_BAD to value 0"] impl crate::Resettable for TX_UNICAST_FRAMES_GOOD_BAD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/tx_vlan_frames_good.rs b/src/eth0/tx_vlan_frames_good.rs index 0fcc26a6..e092e4a0 100644 --- a/src/eth0/tx_vlan_frames_good.rs +++ b/src/eth0/tx_vlan_frames_good.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TX_VLAN_FRAMES_GOOD_SPEC { impl crate::Readable for TX_VLAN_FRAMES_GOOD_SPEC {} #[doc = "`reset()` method sets TX_VLAN_FRAMES_GOOD to value 0"] impl crate::Resettable for TX_VLAN_FRAMES_GOOD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0/version.rs b/src/eth0/version.rs index 43c56d68..b3e2943e 100644 --- a/src/eth0/version.rs +++ b/src/eth0/version.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for VERSION_SPEC { impl crate::Readable for VERSION_SPEC {} #[doc = "`reset()` method sets VERSION to value 0x1037"] impl crate::Resettable for VERSION_SPEC { - const RESET_VALUE: Self::Ux = 0x1037; + const RESET_VALUE: u32 = 0x1037; } diff --git a/src/eth0/vlan_tag.rs b/src/eth0/vlan_tag.rs index 4f0b1ebb..6ab03815 100644 --- a/src/eth0/vlan_tag.rs +++ b/src/eth0/vlan_tag.rs @@ -92,10 +92,10 @@ impl crate::RegisterSpec for VLAN_TAG_SPEC { impl crate::Readable for VLAN_TAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`vlan_tag::W`](W) writer structure"] impl crate::Writable for VLAN_TAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets VLAN_TAG to value 0"] impl crate::Resettable for VLAN_TAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/eth0_con/eth0_con.rs b/src/eth0_con/eth0_con.rs index cb2a611c..04b8ecc9 100644 --- a/src/eth0_con/eth0_con.rs +++ b/src/eth0_con/eth0_con.rs @@ -1145,10 +1145,10 @@ impl crate::RegisterSpec for ETH0_CON_SPEC { impl crate::Readable for ETH0_CON_SPEC {} #[doc = "`write(|w| ..)` method takes [`eth0_con::W`](W) writer structure"] impl crate::Writable for ETH0_CON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ETH0_CON to value 0"] impl crate::Resettable for ETH0_CON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce/clc.rs b/src/fce/clc.rs index 16516b3e..de254070 100644 --- a/src/fce/clc.rs +++ b/src/fce/clc.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for CLC_SPEC { impl crate::Readable for CLC_SPEC {} #[doc = "`write(|w| ..)` method takes [`clc::W`](W) writer structure"] impl crate::Writable for CLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLC to value 0x03"] impl crate::Resettable for CLC_SPEC { - const RESET_VALUE: Self::Ux = 0x03; + const RESET_VALUE: u32 = 0x03; } diff --git a/src/fce/id.rs b/src/fce/id.rs index 701794d7..f575170f 100644 --- a/src/fce/id.rs +++ b/src/fce/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00ca_c001"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00ca_c001; + const RESET_VALUE: u32 = 0x00ca_c001; } diff --git a/src/fce_ke0/cfg.rs b/src/fce_ke0/cfg.rs index 23c46fd7..d47d6d7d 100644 --- a/src/fce_ke0/cfg.rs +++ b/src/fce_ke0/cfg.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for CFG_SPEC { impl crate::Readable for CFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfg::W`](W) writer structure"] impl crate::Writable for CFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFG to value 0x0700"] impl crate::Resettable for CFG_SPEC { - const RESET_VALUE: Self::Ux = 0x0700; + const RESET_VALUE: u32 = 0x0700; } diff --git a/src/fce_ke0/check.rs b/src/fce_ke0/check.rs index 79fa2c84..05f78800 100644 --- a/src/fce_ke0/check.rs +++ b/src/fce_ke0/check.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CHECK_SPEC { impl crate::Readable for CHECK_SPEC {} #[doc = "`write(|w| ..)` method takes [`check::W`](W) writer structure"] impl crate::Writable for CHECK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHECK to value 0"] impl crate::Resettable for CHECK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce_ke0/crc.rs b/src/fce_ke0/crc.rs index 45253c01..b4f2e53e 100644 --- a/src/fce_ke0/crc.rs +++ b/src/fce_ke0/crc.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CRC_SPEC { impl crate::Readable for CRC_SPEC {} #[doc = "`write(|w| ..)` method takes [`crc::W`](W) writer structure"] impl crate::Writable for CRC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CRC to value 0"] impl crate::Resettable for CRC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce_ke0/ctr.rs b/src/fce_ke0/ctr.rs index 0c4536ee..179d1ac3 100644 --- a/src/fce_ke0/ctr.rs +++ b/src/fce_ke0/ctr.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for CTR_SPEC { impl crate::Readable for CTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctr::W`](W) writer structure"] impl crate::Writable for CTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTR to value 0"] impl crate::Resettable for CTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce_ke0/ir.rs b/src/fce_ke0/ir.rs index dd0e0ad3..091015fa 100644 --- a/src/fce_ke0/ir.rs +++ b/src/fce_ke0/ir.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for IR_SPEC { impl crate::Readable for IR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ir::W`](W) writer structure"] impl crate::Writable for IR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IR to value 0"] impl crate::Resettable for IR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce_ke0/length.rs b/src/fce_ke0/length.rs index b960dc79..45bdc976 100644 --- a/src/fce_ke0/length.rs +++ b/src/fce_ke0/length.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for LENGTH_SPEC { impl crate::Readable for LENGTH_SPEC {} #[doc = "`write(|w| ..)` method takes [`length::W`](W) writer structure"] impl crate::Writable for LENGTH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LENGTH to value 0"] impl crate::Resettable for LENGTH_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/fce_ke0/res.rs b/src/fce_ke0/res.rs index f0138817..f673a85c 100644 --- a/src/fce_ke0/res.rs +++ b/src/fce_ke0/res.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RES_SPEC { impl crate::Readable for RES_SPEC {} #[doc = "`reset()` method sets RES to value 0xffff_ffff"] impl crate::Resettable for RES_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; } diff --git a/src/fce_ke0/sts.rs b/src/fce_ke0/sts.rs index ea2fd671..4c9c79f7 100644 --- a/src/fce_ke0/sts.rs +++ b/src/fce_ke0/sts.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for STS_SPEC { impl crate::Readable for STS_SPEC {} #[doc = "`write(|w| ..)` method takes [`sts::W`](W) writer structure"] impl crate::Writable for STS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets STS to value 0"] impl crate::Resettable for STS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/flash0/fcon.rs b/src/flash0/fcon.rs index 337174c1..2ec1dd3e 100644 --- a/src/flash0/fcon.rs +++ b/src/flash0/fcon.rs @@ -943,10 +943,10 @@ impl crate::RegisterSpec for FCON_SPEC { impl crate::Readable for FCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`fcon::W`](W) writer structure"] impl crate::Writable for FCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FCON to value 0x06"] impl crate::Resettable for FCON_SPEC { - const RESET_VALUE: Self::Ux = 0x06; + const RESET_VALUE: u32 = 0x06; } diff --git a/src/flash0/fsr.rs b/src/flash0/fsr.rs index 86364508..10ec6822 100644 --- a/src/flash0/fsr.rs +++ b/src/flash0/fsr.rs @@ -797,5 +797,5 @@ impl crate::RegisterSpec for FSR_SPEC { impl crate::Readable for FSR_SPEC {} #[doc = "`reset()` method sets FSR to value 0"] impl crate::Resettable for FSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/flash0/id.rs b/src/flash0/id.rs index df3a1efb..5e57f2cf 100644 --- a/src/flash0/id.rs +++ b/src/flash0/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a2_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a2_c000; + const RESET_VALUE: u32 = 0x00a2_c000; } diff --git a/src/flash0/marp.rs b/src/flash0/marp.rs index d9496932..05f37925 100644 --- a/src/flash0/marp.rs +++ b/src/flash0/marp.rs @@ -172,10 +172,10 @@ impl crate::RegisterSpec for MARP_SPEC { impl crate::Readable for MARP_SPEC {} #[doc = "`write(|w| ..)` method takes [`marp::W`](W) writer structure"] impl crate::Writable for MARP_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MARP to value 0"] impl crate::Resettable for MARP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/flash0/procon0.rs b/src/flash0/procon0.rs index 5535d5d1..c94b7de3 100644 --- a/src/flash0/procon0.rs +++ b/src/flash0/procon0.rs @@ -503,5 +503,5 @@ impl crate::RegisterSpec for PROCON0_SPEC { impl crate::Readable for PROCON0_SPEC {} #[doc = "`reset()` method sets PROCON0 to value 0"] impl crate::Resettable for PROCON0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/flash0/procon1.rs b/src/flash0/procon1.rs index 8c57689b..d9b26085 100644 --- a/src/flash0/procon1.rs +++ b/src/flash0/procon1.rs @@ -462,5 +462,5 @@ impl crate::RegisterSpec for PROCON1_SPEC { impl crate::Readable for PROCON1_SPEC {} #[doc = "`reset()` method sets PROCON1 to value 0"] impl crate::Resettable for PROCON1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/flash0/procon2.rs b/src/flash0/procon2.rs index 0fffd54b..7ef811ca 100644 --- a/src/flash0/procon2.rs +++ b/src/flash0/procon2.rs @@ -462,5 +462,5 @@ impl crate::RegisterSpec for PROCON2_SPEC { impl crate::Readable for PROCON2_SPEC {} #[doc = "`reset()` method sets PROCON2 to value 0"] impl crate::Resettable for PROCON2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/chenreg.rs b/src/gpdma0/chenreg.rs index 20a5267a..3edc6fe9 100644 --- a/src/gpdma0/chenreg.rs +++ b/src/gpdma0/chenreg.rs @@ -103,10 +103,10 @@ impl crate::RegisterSpec for CHENREG_SPEC { impl crate::Readable for CHENREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`chenreg::W`](W) writer structure"] impl crate::Writable for CHENREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHENREG to value 0"] impl crate::Resettable for CHENREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/clearblock.rs b/src/gpdma0/clearblock.rs index 248e4174..4f84d4ca 100644 --- a/src/gpdma0/clearblock.rs +++ b/src/gpdma0/clearblock.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CLEARBLOCK_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearblock::W`](W) writer structure"] impl crate::Writable for CLEARBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARBLOCK to value 0"] impl crate::Resettable for CLEARBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/cleardsttran.rs b/src/gpdma0/cleardsttran.rs index 088b4c72..21b1b48e 100644 --- a/src/gpdma0/cleardsttran.rs +++ b/src/gpdma0/cleardsttran.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CLEARDSTTRAN_SPEC { } #[doc = "`write(|w| ..)` method takes [`cleardsttran::W`](W) writer structure"] impl crate::Writable for CLEARDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARDSTTRAN to value 0"] impl crate::Resettable for CLEARDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/clearerr.rs b/src/gpdma0/clearerr.rs index b673d851..a1786c79 100644 --- a/src/gpdma0/clearerr.rs +++ b/src/gpdma0/clearerr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CLEARERR_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearerr::W`](W) writer structure"] impl crate::Writable for CLEARERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARERR to value 0"] impl crate::Resettable for CLEARERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/clearsrctran.rs b/src/gpdma0/clearsrctran.rs index 7e09ab48..119b94d2 100644 --- a/src/gpdma0/clearsrctran.rs +++ b/src/gpdma0/clearsrctran.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CLEARSRCTRAN_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearsrctran::W`](W) writer structure"] impl crate::Writable for CLEARSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARSRCTRAN to value 0"] impl crate::Resettable for CLEARSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/cleartfr.rs b/src/gpdma0/cleartfr.rs index 5cd8bfbb..bd130e08 100644 --- a/src/gpdma0/cleartfr.rs +++ b/src/gpdma0/cleartfr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CLEARTFR_SPEC { } #[doc = "`write(|w| ..)` method takes [`cleartfr::W`](W) writer structure"] impl crate::Writable for CLEARTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARTFR to value 0"] impl crate::Resettable for CLEARTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/dmacfgreg.rs b/src/gpdma0/dmacfgreg.rs index 7db2af01..0defde59 100644 --- a/src/gpdma0/dmacfgreg.rs +++ b/src/gpdma0/dmacfgreg.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for DMACFGREG_SPEC { impl crate::Readable for DMACFGREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`dmacfgreg::W`](W) writer structure"] impl crate::Writable for DMACFGREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DMACFGREG to value 0"] impl crate::Resettable for DMACFGREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/id.rs b/src/gpdma0/id.rs index f901eebb..489c2fcb 100644 --- a/src/gpdma0/id.rs +++ b/src/gpdma0/id.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00af_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00af_c000; + const RESET_VALUE: u32 = 0x00af_c000; } diff --git a/src/gpdma0/lstdstreg.rs b/src/gpdma0/lstdstreg.rs index dc9350af..4115d9d0 100644 --- a/src/gpdma0/lstdstreg.rs +++ b/src/gpdma0/lstdstreg.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for LSTDSTREG_SPEC { impl crate::Readable for LSTDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`lstdstreg::W`](W) writer structure"] impl crate::Writable for LSTDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LSTDSTREG to value 0"] impl crate::Resettable for LSTDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/lstsrcreg.rs b/src/gpdma0/lstsrcreg.rs index 7803a63e..a4327078 100644 --- a/src/gpdma0/lstsrcreg.rs +++ b/src/gpdma0/lstsrcreg.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for LSTSRCREG_SPEC { impl crate::Readable for LSTSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`lstsrcreg::W`](W) writer structure"] impl crate::Writable for LSTSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LSTSRCREG to value 0"] impl crate::Resettable for LSTSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/maskblock.rs b/src/gpdma0/maskblock.rs index 4761e02e..baeb3489 100644 --- a/src/gpdma0/maskblock.rs +++ b/src/gpdma0/maskblock.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for MASKBLOCK_SPEC { impl crate::Readable for MASKBLOCK_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskblock::W`](W) writer structure"] impl crate::Writable for MASKBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKBLOCK to value 0"] impl crate::Resettable for MASKBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/maskdsttran.rs b/src/gpdma0/maskdsttran.rs index dea58b05..60390095 100644 --- a/src/gpdma0/maskdsttran.rs +++ b/src/gpdma0/maskdsttran.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for MASKDSTTRAN_SPEC { impl crate::Readable for MASKDSTTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskdsttran::W`](W) writer structure"] impl crate::Writable for MASKDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKDSTTRAN to value 0"] impl crate::Resettable for MASKDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/maskerr.rs b/src/gpdma0/maskerr.rs index 5282bfe0..76db4b52 100644 --- a/src/gpdma0/maskerr.rs +++ b/src/gpdma0/maskerr.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for MASKERR_SPEC { impl crate::Readable for MASKERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskerr::W`](W) writer structure"] impl crate::Writable for MASKERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKERR to value 0"] impl crate::Resettable for MASKERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/masksrctran.rs b/src/gpdma0/masksrctran.rs index d9984b6b..ce1fd964 100644 --- a/src/gpdma0/masksrctran.rs +++ b/src/gpdma0/masksrctran.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for MASKSRCTRAN_SPEC { impl crate::Readable for MASKSRCTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`masksrctran::W`](W) writer structure"] impl crate::Writable for MASKSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKSRCTRAN to value 0"] impl crate::Resettable for MASKSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/masktfr.rs b/src/gpdma0/masktfr.rs index 4109e4e4..ef931a68 100644 --- a/src/gpdma0/masktfr.rs +++ b/src/gpdma0/masktfr.rs @@ -833,10 +833,10 @@ impl crate::RegisterSpec for MASKTFR_SPEC { impl crate::Readable for MASKTFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`masktfr::W`](W) writer structure"] impl crate::Writable for MASKTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKTFR to value 0"] impl crate::Resettable for MASKTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/rawblock.rs b/src/gpdma0/rawblock.rs index 12bbfa6a..62aba1ec 100644 --- a/src/gpdma0/rawblock.rs +++ b/src/gpdma0/rawblock.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for RAWBLOCK_SPEC { impl crate::Readable for RAWBLOCK_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawblock::W`](W) writer structure"] impl crate::Writable for RAWBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWBLOCK to value 0"] impl crate::Resettable for RAWBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/rawdsttran.rs b/src/gpdma0/rawdsttran.rs index 29067731..1109167a 100644 --- a/src/gpdma0/rawdsttran.rs +++ b/src/gpdma0/rawdsttran.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for RAWDSTTRAN_SPEC { impl crate::Readable for RAWDSTTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawdsttran::W`](W) writer structure"] impl crate::Writable for RAWDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWDSTTRAN to value 0"] impl crate::Resettable for RAWDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/rawerr.rs b/src/gpdma0/rawerr.rs index 70cb8542..8cdf0c38 100644 --- a/src/gpdma0/rawerr.rs +++ b/src/gpdma0/rawerr.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for RAWERR_SPEC { impl crate::Readable for RAWERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawerr::W`](W) writer structure"] impl crate::Writable for RAWERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWERR to value 0"] impl crate::Resettable for RAWERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/rawsrctran.rs b/src/gpdma0/rawsrctran.rs index b8337548..0c410030 100644 --- a/src/gpdma0/rawsrctran.rs +++ b/src/gpdma0/rawsrctran.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for RAWSRCTRAN_SPEC { impl crate::Readable for RAWSRCTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawsrctran::W`](W) writer structure"] impl crate::Writable for RAWSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWSRCTRAN to value 0"] impl crate::Resettable for RAWSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/rawtfr.rs b/src/gpdma0/rawtfr.rs index ddc68491..f658b3a1 100644 --- a/src/gpdma0/rawtfr.rs +++ b/src/gpdma0/rawtfr.rs @@ -145,10 +145,10 @@ impl crate::RegisterSpec for RAWTFR_SPEC { impl crate::Readable for RAWTFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawtfr::W`](W) writer structure"] impl crate::Writable for RAWTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWTFR to value 0"] impl crate::Resettable for RAWTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/reqdstreg.rs b/src/gpdma0/reqdstreg.rs index e7a78440..a78cd507 100644 --- a/src/gpdma0/reqdstreg.rs +++ b/src/gpdma0/reqdstreg.rs @@ -441,10 +441,10 @@ impl crate::RegisterSpec for REQDSTREG_SPEC { impl crate::Readable for REQDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`reqdstreg::W`](W) writer structure"] impl crate::Writable for REQDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REQDSTREG to value 0"] impl crate::Resettable for REQDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/reqsrcreg.rs b/src/gpdma0/reqsrcreg.rs index cc489a1c..d89ae52b 100644 --- a/src/gpdma0/reqsrcreg.rs +++ b/src/gpdma0/reqsrcreg.rs @@ -441,10 +441,10 @@ impl crate::RegisterSpec for REQSRCREG_SPEC { impl crate::Readable for REQSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`reqsrcreg::W`](W) writer structure"] impl crate::Writable for REQSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REQSRCREG to value 0"] impl crate::Resettable for REQSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/sglreqdstreg.rs b/src/gpdma0/sglreqdstreg.rs index 1c812f37..fabf5523 100644 --- a/src/gpdma0/sglreqdstreg.rs +++ b/src/gpdma0/sglreqdstreg.rs @@ -441,10 +441,10 @@ impl crate::RegisterSpec for SGLREQDSTREG_SPEC { impl crate::Readable for SGLREQDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`sglreqdstreg::W`](W) writer structure"] impl crate::Writable for SGLREQDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SGLREQDSTREG to value 0"] impl crate::Resettable for SGLREQDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/sglreqsrcreg.rs b/src/gpdma0/sglreqsrcreg.rs index 614908aa..af4f7f2f 100644 --- a/src/gpdma0/sglreqsrcreg.rs +++ b/src/gpdma0/sglreqsrcreg.rs @@ -441,10 +441,10 @@ impl crate::RegisterSpec for SGLREQSRCREG_SPEC { impl crate::Readable for SGLREQSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`sglreqsrcreg::W`](W) writer structure"] impl crate::Writable for SGLREQSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SGLREQSRCREG to value 0"] impl crate::Resettable for SGLREQSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statusblock.rs b/src/gpdma0/statusblock.rs index 52e1e422..6ee6c7ea 100644 --- a/src/gpdma0/statusblock.rs +++ b/src/gpdma0/statusblock.rs @@ -67,5 +67,5 @@ impl crate::RegisterSpec for STATUSBLOCK_SPEC { impl crate::Readable for STATUSBLOCK_SPEC {} #[doc = "`reset()` method sets STATUSBLOCK to value 0"] impl crate::Resettable for STATUSBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statusdsttran.rs b/src/gpdma0/statusdsttran.rs index f091066e..bb986da7 100644 --- a/src/gpdma0/statusdsttran.rs +++ b/src/gpdma0/statusdsttran.rs @@ -67,5 +67,5 @@ impl crate::RegisterSpec for STATUSDSTTRAN_SPEC { impl crate::Readable for STATUSDSTTRAN_SPEC {} #[doc = "`reset()` method sets STATUSDSTTRAN to value 0"] impl crate::Resettable for STATUSDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statuserr.rs b/src/gpdma0/statuserr.rs index 81ab4fd6..b6b41015 100644 --- a/src/gpdma0/statuserr.rs +++ b/src/gpdma0/statuserr.rs @@ -67,5 +67,5 @@ impl crate::RegisterSpec for STATUSERR_SPEC { impl crate::Readable for STATUSERR_SPEC {} #[doc = "`reset()` method sets STATUSERR to value 0"] impl crate::Resettable for STATUSERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statusint.rs b/src/gpdma0/statusint.rs index 5b3a7ca3..e8fd9f1e 100644 --- a/src/gpdma0/statusint.rs +++ b/src/gpdma0/statusint.rs @@ -46,5 +46,5 @@ impl crate::RegisterSpec for STATUSINT_SPEC { impl crate::Readable for STATUSINT_SPEC {} #[doc = "`reset()` method sets STATUSINT to value 0"] impl crate::Resettable for STATUSINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statussrctran.rs b/src/gpdma0/statussrctran.rs index d099b7d1..69659f32 100644 --- a/src/gpdma0/statussrctran.rs +++ b/src/gpdma0/statussrctran.rs @@ -67,5 +67,5 @@ impl crate::RegisterSpec for STATUSSRCTRAN_SPEC { impl crate::Readable for STATUSSRCTRAN_SPEC {} #[doc = "`reset()` method sets STATUSSRCTRAN to value 0"] impl crate::Resettable for STATUSSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/statustfr.rs b/src/gpdma0/statustfr.rs index 70a4a94f..cb402cb0 100644 --- a/src/gpdma0/statustfr.rs +++ b/src/gpdma0/statustfr.rs @@ -67,5 +67,5 @@ impl crate::RegisterSpec for STATUSTFR_SPEC { impl crate::Readable for STATUSTFR_SPEC {} #[doc = "`reset()` method sets STATUSTFR to value 0"] impl crate::Resettable for STATUSTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0/type_.rs b/src/gpdma0/type_.rs index 16eb364f..cf672516 100644 --- a/src/gpdma0/type_.rs +++ b/src/gpdma0/type_.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TYPE_SPEC { impl crate::Readable for TYPE_SPEC {} #[doc = "`reset()` method sets TYPE to value 0x4457_1110"] impl crate::Resettable for TYPE_SPEC { - const RESET_VALUE: Self::Ux = 0x4457_1110; + const RESET_VALUE: u32 = 0x4457_1110; } diff --git a/src/gpdma0/version.rs b/src/gpdma0/version.rs index f8b9bb86..1b3d1f83 100644 --- a/src/gpdma0/version.rs +++ b/src/gpdma0/version.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for VERSION_SPEC { impl crate::Readable for VERSION_SPEC {} #[doc = "`reset()` method sets VERSION to value 0x3231_342a"] impl crate::Resettable for VERSION_SPEC { - const RESET_VALUE: Self::Ux = 0x3231_342a; + const RESET_VALUE: u32 = 0x3231_342a; } diff --git a/src/gpdma0_ch0/cfgh.rs b/src/gpdma0_ch0/cfgh.rs index 5415fbc6..1e3ff173 100644 --- a/src/gpdma0_ch0/cfgh.rs +++ b/src/gpdma0_ch0/cfgh.rs @@ -228,10 +228,10 @@ impl crate::RegisterSpec for CFGH_SPEC { impl crate::Readable for CFGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgh::W`](W) writer structure"] impl crate::Writable for CFGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGH to value 0x04"] impl crate::Resettable for CFGH_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/gpdma0_ch0/cfgl.rs b/src/gpdma0_ch0/cfgl.rs index f956e1a8..30148e4a 100644 --- a/src/gpdma0_ch0/cfgl.rs +++ b/src/gpdma0_ch0/cfgl.rs @@ -642,10 +642,10 @@ impl crate::RegisterSpec for CFGL_SPEC { impl crate::Readable for CFGL_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgl::W`](W) writer structure"] impl crate::Writable for CFGL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGL to value 0x0e00"] impl crate::Resettable for CFGL_SPEC { - const RESET_VALUE: Self::Ux = 0x0e00; + const RESET_VALUE: u32 = 0x0e00; } diff --git a/src/gpdma0_ch0/ctlh.rs b/src/gpdma0_ch0/ctlh.rs index d6c59051..b193f905 100644 --- a/src/gpdma0_ch0/ctlh.rs +++ b/src/gpdma0_ch0/ctlh.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for CTLH_SPEC { impl crate::Readable for CTLH_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctlh::W`](W) writer structure"] impl crate::Writable for CTLH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLH to value 0x02"] impl crate::Resettable for CTLH_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/gpdma0_ch0/ctll.rs b/src/gpdma0_ch0/ctll.rs index 275cb096..cedf80d1 100644 --- a/src/gpdma0_ch0/ctll.rs +++ b/src/gpdma0_ch0/ctll.rs @@ -439,10 +439,10 @@ impl crate::RegisterSpec for CTLL_SPEC { impl crate::Readable for CTLL_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctll::W`](W) writer structure"] impl crate::Writable for CTLL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLL to value 0x0030_4801"] impl crate::Resettable for CTLL_SPEC { - const RESET_VALUE: Self::Ux = 0x0030_4801; + const RESET_VALUE: u32 = 0x0030_4801; } diff --git a/src/gpdma0_ch0/dar.rs b/src/gpdma0_ch0/dar.rs index ce3f2d68..e65cf651 100644 --- a/src/gpdma0_ch0/dar.rs +++ b/src/gpdma0_ch0/dar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DAR_SPEC { impl crate::Readable for DAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dar::W`](W) writer structure"] impl crate::Writable for DAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAR to value 0"] impl crate::Resettable for DAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/dsr.rs b/src/gpdma0_ch0/dsr.rs index 97361f0e..04ca94a8 100644 --- a/src/gpdma0_ch0/dsr.rs +++ b/src/gpdma0_ch0/dsr.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DSR_SPEC { impl crate::Readable for DSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dsr::W`](W) writer structure"] impl crate::Writable for DSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DSR to value 0"] impl crate::Resettable for DSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/dstat.rs b/src/gpdma0_ch0/dstat.rs index 28d2e69c..8e7d00ed 100644 --- a/src/gpdma0_ch0/dstat.rs +++ b/src/gpdma0_ch0/dstat.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DSTAT_SPEC { impl crate::Readable for DSTAT_SPEC {} #[doc = "`write(|w| ..)` method takes [`dstat::W`](W) writer structure"] impl crate::Writable for DSTAT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DSTAT to value 0"] impl crate::Resettable for DSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/dstatar.rs b/src/gpdma0_ch0/dstatar.rs index b18ee391..e84b0d07 100644 --- a/src/gpdma0_ch0/dstatar.rs +++ b/src/gpdma0_ch0/dstatar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DSTATAR_SPEC { impl crate::Readable for DSTATAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dstatar::W`](W) writer structure"] impl crate::Writable for DSTATAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DSTATAR to value 0"] impl crate::Resettable for DSTATAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/llp.rs b/src/gpdma0_ch0/llp.rs index 325eafc5..533fab0a 100644 --- a/src/gpdma0_ch0/llp.rs +++ b/src/gpdma0_ch0/llp.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for LLP_SPEC { impl crate::Readable for LLP_SPEC {} #[doc = "`write(|w| ..)` method takes [`llp::W`](W) writer structure"] impl crate::Writable for LLP_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LLP to value 0"] impl crate::Resettable for LLP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/sar.rs b/src/gpdma0_ch0/sar.rs index 23de4dd2..156571e6 100644 --- a/src/gpdma0_ch0/sar.rs +++ b/src/gpdma0_ch0/sar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SAR_SPEC { impl crate::Readable for SAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sar::W`](W) writer structure"] impl crate::Writable for SAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SAR to value 0"] impl crate::Resettable for SAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/sgr.rs b/src/gpdma0_ch0/sgr.rs index 74e81c95..d313a0a6 100644 --- a/src/gpdma0_ch0/sgr.rs +++ b/src/gpdma0_ch0/sgr.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for SGR_SPEC { impl crate::Readable for SGR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sgr::W`](W) writer structure"] impl crate::Writable for SGR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SGR to value 0"] impl crate::Resettable for SGR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/sstat.rs b/src/gpdma0_ch0/sstat.rs index 94ed1a7a..2c569649 100644 --- a/src/gpdma0_ch0/sstat.rs +++ b/src/gpdma0_ch0/sstat.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SSTAT_SPEC { impl crate::Readable for SSTAT_SPEC {} #[doc = "`write(|w| ..)` method takes [`sstat::W`](W) writer structure"] impl crate::Writable for SSTAT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SSTAT to value 0"] impl crate::Resettable for SSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch0/sstatar.rs b/src/gpdma0_ch0/sstatar.rs index 859b8672..e6063a53 100644 --- a/src/gpdma0_ch0/sstatar.rs +++ b/src/gpdma0_ch0/sstatar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SSTATAR_SPEC { impl crate::Readable for SSTATAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sstatar::W`](W) writer structure"] impl crate::Writable for SSTATAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SSTATAR to value 0"] impl crate::Resettable for SSTATAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch2/cfgh.rs b/src/gpdma0_ch2/cfgh.rs index ebc36121..8f1fc507 100644 --- a/src/gpdma0_ch2/cfgh.rs +++ b/src/gpdma0_ch2/cfgh.rs @@ -198,10 +198,10 @@ impl crate::RegisterSpec for CFGH_SPEC { impl crate::Readable for CFGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgh::W`](W) writer structure"] impl crate::Writable for CFGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGH to value 0x04"] impl crate::Resettable for CFGH_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/gpdma0_ch2/cfgl.rs b/src/gpdma0_ch2/cfgl.rs index 69a56bba..82587518 100644 --- a/src/gpdma0_ch2/cfgl.rs +++ b/src/gpdma0_ch2/cfgl.rs @@ -612,10 +612,10 @@ impl crate::RegisterSpec for CFGL_SPEC { impl crate::Readable for CFGL_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgl::W`](W) writer structure"] impl crate::Writable for CFGL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGL to value 0x0e00"] impl crate::Resettable for CFGL_SPEC { - const RESET_VALUE: Self::Ux = 0x0e00; + const RESET_VALUE: u32 = 0x0e00; } diff --git a/src/gpdma0_ch2/ctlh.rs b/src/gpdma0_ch2/ctlh.rs index d6c59051..b193f905 100644 --- a/src/gpdma0_ch2/ctlh.rs +++ b/src/gpdma0_ch2/ctlh.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for CTLH_SPEC { impl crate::Readable for CTLH_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctlh::W`](W) writer structure"] impl crate::Writable for CTLH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLH to value 0x02"] impl crate::Resettable for CTLH_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/gpdma0_ch2/ctll.rs b/src/gpdma0_ch2/ctll.rs index 29af3789..11e6834f 100644 --- a/src/gpdma0_ch2/ctll.rs +++ b/src/gpdma0_ch2/ctll.rs @@ -281,10 +281,10 @@ impl crate::RegisterSpec for CTLL_SPEC { impl crate::Readable for CTLL_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctll::W`](W) writer structure"] impl crate::Writable for CTLL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLL to value 0x0030_4801"] impl crate::Resettable for CTLL_SPEC { - const RESET_VALUE: Self::Ux = 0x0030_4801; + const RESET_VALUE: u32 = 0x0030_4801; } diff --git a/src/gpdma0_ch2/dar.rs b/src/gpdma0_ch2/dar.rs index ce3f2d68..e65cf651 100644 --- a/src/gpdma0_ch2/dar.rs +++ b/src/gpdma0_ch2/dar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DAR_SPEC { impl crate::Readable for DAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dar::W`](W) writer structure"] impl crate::Writable for DAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAR to value 0"] impl crate::Resettable for DAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma0_ch2/sar.rs b/src/gpdma0_ch2/sar.rs index 23de4dd2..156571e6 100644 --- a/src/gpdma0_ch2/sar.rs +++ b/src/gpdma0_ch2/sar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SAR_SPEC { impl crate::Readable for SAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sar::W`](W) writer structure"] impl crate::Writable for SAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SAR to value 0"] impl crate::Resettable for SAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/chenreg.rs b/src/gpdma1/chenreg.rs index 26e1d6fa..c8cecacd 100644 --- a/src/gpdma1/chenreg.rs +++ b/src/gpdma1/chenreg.rs @@ -103,10 +103,10 @@ impl crate::RegisterSpec for CHENREG_SPEC { impl crate::Readable for CHENREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`chenreg::W`](W) writer structure"] impl crate::Writable for CHENREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHENREG to value 0"] impl crate::Resettable for CHENREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/clearblock.rs b/src/gpdma1/clearblock.rs index ef99785b..92b7851b 100644 --- a/src/gpdma1/clearblock.rs +++ b/src/gpdma1/clearblock.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for CLEARBLOCK_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearblock::W`](W) writer structure"] impl crate::Writable for CLEARBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARBLOCK to value 0"] impl crate::Resettable for CLEARBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/cleardsttran.rs b/src/gpdma1/cleardsttran.rs index eba0fb41..4844c3ba 100644 --- a/src/gpdma1/cleardsttran.rs +++ b/src/gpdma1/cleardsttran.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for CLEARDSTTRAN_SPEC { } #[doc = "`write(|w| ..)` method takes [`cleardsttran::W`](W) writer structure"] impl crate::Writable for CLEARDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARDSTTRAN to value 0"] impl crate::Resettable for CLEARDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/clearerr.rs b/src/gpdma1/clearerr.rs index 6c3c1860..0ba14d88 100644 --- a/src/gpdma1/clearerr.rs +++ b/src/gpdma1/clearerr.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for CLEARERR_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearerr::W`](W) writer structure"] impl crate::Writable for CLEARERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARERR to value 0"] impl crate::Resettable for CLEARERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/clearsrctran.rs b/src/gpdma1/clearsrctran.rs index 9f8752b3..6aeff8a7 100644 --- a/src/gpdma1/clearsrctran.rs +++ b/src/gpdma1/clearsrctran.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for CLEARSRCTRAN_SPEC { } #[doc = "`write(|w| ..)` method takes [`clearsrctran::W`](W) writer structure"] impl crate::Writable for CLEARSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARSRCTRAN to value 0"] impl crate::Resettable for CLEARSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/cleartfr.rs b/src/gpdma1/cleartfr.rs index 342df6fd..07b45de1 100644 --- a/src/gpdma1/cleartfr.rs +++ b/src/gpdma1/cleartfr.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for CLEARTFR_SPEC { } #[doc = "`write(|w| ..)` method takes [`cleartfr::W`](W) writer structure"] impl crate::Writable for CLEARTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLEARTFR to value 0"] impl crate::Resettable for CLEARTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/dmacfgreg.rs b/src/gpdma1/dmacfgreg.rs index 7db2af01..0defde59 100644 --- a/src/gpdma1/dmacfgreg.rs +++ b/src/gpdma1/dmacfgreg.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for DMACFGREG_SPEC { impl crate::Readable for DMACFGREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`dmacfgreg::W`](W) writer structure"] impl crate::Writable for DMACFGREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DMACFGREG to value 0"] impl crate::Resettable for DMACFGREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/id.rs b/src/gpdma1/id.rs index ab4bb42d..3ec26a76 100644 --- a/src/gpdma1/id.rs +++ b/src/gpdma1/id.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00b0_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00b0_c000; + const RESET_VALUE: u32 = 0x00b0_c000; } diff --git a/src/gpdma1/lstdstreg.rs b/src/gpdma1/lstdstreg.rs index 6021b579..9871b854 100644 --- a/src/gpdma1/lstdstreg.rs +++ b/src/gpdma1/lstdstreg.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for LSTDSTREG_SPEC { impl crate::Readable for LSTDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`lstdstreg::W`](W) writer structure"] impl crate::Writable for LSTDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LSTDSTREG to value 0"] impl crate::Resettable for LSTDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/lstsrcreg.rs b/src/gpdma1/lstsrcreg.rs index 5969476a..6be38ebd 100644 --- a/src/gpdma1/lstsrcreg.rs +++ b/src/gpdma1/lstsrcreg.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for LSTSRCREG_SPEC { impl crate::Readable for LSTSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`lstsrcreg::W`](W) writer structure"] impl crate::Writable for LSTSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LSTSRCREG to value 0"] impl crate::Resettable for LSTSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/maskblock.rs b/src/gpdma1/maskblock.rs index 23be0ad2..5a506598 100644 --- a/src/gpdma1/maskblock.rs +++ b/src/gpdma1/maskblock.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for MASKBLOCK_SPEC { impl crate::Readable for MASKBLOCK_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskblock::W`](W) writer structure"] impl crate::Writable for MASKBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKBLOCK to value 0"] impl crate::Resettable for MASKBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/maskdsttran.rs b/src/gpdma1/maskdsttran.rs index 6b204899..39d032f7 100644 --- a/src/gpdma1/maskdsttran.rs +++ b/src/gpdma1/maskdsttran.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for MASKDSTTRAN_SPEC { impl crate::Readable for MASKDSTTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskdsttran::W`](W) writer structure"] impl crate::Writable for MASKDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKDSTTRAN to value 0"] impl crate::Resettable for MASKDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/maskerr.rs b/src/gpdma1/maskerr.rs index 6a10b0d5..503c4e9b 100644 --- a/src/gpdma1/maskerr.rs +++ b/src/gpdma1/maskerr.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for MASKERR_SPEC { impl crate::Readable for MASKERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`maskerr::W`](W) writer structure"] impl crate::Writable for MASKERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKERR to value 0"] impl crate::Resettable for MASKERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/masksrctran.rs b/src/gpdma1/masksrctran.rs index be1b8ff7..8abfc7d7 100644 --- a/src/gpdma1/masksrctran.rs +++ b/src/gpdma1/masksrctran.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for MASKSRCTRAN_SPEC { impl crate::Readable for MASKSRCTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`masksrctran::W`](W) writer structure"] impl crate::Writable for MASKSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKSRCTRAN to value 0"] impl crate::Resettable for MASKSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/masktfr.rs b/src/gpdma1/masktfr.rs index 228e98f6..e1b3aa7f 100644 --- a/src/gpdma1/masktfr.rs +++ b/src/gpdma1/masktfr.rs @@ -429,10 +429,10 @@ impl crate::RegisterSpec for MASKTFR_SPEC { impl crate::Readable for MASKTFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`masktfr::W`](W) writer structure"] impl crate::Writable for MASKTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MASKTFR to value 0"] impl crate::Resettable for MASKTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/rawblock.rs b/src/gpdma1/rawblock.rs index 65db8eae..5a8667ff 100644 --- a/src/gpdma1/rawblock.rs +++ b/src/gpdma1/rawblock.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for RAWBLOCK_SPEC { impl crate::Readable for RAWBLOCK_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawblock::W`](W) writer structure"] impl crate::Writable for RAWBLOCK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWBLOCK to value 0"] impl crate::Resettable for RAWBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/rawdsttran.rs b/src/gpdma1/rawdsttran.rs index 0cf596a8..2e771115 100644 --- a/src/gpdma1/rawdsttran.rs +++ b/src/gpdma1/rawdsttran.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for RAWDSTTRAN_SPEC { impl crate::Readable for RAWDSTTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawdsttran::W`](W) writer structure"] impl crate::Writable for RAWDSTTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWDSTTRAN to value 0"] impl crate::Resettable for RAWDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/rawerr.rs b/src/gpdma1/rawerr.rs index b0783758..8bb1c2d1 100644 --- a/src/gpdma1/rawerr.rs +++ b/src/gpdma1/rawerr.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for RAWERR_SPEC { impl crate::Readable for RAWERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawerr::W`](W) writer structure"] impl crate::Writable for RAWERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWERR to value 0"] impl crate::Resettable for RAWERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/rawsrctran.rs b/src/gpdma1/rawsrctran.rs index 39f5f142..f1d63279 100644 --- a/src/gpdma1/rawsrctran.rs +++ b/src/gpdma1/rawsrctran.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for RAWSRCTRAN_SPEC { impl crate::Readable for RAWSRCTRAN_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawsrctran::W`](W) writer structure"] impl crate::Writable for RAWSRCTRAN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWSRCTRAN to value 0"] impl crate::Resettable for RAWSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/rawtfr.rs b/src/gpdma1/rawtfr.rs index f0471419..27990b80 100644 --- a/src/gpdma1/rawtfr.rs +++ b/src/gpdma1/rawtfr.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for RAWTFR_SPEC { impl crate::Readable for RAWTFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rawtfr::W`](W) writer structure"] impl crate::Writable for RAWTFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RAWTFR to value 0"] impl crate::Resettable for RAWTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/reqdstreg.rs b/src/gpdma1/reqdstreg.rs index 7e4e395c..d68f1228 100644 --- a/src/gpdma1/reqdstreg.rs +++ b/src/gpdma1/reqdstreg.rs @@ -233,10 +233,10 @@ impl crate::RegisterSpec for REQDSTREG_SPEC { impl crate::Readable for REQDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`reqdstreg::W`](W) writer structure"] impl crate::Writable for REQDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REQDSTREG to value 0"] impl crate::Resettable for REQDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/reqsrcreg.rs b/src/gpdma1/reqsrcreg.rs index baa0b6d3..31c52f85 100644 --- a/src/gpdma1/reqsrcreg.rs +++ b/src/gpdma1/reqsrcreg.rs @@ -233,10 +233,10 @@ impl crate::RegisterSpec for REQSRCREG_SPEC { impl crate::Readable for REQSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`reqsrcreg::W`](W) writer structure"] impl crate::Writable for REQSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REQSRCREG to value 0"] impl crate::Resettable for REQSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/sglreqdstreg.rs b/src/gpdma1/sglreqdstreg.rs index 9a4904c2..1bc59adc 100644 --- a/src/gpdma1/sglreqdstreg.rs +++ b/src/gpdma1/sglreqdstreg.rs @@ -233,10 +233,10 @@ impl crate::RegisterSpec for SGLREQDSTREG_SPEC { impl crate::Readable for SGLREQDSTREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`sglreqdstreg::W`](W) writer structure"] impl crate::Writable for SGLREQDSTREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SGLREQDSTREG to value 0"] impl crate::Resettable for SGLREQDSTREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/sglreqsrcreg.rs b/src/gpdma1/sglreqsrcreg.rs index 378ba31f..9ab8ade3 100644 --- a/src/gpdma1/sglreqsrcreg.rs +++ b/src/gpdma1/sglreqsrcreg.rs @@ -233,10 +233,10 @@ impl crate::RegisterSpec for SGLREQSRCREG_SPEC { impl crate::Readable for SGLREQSRCREG_SPEC {} #[doc = "`write(|w| ..)` method takes [`sglreqsrcreg::W`](W) writer structure"] impl crate::Writable for SGLREQSRCREG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SGLREQSRCREG to value 0"] impl crate::Resettable for SGLREQSRCREG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statusblock.rs b/src/gpdma1/statusblock.rs index eb328e7a..bcdee3eb 100644 --- a/src/gpdma1/statusblock.rs +++ b/src/gpdma1/statusblock.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for STATUSBLOCK_SPEC { impl crate::Readable for STATUSBLOCK_SPEC {} #[doc = "`reset()` method sets STATUSBLOCK to value 0"] impl crate::Resettable for STATUSBLOCK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statusdsttran.rs b/src/gpdma1/statusdsttran.rs index 6ceb2311..c789ac07 100644 --- a/src/gpdma1/statusdsttran.rs +++ b/src/gpdma1/statusdsttran.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for STATUSDSTTRAN_SPEC { impl crate::Readable for STATUSDSTTRAN_SPEC {} #[doc = "`reset()` method sets STATUSDSTTRAN to value 0"] impl crate::Resettable for STATUSDSTTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statuserr.rs b/src/gpdma1/statuserr.rs index 8101bf38..a53bb128 100644 --- a/src/gpdma1/statuserr.rs +++ b/src/gpdma1/statuserr.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for STATUSERR_SPEC { impl crate::Readable for STATUSERR_SPEC {} #[doc = "`reset()` method sets STATUSERR to value 0"] impl crate::Resettable for STATUSERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statusint.rs b/src/gpdma1/statusint.rs index 5b3a7ca3..e8fd9f1e 100644 --- a/src/gpdma1/statusint.rs +++ b/src/gpdma1/statusint.rs @@ -46,5 +46,5 @@ impl crate::RegisterSpec for STATUSINT_SPEC { impl crate::Readable for STATUSINT_SPEC {} #[doc = "`reset()` method sets STATUSINT to value 0"] impl crate::Resettable for STATUSINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statussrctran.rs b/src/gpdma1/statussrctran.rs index e31dc3b4..c433350d 100644 --- a/src/gpdma1/statussrctran.rs +++ b/src/gpdma1/statussrctran.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for STATUSSRCTRAN_SPEC { impl crate::Readable for STATUSSRCTRAN_SPEC {} #[doc = "`reset()` method sets STATUSSRCTRAN to value 0"] impl crate::Resettable for STATUSSRCTRAN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/statustfr.rs b/src/gpdma1/statustfr.rs index b625fe51..327310a6 100644 --- a/src/gpdma1/statustfr.rs +++ b/src/gpdma1/statustfr.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for STATUSTFR_SPEC { impl crate::Readable for STATUSTFR_SPEC {} #[doc = "`reset()` method sets STATUSTFR to value 0"] impl crate::Resettable for STATUSTFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1/type_.rs b/src/gpdma1/type_.rs index 16eb364f..cf672516 100644 --- a/src/gpdma1/type_.rs +++ b/src/gpdma1/type_.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TYPE_SPEC { impl crate::Readable for TYPE_SPEC {} #[doc = "`reset()` method sets TYPE to value 0x4457_1110"] impl crate::Resettable for TYPE_SPEC { - const RESET_VALUE: Self::Ux = 0x4457_1110; + const RESET_VALUE: u32 = 0x4457_1110; } diff --git a/src/gpdma1/version.rs b/src/gpdma1/version.rs index f8b9bb86..1b3d1f83 100644 --- a/src/gpdma1/version.rs +++ b/src/gpdma1/version.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for VERSION_SPEC { impl crate::Readable for VERSION_SPEC {} #[doc = "`reset()` method sets VERSION to value 0x3231_342a"] impl crate::Resettable for VERSION_SPEC { - const RESET_VALUE: Self::Ux = 0x3231_342a; + const RESET_VALUE: u32 = 0x3231_342a; } diff --git a/src/gpdma1_ch0/cfgh.rs b/src/gpdma1_ch0/cfgh.rs index ebc36121..8f1fc507 100644 --- a/src/gpdma1_ch0/cfgh.rs +++ b/src/gpdma1_ch0/cfgh.rs @@ -198,10 +198,10 @@ impl crate::RegisterSpec for CFGH_SPEC { impl crate::Readable for CFGH_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgh::W`](W) writer structure"] impl crate::Writable for CFGH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGH to value 0x04"] impl crate::Resettable for CFGH_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/gpdma1_ch0/cfgl.rs b/src/gpdma1_ch0/cfgl.rs index 69a56bba..82587518 100644 --- a/src/gpdma1_ch0/cfgl.rs +++ b/src/gpdma1_ch0/cfgl.rs @@ -612,10 +612,10 @@ impl crate::RegisterSpec for CFGL_SPEC { impl crate::Readable for CFGL_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfgl::W`](W) writer structure"] impl crate::Writable for CFGL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFGL to value 0x0e00"] impl crate::Resettable for CFGL_SPEC { - const RESET_VALUE: Self::Ux = 0x0e00; + const RESET_VALUE: u32 = 0x0e00; } diff --git a/src/gpdma1_ch0/ctlh.rs b/src/gpdma1_ch0/ctlh.rs index d6c59051..b193f905 100644 --- a/src/gpdma1_ch0/ctlh.rs +++ b/src/gpdma1_ch0/ctlh.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for CTLH_SPEC { impl crate::Readable for CTLH_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctlh::W`](W) writer structure"] impl crate::Writable for CTLH_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLH to value 0x02"] impl crate::Resettable for CTLH_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/gpdma1_ch0/ctll.rs b/src/gpdma1_ch0/ctll.rs index 29af3789..11e6834f 100644 --- a/src/gpdma1_ch0/ctll.rs +++ b/src/gpdma1_ch0/ctll.rs @@ -281,10 +281,10 @@ impl crate::RegisterSpec for CTLL_SPEC { impl crate::Readable for CTLL_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctll::W`](W) writer structure"] impl crate::Writable for CTLL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTLL to value 0x0030_4801"] impl crate::Resettable for CTLL_SPEC { - const RESET_VALUE: Self::Ux = 0x0030_4801; + const RESET_VALUE: u32 = 0x0030_4801; } diff --git a/src/gpdma1_ch0/dar.rs b/src/gpdma1_ch0/dar.rs index ce3f2d68..e65cf651 100644 --- a/src/gpdma1_ch0/dar.rs +++ b/src/gpdma1_ch0/dar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DAR_SPEC { impl crate::Readable for DAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dar::W`](W) writer structure"] impl crate::Writable for DAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAR to value 0"] impl crate::Resettable for DAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/gpdma1_ch0/sar.rs b/src/gpdma1_ch0/sar.rs index 23de4dd2..156571e6 100644 --- a/src/gpdma1_ch0/sar.rs +++ b/src/gpdma1_ch0/sar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SAR_SPEC { impl crate::Readable for SAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sar::W`](W) writer structure"] impl crate::Writable for SAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SAR to value 0"] impl crate::Resettable for SAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/evfr.rs b/src/ledts0/evfr.rs index 96a485bf..8716037c 100644 --- a/src/ledts0/evfr.rs +++ b/src/ledts0/evfr.rs @@ -198,10 +198,10 @@ impl crate::RegisterSpec for EVFR_SPEC { impl crate::Readable for EVFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`evfr::W`](W) writer structure"] impl crate::Writable for EVFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EVFR to value 0"] impl crate::Resettable for EVFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/fnctl.rs b/src/ledts0/fnctl.rs index 5c4d386f..1a643c3d 100644 --- a/src/ledts0/fnctl.rs +++ b/src/ledts0/fnctl.rs @@ -886,10 +886,10 @@ impl crate::RegisterSpec for FNCTL_SPEC { impl crate::Readable for FNCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`fnctl::W`](W) writer structure"] impl crate::Writable for FNCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FNCTL to value 0"] impl crate::Resettable for FNCTL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/globctl.rs b/src/ledts0/globctl.rs index 3495df55..a74714e0 100644 --- a/src/ledts0/globctl.rs +++ b/src/ledts0/globctl.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for GLOBCTL_SPEC { impl crate::Readable for GLOBCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`globctl::W`](W) writer structure"] impl crate::Writable for GLOBCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBCTL to value 0"] impl crate::Resettable for GLOBCTL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/id.rs b/src/ledts0/id.rs index 9327e490..4ea1846e 100644 --- a/src/ledts0/id.rs +++ b/src/ledts0/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00ab_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00ab_c000; + const RESET_VALUE: u32 = 0x00ab_c000; } diff --git a/src/ledts0/ldcmp0.rs b/src/ledts0/ldcmp0.rs index 028b74b4..634bd808 100644 --- a/src/ledts0/ldcmp0.rs +++ b/src/ledts0/ldcmp0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for LDCMP0_SPEC { impl crate::Readable for LDCMP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`ldcmp0::W`](W) writer structure"] impl crate::Writable for LDCMP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LDCMP0 to value 0"] impl crate::Resettable for LDCMP0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/ldcmp1.rs b/src/ledts0/ldcmp1.rs index aa8b1254..628f3891 100644 --- a/src/ledts0/ldcmp1.rs +++ b/src/ledts0/ldcmp1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for LDCMP1_SPEC { impl crate::Readable for LDCMP1_SPEC {} #[doc = "`write(|w| ..)` method takes [`ldcmp1::W`](W) writer structure"] impl crate::Writable for LDCMP1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LDCMP1 to value 0"] impl crate::Resettable for LDCMP1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/line0.rs b/src/ledts0/line0.rs index 2edeaf64..84ba5170 100644 --- a/src/ledts0/line0.rs +++ b/src/ledts0/line0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for LINE0_SPEC { impl crate::Readable for LINE0_SPEC {} #[doc = "`write(|w| ..)` method takes [`line0::W`](W) writer structure"] impl crate::Writable for LINE0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LINE0 to value 0"] impl crate::Resettable for LINE0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/line1.rs b/src/ledts0/line1.rs index b61f5f7b..142dc650 100644 --- a/src/ledts0/line1.rs +++ b/src/ledts0/line1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for LINE1_SPEC { impl crate::Readable for LINE1_SPEC {} #[doc = "`write(|w| ..)` method takes [`line1::W`](W) writer structure"] impl crate::Writable for LINE1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets LINE1 to value 0"] impl crate::Resettable for LINE1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/tscmp0.rs b/src/ledts0/tscmp0.rs index 0379828e..4f515e5b 100644 --- a/src/ledts0/tscmp0.rs +++ b/src/ledts0/tscmp0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for TSCMP0_SPEC { impl crate::Readable for TSCMP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`tscmp0::W`](W) writer structure"] impl crate::Writable for TSCMP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TSCMP0 to value 0"] impl crate::Resettable for TSCMP0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/tscmp1.rs b/src/ledts0/tscmp1.rs index 449003ab..70dd7906 100644 --- a/src/ledts0/tscmp1.rs +++ b/src/ledts0/tscmp1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for TSCMP1_SPEC { impl crate::Readable for TSCMP1_SPEC {} #[doc = "`write(|w| ..)` method takes [`tscmp1::W`](W) writer structure"] impl crate::Writable for TSCMP1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TSCMP1 to value 0"] impl crate::Resettable for TSCMP1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ledts0/tsval.rs b/src/ledts0/tsval.rs index ada1c577..409e3961 100644 --- a/src/ledts0/tsval.rs +++ b/src/ledts0/tsval.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for TSVAL_SPEC { impl crate::Readable for TSVAL_SPEC {} #[doc = "`write(|w| ..)` method takes [`tsval::W`](W) writer structure"] impl crate::Writable for TSVAL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TSVAL to value 0"] impl crate::Resettable for TSVAL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/lib.rs b/src/lib.rs index 98849926..e9e5cfc5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ -#![doc = "Peripheral access API for XMC4500 microcontrollers (generated using svd2rust v0.31.3 ( ))\n\nYou can find an overview of the generated API [here].\n\nAPI features to be included in the [next] -svd2rust release can be generated by cloning the svd2rust [repository], checking out the above commit, and running `cargo doc --open`.\n\n[here]: https://docs.rs/svd2rust/0.31.3/svd2rust/#peripheral-api\n[next]: https://github.com/rust-embedded/svd2rust/blob/master/CHANGELOG.md#unreleased\n[repository]: https://github.com/rust-embedded/svd2rust"] +#![doc = "Peripheral access API for XMC4500 microcontrollers (generated using svd2rust v0.31.5 ( ))\n\nYou can find an overview of the generated API [here].\n\nAPI features to be included in the [next] +svd2rust release can be generated by cloning the svd2rust [repository], checking out the above commit, and running `cargo doc --open`.\n\n[here]: https://docs.rs/svd2rust/0.31.5/svd2rust/#peripheral-api\n[next]: https://github.com/rust-embedded/svd2rust/blob/master/CHANGELOG.md#unreleased\n[repository]: https://github.com/rust-embedded/svd2rust"] #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![no_std] diff --git a/src/pba0/sts.rs b/src/pba0/sts.rs index 8e9bc7ec..acf48c3f 100644 --- a/src/pba0/sts.rs +++ b/src/pba0/sts.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for STS_SPEC { impl crate::Readable for STS_SPEC {} #[doc = "`write(|w| ..)` method takes [`sts::W`](W) writer structure"] impl crate::Writable for STS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets STS to value 0"] impl crate::Resettable for STS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/pba0/waddr.rs b/src/pba0/waddr.rs index 21a5ce25..58df48e8 100644 --- a/src/pba0/waddr.rs +++ b/src/pba0/waddr.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for WADDR_SPEC { impl crate::Readable for WADDR_SPEC {} #[doc = "`reset()` method sets WADDR to value 0"] impl crate::Resettable for WADDR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/pmu0/id.rs b/src/pmu0/id.rs index 4ce278aa..dae8adc1 100644 --- a/src/pmu0/id.rs +++ b/src/pmu0/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a1_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a1_c000; + const RESET_VALUE: u32 = 0x00a1_c000; } diff --git a/src/port0/hwsel.rs b/src/port0/hwsel.rs index db5b662a..aa4e6294 100644 --- a/src/port0/hwsel.rs +++ b/src/port0/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0x0001_4000"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0x0001_4000; + const RESET_VALUE: u32 = 0x0001_4000; } diff --git a/src/port0/in_.rs b/src/port0/in_.rs index c7f25369..68058636 100644 --- a/src/port0/in_.rs +++ b/src/port0/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/iocr0.rs b/src/port0/iocr0.rs index 982cb012..2fc75d07 100644 --- a/src/port0/iocr0.rs +++ b/src/port0/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/iocr12.rs b/src/port0/iocr12.rs index 6fddb189..55854cb7 100644 --- a/src/port0/iocr12.rs +++ b/src/port0/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/iocr4.rs b/src/port0/iocr4.rs index a5c22110..9791d419 100644 --- a/src/port0/iocr4.rs +++ b/src/port0/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/iocr8.rs b/src/port0/iocr8.rs index e50facba..61705975 100644 --- a/src/port0/iocr8.rs +++ b/src/port0/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/omr.rs b/src/port0/omr.rs index 09446618..734ed58f 100644 --- a/src/port0/omr.rs +++ b/src/port0/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/out.rs b/src/port0/out.rs index c56b2475..808f20f6 100644 --- a/src/port0/out.rs +++ b/src/port0/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/pdisc.rs b/src/port0/pdisc.rs index 8e72a974..c56f8aa7 100644 --- a/src/port0/pdisc.rs +++ b/src/port0/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port0/pdr0.rs b/src/port0/pdr0.rs index a706acdb..0d8c1878 100644 --- a/src/port0/pdr0.rs +++ b/src/port0/pdr0.rs @@ -975,10 +975,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port0/pdr1.rs b/src/port0/pdr1.rs index e6eb27db..e3b04bd5 100644 --- a/src/port0/pdr1.rs +++ b/src/port0/pdr1.rs @@ -1131,10 +1131,10 @@ impl crate::RegisterSpec for PDR1_SPEC { impl crate::Readable for PDR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr1::W`](W) writer structure"] impl crate::Writable for PDR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR1 to value 0x2222_2222"] impl crate::Resettable for PDR1_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port0/pps.rs b/src/port0/pps.rs index 980dea4e..1dac5c6d 100644 --- a/src/port0/pps.rs +++ b/src/port0/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/hwsel.rs b/src/port1/hwsel.rs index 10e815cc..730877f2 100644 --- a/src/port1/hwsel.rs +++ b/src/port1/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/in_.rs b/src/port1/in_.rs index 5688818d..d04688ae 100644 --- a/src/port1/in_.rs +++ b/src/port1/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/iocr0.rs b/src/port1/iocr0.rs index 25913a4d..301ac723 100644 --- a/src/port1/iocr0.rs +++ b/src/port1/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/iocr12.rs b/src/port1/iocr12.rs index 91810844..344f1232 100644 --- a/src/port1/iocr12.rs +++ b/src/port1/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/iocr4.rs b/src/port1/iocr4.rs index 00037471..461f60ae 100644 --- a/src/port1/iocr4.rs +++ b/src/port1/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/iocr8.rs b/src/port1/iocr8.rs index 7f215f3c..62326e46 100644 --- a/src/port1/iocr8.rs +++ b/src/port1/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/omr.rs b/src/port1/omr.rs index 3b123c05..c0f02c4e 100644 --- a/src/port1/omr.rs +++ b/src/port1/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/out.rs b/src/port1/out.rs index 61bee4de..9cea4950 100644 --- a/src/port1/out.rs +++ b/src/port1/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/pdisc.rs b/src/port1/pdisc.rs index a9894cdd..87dd7758 100644 --- a/src/port1/pdisc.rs +++ b/src/port1/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port1/pdr0.rs b/src/port1/pdr0.rs index 7c250945..bbbffddb 100644 --- a/src/port1/pdr0.rs +++ b/src/port1/pdr0.rs @@ -1053,10 +1053,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port1/pdr1.rs b/src/port1/pdr1.rs index 8ff57ad8..391b2ec2 100644 --- a/src/port1/pdr1.rs +++ b/src/port1/pdr1.rs @@ -975,10 +975,10 @@ impl crate::RegisterSpec for PDR1_SPEC { impl crate::Readable for PDR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr1::W`](W) writer structure"] impl crate::Writable for PDR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR1 to value 0x2222_2222"] impl crate::Resettable for PDR1_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port1/pps.rs b/src/port1/pps.rs index 76944e16..6d078440 100644 --- a/src/port1/pps.rs +++ b/src/port1/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/hwsel.rs b/src/port14/hwsel.rs index f78cf9c2..7acddfd9 100644 --- a/src/port14/hwsel.rs +++ b/src/port14/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/in_.rs b/src/port14/in_.rs index 3f18569f..b54c66f9 100644 --- a/src/port14/in_.rs +++ b/src/port14/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/iocr0.rs b/src/port14/iocr0.rs index 4d4e9c07..303b54b3 100644 --- a/src/port14/iocr0.rs +++ b/src/port14/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/iocr12.rs b/src/port14/iocr12.rs index 04ae0791..733b081d 100644 --- a/src/port14/iocr12.rs +++ b/src/port14/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/iocr4.rs b/src/port14/iocr4.rs index de793bf1..7197e89b 100644 --- a/src/port14/iocr4.rs +++ b/src/port14/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/iocr8.rs b/src/port14/iocr8.rs index c2aaa925..d320dcdd 100644 --- a/src/port14/iocr8.rs +++ b/src/port14/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/omr.rs b/src/port14/omr.rs index acb33ecf..ab2962f4 100644 --- a/src/port14/omr.rs +++ b/src/port14/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/out.rs b/src/port14/out.rs index b5df3b04..951eebe6 100644 --- a/src/port14/out.rs +++ b/src/port14/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/pdisc.rs b/src/port14/pdisc.rs index 5dfe7868..027f176e 100644 --- a/src/port14/pdisc.rs +++ b/src/port14/pdisc.rs @@ -921,10 +921,10 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdisc::W`](W) writer structure"] impl crate::Writable for PDISC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port14/pps.rs b/src/port14/pps.rs index 91e233b3..2fb649d5 100644 --- a/src/port14/pps.rs +++ b/src/port14/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/hwsel.rs b/src/port15/hwsel.rs index 77ffbb76..a0e36fcf 100644 --- a/src/port15/hwsel.rs +++ b/src/port15/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/in_.rs b/src/port15/in_.rs index da844645..305bc4f9 100644 --- a/src/port15/in_.rs +++ b/src/port15/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/iocr0.rs b/src/port15/iocr0.rs index 68080005..aea31735 100644 --- a/src/port15/iocr0.rs +++ b/src/port15/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/iocr12.rs b/src/port15/iocr12.rs index f20ace3a..5b92780d 100644 --- a/src/port15/iocr12.rs +++ b/src/port15/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/iocr4.rs b/src/port15/iocr4.rs index 5e884ec2..813a7e78 100644 --- a/src/port15/iocr4.rs +++ b/src/port15/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/iocr8.rs b/src/port15/iocr8.rs index b5d9d02a..40d9f2d9 100644 --- a/src/port15/iocr8.rs +++ b/src/port15/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/omr.rs b/src/port15/omr.rs index 3070ae00..5bdc7b8a 100644 --- a/src/port15/omr.rs +++ b/src/port15/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/out.rs b/src/port15/out.rs index 02c97d30..3241325d 100644 --- a/src/port15/out.rs +++ b/src/port15/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/pdisc.rs b/src/port15/pdisc.rs index 5c33e94a..12851ab6 100644 --- a/src/port15/pdisc.rs +++ b/src/port15/pdisc.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdisc::W`](W) writer structure"] impl crate::Writable for PDISC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port15/pps.rs b/src/port15/pps.rs index 767e481d..959cf207 100644 --- a/src/port15/pps.rs +++ b/src/port15/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/hwsel.rs b/src/port2/hwsel.rs index 37941995..7fd67a7c 100644 --- a/src/port2/hwsel.rs +++ b/src/port2/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0x04"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/port2/in_.rs b/src/port2/in_.rs index 3c3942cf..8efeb063 100644 --- a/src/port2/in_.rs +++ b/src/port2/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/iocr0.rs b/src/port2/iocr0.rs index f0dba2f5..fc01e7ca 100644 --- a/src/port2/iocr0.rs +++ b/src/port2/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/iocr12.rs b/src/port2/iocr12.rs index 7914ac58..27286cb4 100644 --- a/src/port2/iocr12.rs +++ b/src/port2/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/iocr4.rs b/src/port2/iocr4.rs index 795c56f2..1358d2e0 100644 --- a/src/port2/iocr4.rs +++ b/src/port2/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/iocr8.rs b/src/port2/iocr8.rs index 9b51fdae..14951e9f 100644 --- a/src/port2/iocr8.rs +++ b/src/port2/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/omr.rs b/src/port2/omr.rs index 42199495..f59225ad 100644 --- a/src/port2/omr.rs +++ b/src/port2/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/out.rs b/src/port2/out.rs index fee78289..dbacd064 100644 --- a/src/port2/out.rs +++ b/src/port2/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/pdisc.rs b/src/port2/pdisc.rs index 4e1413c6..6ca44d17 100644 --- a/src/port2/pdisc.rs +++ b/src/port2/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port2/pdr0.rs b/src/port2/pdr0.rs index 91ec5493..a79ac5b4 100644 --- a/src/port2/pdr0.rs +++ b/src/port2/pdr0.rs @@ -975,10 +975,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port2/pdr1.rs b/src/port2/pdr1.rs index 08038364..348319e6 100644 --- a/src/port2/pdr1.rs +++ b/src/port2/pdr1.rs @@ -897,10 +897,10 @@ impl crate::RegisterSpec for PDR1_SPEC { impl crate::Readable for PDR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr1::W`](W) writer structure"] impl crate::Writable for PDR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR1 to value 0x2222_2222"] impl crate::Resettable for PDR1_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port2/pps.rs b/src/port2/pps.rs index f577fe70..127115f7 100644 --- a/src/port2/pps.rs +++ b/src/port2/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/hwsel.rs b/src/port3/hwsel.rs index 0c96371d..1e63efa1 100644 --- a/src/port3/hwsel.rs +++ b/src/port3/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/in_.rs b/src/port3/in_.rs index e12027fc..1138e173 100644 --- a/src/port3/in_.rs +++ b/src/port3/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/iocr0.rs b/src/port3/iocr0.rs index e9fcf63c..387ce49a 100644 --- a/src/port3/iocr0.rs +++ b/src/port3/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/iocr12.rs b/src/port3/iocr12.rs index dea595a5..95947293 100644 --- a/src/port3/iocr12.rs +++ b/src/port3/iocr12.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR12_SPEC { impl crate::Readable for IOCR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr12::W`](W) writer structure"] impl crate::Writable for IOCR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR12 to value 0"] impl crate::Resettable for IOCR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/iocr4.rs b/src/port3/iocr4.rs index c4ea26fb..79f0f26e 100644 --- a/src/port3/iocr4.rs +++ b/src/port3/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/iocr8.rs b/src/port3/iocr8.rs index bc569b6f..47d6beab 100644 --- a/src/port3/iocr8.rs +++ b/src/port3/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/omr.rs b/src/port3/omr.rs index 97ca6352..e016369a 100644 --- a/src/port3/omr.rs +++ b/src/port3/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/out.rs b/src/port3/out.rs index 0b90fed5..5a21a613 100644 --- a/src/port3/out.rs +++ b/src/port3/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/pdisc.rs b/src/port3/pdisc.rs index 34d7e897..d4efb96c 100644 --- a/src/port3/pdisc.rs +++ b/src/port3/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port3/pdr0.rs b/src/port3/pdr0.rs index 11a0f66c..d019744d 100644 --- a/src/port3/pdr0.rs +++ b/src/port3/pdr0.rs @@ -1014,10 +1014,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port3/pdr1.rs b/src/port3/pdr1.rs index 396bc09e..53b3dea8 100644 --- a/src/port3/pdr1.rs +++ b/src/port3/pdr1.rs @@ -1131,10 +1131,10 @@ impl crate::RegisterSpec for PDR1_SPEC { impl crate::Readable for PDR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr1::W`](W) writer structure"] impl crate::Writable for PDR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR1 to value 0x2222_2222"] impl crate::Resettable for PDR1_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port3/pps.rs b/src/port3/pps.rs index 6c0f4038..3c33ea79 100644 --- a/src/port3/pps.rs +++ b/src/port3/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/hwsel.rs b/src/port4/hwsel.rs index c03d14f9..2df3dabc 100644 --- a/src/port4/hwsel.rs +++ b/src/port4/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/in_.rs b/src/port4/in_.rs index 1e775de1..03f30cc9 100644 --- a/src/port4/in_.rs +++ b/src/port4/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/iocr0.rs b/src/port4/iocr0.rs index edaf5752..e8658ef3 100644 --- a/src/port4/iocr0.rs +++ b/src/port4/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/iocr4.rs b/src/port4/iocr4.rs index 9ffb1997..5c416b62 100644 --- a/src/port4/iocr4.rs +++ b/src/port4/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/omr.rs b/src/port4/omr.rs index 63ddea18..4c14ea36 100644 --- a/src/port4/omr.rs +++ b/src/port4/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/out.rs b/src/port4/out.rs index 993938a3..d2060451 100644 --- a/src/port4/out.rs +++ b/src/port4/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/pdisc.rs b/src/port4/pdisc.rs index cf90bfc5..f2eaa138 100644 --- a/src/port4/pdisc.rs +++ b/src/port4/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port4/pdr0.rs b/src/port4/pdr0.rs index b0dac1f0..c0c455b6 100644 --- a/src/port4/pdr0.rs +++ b/src/port4/pdr0.rs @@ -1131,10 +1131,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port4/pps.rs b/src/port4/pps.rs index b6ade4de..32937635 100644 --- a/src/port4/pps.rs +++ b/src/port4/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/hwsel.rs b/src/port5/hwsel.rs index 35d8013c..869d7e70 100644 --- a/src/port5/hwsel.rs +++ b/src/port5/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/in_.rs b/src/port5/in_.rs index 2a9a7dfa..e570d53a 100644 --- a/src/port5/in_.rs +++ b/src/port5/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/iocr0.rs b/src/port5/iocr0.rs index 251e3924..ee70d635 100644 --- a/src/port5/iocr0.rs +++ b/src/port5/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/iocr4.rs b/src/port5/iocr4.rs index 8a70d376..918a2e62 100644 --- a/src/port5/iocr4.rs +++ b/src/port5/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/iocr8.rs b/src/port5/iocr8.rs index 17eec845..a29253bf 100644 --- a/src/port5/iocr8.rs +++ b/src/port5/iocr8.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR8_SPEC { impl crate::Readable for IOCR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr8::W`](W) writer structure"] impl crate::Writable for IOCR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR8 to value 0"] impl crate::Resettable for IOCR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/omr.rs b/src/port5/omr.rs index 55ec681b..6be8c4bb 100644 --- a/src/port5/omr.rs +++ b/src/port5/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/out.rs b/src/port5/out.rs index cb70485a..3c0949a7 100644 --- a/src/port5/out.rs +++ b/src/port5/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/pdisc.rs b/src/port5/pdisc.rs index 61968a9b..c045dece 100644 --- a/src/port5/pdisc.rs +++ b/src/port5/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port5/pdr0.rs b/src/port5/pdr0.rs index 304e4ca6..cbf9a82b 100644 --- a/src/port5/pdr0.rs +++ b/src/port5/pdr0.rs @@ -1053,10 +1053,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port5/pdr1.rs b/src/port5/pdr1.rs index adb5ca3d..84ce39d5 100644 --- a/src/port5/pdr1.rs +++ b/src/port5/pdr1.rs @@ -975,10 +975,10 @@ impl crate::RegisterSpec for PDR1_SPEC { impl crate::Readable for PDR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr1::W`](W) writer structure"] impl crate::Writable for PDR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR1 to value 0x2222_2222"] impl crate::Resettable for PDR1_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port5/pps.rs b/src/port5/pps.rs index 3df0167c..ac43ca1e 100644 --- a/src/port5/pps.rs +++ b/src/port5/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/hwsel.rs b/src/port6/hwsel.rs index 8d368852..d3ddbc36 100644 --- a/src/port6/hwsel.rs +++ b/src/port6/hwsel.rs @@ -1353,10 +1353,10 @@ impl crate::RegisterSpec for HWSEL_SPEC { impl crate::Readable for HWSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`hwsel::W`](W) writer structure"] impl crate::Writable for HWSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HWSEL to value 0"] impl crate::Resettable for HWSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/in_.rs b/src/port6/in_.rs index 2fc5f8dd..3a96e6f8 100644 --- a/src/port6/in_.rs +++ b/src/port6/in_.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for IN_SPEC { impl crate::Readable for IN_SPEC {} #[doc = "`reset()` method sets IN to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/iocr0.rs b/src/port6/iocr0.rs index 842342b8..d8e8788b 100644 --- a/src/port6/iocr0.rs +++ b/src/port6/iocr0.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR0_SPEC { impl crate::Readable for IOCR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr0::W`](W) writer structure"] impl crate::Writable for IOCR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR0 to value 0"] impl crate::Resettable for IOCR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/iocr4.rs b/src/port6/iocr4.rs index d92ab7e5..028cb2ce 100644 --- a/src/port6/iocr4.rs +++ b/src/port6/iocr4.rs @@ -1137,10 +1137,10 @@ impl crate::RegisterSpec for IOCR4_SPEC { impl crate::Readable for IOCR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`iocr4::W`](W) writer structure"] impl crate::Writable for IOCR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IOCR4 to value 0"] impl crate::Resettable for IOCR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/omr.rs b/src/port6/omr.rs index 5f6bd709..9342da6b 100644 --- a/src/port6/omr.rs +++ b/src/port6/omr.rs @@ -275,10 +275,10 @@ impl crate::RegisterSpec for OMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`omr::W`](W) writer structure"] impl crate::Writable for OMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OMR to value 0"] impl crate::Resettable for OMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/out.rs b/src/port6/out.rs index 32a01d1b..a7b31dd4 100644 --- a/src/port6/out.rs +++ b/src/port6/out.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for OUT_SPEC { impl crate::Readable for OUT_SPEC {} #[doc = "`write(|w| ..)` method takes [`out::W`](W) writer structure"] impl crate::Writable for OUT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OUT to value 0"] impl crate::Resettable for OUT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/pdisc.rs b/src/port6/pdisc.rs index fae362ec..604392af 100644 --- a/src/port6/pdisc.rs +++ b/src/port6/pdisc.rs @@ -667,5 +667,5 @@ impl crate::RegisterSpec for PDISC_SPEC { impl crate::Readable for PDISC_SPEC {} #[doc = "`reset()` method sets PDISC to value 0"] impl crate::Resettable for PDISC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/port6/pdr0.rs b/src/port6/pdr0.rs index 7f62c75c..cde863c2 100644 --- a/src/port6/pdr0.rs +++ b/src/port6/pdr0.rs @@ -936,10 +936,10 @@ impl crate::RegisterSpec for PDR0_SPEC { impl crate::Readable for PDR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pdr0::W`](W) writer structure"] impl crate::Writable for PDR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PDR0 to value 0x2222_2222"] impl crate::Resettable for PDR0_SPEC { - const RESET_VALUE: Self::Ux = 0x2222_2222; + const RESET_VALUE: u32 = 0x2222_2222; } diff --git a/src/port6/pps.rs b/src/port6/pps.rs index d88069db..a7d01d18 100644 --- a/src/port6/pps.rs +++ b/src/port6/pps.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for PPS_SPEC { impl crate::Readable for PPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`pps::W`](W) writer structure"] impl crate::Writable for PPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PPS to value 0"] impl crate::Resettable for PPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/halp.rs b/src/posif0/halp.rs index a0dc5382..4cb95afd 100644 --- a/src/posif0/halp.rs +++ b/src/posif0/halp.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for HALP_SPEC { impl crate::Readable for HALP_SPEC {} #[doc = "`reset()` method sets HALP to value 0"] impl crate::Resettable for HALP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/halps.rs b/src/posif0/halps.rs index ac768ede..b03128b3 100644 --- a/src/posif0/halps.rs +++ b/src/posif0/halps.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for HALPS_SPEC { impl crate::Readable for HALPS_SPEC {} #[doc = "`write(|w| ..)` method takes [`halps::W`](W) writer structure"] impl crate::Writable for HALPS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HALPS to value 0"] impl crate::Resettable for HALPS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/mcm.rs b/src/posif0/mcm.rs index 1f288e3b..5c7adf9c 100644 --- a/src/posif0/mcm.rs +++ b/src/posif0/mcm.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for MCM_SPEC { impl crate::Readable for MCM_SPEC {} #[doc = "`reset()` method sets MCM to value 0"] impl crate::Resettable for MCM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/mcmc.rs b/src/posif0/mcmc.rs index 64d82b21..5a73cdd7 100644 --- a/src/posif0/mcmc.rs +++ b/src/posif0/mcmc.rs @@ -35,10 +35,10 @@ impl crate::RegisterSpec for MCMC_SPEC { } #[doc = "`write(|w| ..)` method takes [`mcmc::W`](W) writer structure"] impl crate::Writable for MCMC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MCMC to value 0"] impl crate::Resettable for MCMC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/mcmf.rs b/src/posif0/mcmf.rs index 152cb6c4..432fac07 100644 --- a/src/posif0/mcmf.rs +++ b/src/posif0/mcmf.rs @@ -52,5 +52,5 @@ impl crate::RegisterSpec for MCMF_SPEC { impl crate::Readable for MCMF_SPEC {} #[doc = "`reset()` method sets MCMF to value 0"] impl crate::Resettable for MCMF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/mcms.rs b/src/posif0/mcms.rs index bea319cd..d88ef593 100644 --- a/src/posif0/mcms.rs +++ b/src/posif0/mcms.rs @@ -43,10 +43,10 @@ impl crate::RegisterSpec for MCMS_SPEC { } #[doc = "`write(|w| ..)` method takes [`mcms::W`](W) writer structure"] impl crate::Writable for MCMS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MCMS to value 0"] impl crate::Resettable for MCMS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/mcsm.rs b/src/posif0/mcsm.rs index d6818c60..50fdc9ae 100644 --- a/src/posif0/mcsm.rs +++ b/src/posif0/mcsm.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MCSM_SPEC { impl crate::Readable for MCSM_SPEC {} #[doc = "`write(|w| ..)` method takes [`mcsm::W`](W) writer structure"] impl crate::Writable for MCSM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MCSM to value 0"] impl crate::Resettable for MCSM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/midr.rs b/src/posif0/midr.rs index 6d7b48b2..d2428440 100644 --- a/src/posif0/midr.rs +++ b/src/posif0/midr.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for MIDR_SPEC { impl crate::Readable for MIDR_SPEC {} #[doc = "`reset()` method sets MIDR to value 0x00a8_c000"] impl crate::Resettable for MIDR_SPEC { - const RESET_VALUE: Self::Ux = 0x00a8_c000; + const RESET_VALUE: u32 = 0x00a8_c000; } diff --git a/src/posif0/pconf.rs b/src/posif0/pconf.rs index 103562f1..e997656b 100644 --- a/src/posif0/pconf.rs +++ b/src/posif0/pconf.rs @@ -1366,10 +1366,10 @@ impl crate::RegisterSpec for PCONF_SPEC { impl crate::Readable for PCONF_SPEC {} #[doc = "`write(|w| ..)` method takes [`pconf::W`](W) writer structure"] impl crate::Writable for PCONF_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCONF to value 0"] impl crate::Resettable for PCONF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/pdbg.rs b/src/posif0/pdbg.rs index 30c869fe..bd25b8a1 100644 --- a/src/posif0/pdbg.rs +++ b/src/posif0/pdbg.rs @@ -60,5 +60,5 @@ impl crate::RegisterSpec for PDBG_SPEC { impl crate::Readable for PDBG_SPEC {} #[doc = "`reset()` method sets PDBG to value 0"] impl crate::Resettable for PDBG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/pflg.rs b/src/posif0/pflg.rs index 03492345..efda53de 100644 --- a/src/posif0/pflg.rs +++ b/src/posif0/pflg.rs @@ -380,5 +380,5 @@ impl crate::RegisterSpec for PFLG_SPEC { impl crate::Readable for PFLG_SPEC {} #[doc = "`reset()` method sets PFLG to value 0"] impl crate::Resettable for PFLG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/pflge.rs b/src/posif0/pflge.rs index d6ffadf4..0bfc5869 100644 --- a/src/posif0/pflge.rs +++ b/src/posif0/pflge.rs @@ -1177,10 +1177,10 @@ impl crate::RegisterSpec for PFLGE_SPEC { impl crate::Readable for PFLGE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pflge::W`](W) writer structure"] impl crate::Writable for PFLGE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PFLGE to value 0"] impl crate::Resettable for PFLGE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/prun.rs b/src/posif0/prun.rs index a673c184..f73ac3df 100644 --- a/src/posif0/prun.rs +++ b/src/posif0/prun.rs @@ -52,5 +52,5 @@ impl crate::RegisterSpec for PRUN_SPEC { impl crate::Readable for PRUN_SPEC {} #[doc = "`reset()` method sets PRUN to value 0"] impl crate::Resettable for PRUN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/prunc.rs b/src/posif0/prunc.rs index eace69b5..7da1f029 100644 --- a/src/posif0/prunc.rs +++ b/src/posif0/prunc.rs @@ -35,10 +35,10 @@ impl crate::RegisterSpec for PRUNC_SPEC { } #[doc = "`write(|w| ..)` method takes [`prunc::W`](W) writer structure"] impl crate::Writable for PRUNC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRUNC to value 0"] impl crate::Resettable for PRUNC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/pruns.rs b/src/posif0/pruns.rs index 4a8065d4..808c0be1 100644 --- a/src/posif0/pruns.rs +++ b/src/posif0/pruns.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for PRUNS_SPEC { } #[doc = "`write(|w| ..)` method takes [`pruns::W`](W) writer structure"] impl crate::Writable for PRUNS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRUNS to value 0"] impl crate::Resettable for PRUNS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/psus.rs b/src/posif0/psus.rs index 47d50962..987cd047 100644 --- a/src/posif0/psus.rs +++ b/src/posif0/psus.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for PSUS_SPEC { impl crate::Readable for PSUS_SPEC {} #[doc = "`write(|w| ..)` method takes [`psus::W`](W) writer structure"] impl crate::Writable for PSUS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSUS to value 0"] impl crate::Resettable for PSUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/qdc.rs b/src/posif0/qdc.rs index 834aa955..206169ae 100644 --- a/src/posif0/qdc.rs +++ b/src/posif0/qdc.rs @@ -341,10 +341,10 @@ impl crate::RegisterSpec for QDC_SPEC { impl crate::Readable for QDC_SPEC {} #[doc = "`write(|w| ..)` method takes [`qdc::W`](W) writer structure"] impl crate::Writable for QDC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets QDC to value 0"] impl crate::Resettable for QDC_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/rpflg.rs b/src/posif0/rpflg.rs index 2dac722f..3be9290a 100644 --- a/src/posif0/rpflg.rs +++ b/src/posif0/rpflg.rs @@ -91,10 +91,10 @@ impl crate::RegisterSpec for RPFLG_SPEC { } #[doc = "`write(|w| ..)` method takes [`rpflg::W`](W) writer structure"] impl crate::Writable for RPFLG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RPFLG to value 0"] impl crate::Resettable for RPFLG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/posif0/spflg.rs b/src/posif0/spflg.rs index 1f98ef3a..d861716e 100644 --- a/src/posif0/spflg.rs +++ b/src/posif0/spflg.rs @@ -91,10 +91,10 @@ impl crate::RegisterSpec for SPFLG_SPEC { } #[doc = "`write(|w| ..)` method takes [`spflg::W`](W) writer structure"] impl crate::Writable for SPFLG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SPFLG to value 0"] impl crate::Resettable for SPFLG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/actlr.rs b/src/ppb/actlr.rs index dcccba2c..ca35be6a 100644 --- a/src/ppb/actlr.rs +++ b/src/ppb/actlr.rs @@ -100,10 +100,10 @@ impl crate::RegisterSpec for ACTLR_SPEC { impl crate::Readable for ACTLR_SPEC {} #[doc = "`write(|w| ..)` method takes [`actlr::W`](W) writer structure"] impl crate::Writable for ACTLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ACTLR to value 0"] impl crate::Resettable for ACTLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/afsr.rs b/src/ppb/afsr.rs index b930ac6d..a3cd7258 100644 --- a/src/ppb/afsr.rs +++ b/src/ppb/afsr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for AFSR_SPEC { impl crate::Readable for AFSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`afsr::W`](W) writer structure"] impl crate::Writable for AFSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets AFSR to value 0"] impl crate::Resettable for AFSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/aircr.rs b/src/ppb/aircr.rs index 3f132033..05d11911 100644 --- a/src/ppb/aircr.rs +++ b/src/ppb/aircr.rs @@ -149,10 +149,10 @@ impl crate::RegisterSpec for AIRCR_SPEC { impl crate::Readable for AIRCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`aircr::W`](W) writer structure"] impl crate::Writable for AIRCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets AIRCR to value 0xfa05_0000"] impl crate::Resettable for AIRCR_SPEC { - const RESET_VALUE: Self::Ux = 0xfa05_0000; + const RESET_VALUE: u32 = 0xfa05_0000; } diff --git a/src/ppb/bfar.rs b/src/ppb/bfar.rs index 9ac8d3eb..123bf37e 100644 --- a/src/ppb/bfar.rs +++ b/src/ppb/bfar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for BFAR_SPEC { impl crate::Readable for BFAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`bfar::W`](W) writer structure"] impl crate::Writable for BFAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BFAR to value 0"] impl crate::Resettable for BFAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/ccr.rs b/src/ppb/ccr.rs index c138bfbe..a99d60c8 100644 --- a/src/ppb/ccr.rs +++ b/src/ppb/ccr.rs @@ -412,10 +412,10 @@ impl crate::RegisterSpec for CCR_SPEC { impl crate::Readable for CCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ccr::W`](W) writer structure"] impl crate::Writable for CCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CCR to value 0x0200"] impl crate::Resettable for CCR_SPEC { - const RESET_VALUE: Self::Ux = 0x0200; + const RESET_VALUE: u32 = 0x0200; } diff --git a/src/ppb/cfsr.rs b/src/ppb/cfsr.rs index 71e69531..dd5b3ba1 100644 --- a/src/ppb/cfsr.rs +++ b/src/ppb/cfsr.rs @@ -1241,10 +1241,10 @@ impl crate::RegisterSpec for CFSR_SPEC { impl crate::Readable for CFSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`cfsr::W`](W) writer structure"] impl crate::Writable for CFSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CFSR to value 0"] impl crate::Resettable for CFSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/cpacr.rs b/src/ppb/cpacr.rs index d18bcf99..e8b74010 100644 --- a/src/ppb/cpacr.rs +++ b/src/ppb/cpacr.rs @@ -191,10 +191,10 @@ impl crate::RegisterSpec for CPACR_SPEC { impl crate::Readable for CPACR_SPEC {} #[doc = "`write(|w| ..)` method takes [`cpacr::W`](W) writer structure"] impl crate::Writable for CPACR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CPACR to value 0"] impl crate::Resettable for CPACR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/cpuid.rs b/src/ppb/cpuid.rs index 743272f8..ac2d176b 100644 --- a/src/ppb/cpuid.rs +++ b/src/ppb/cpuid.rs @@ -170,5 +170,5 @@ impl crate::RegisterSpec for CPUID_SPEC { impl crate::Readable for CPUID_SPEC {} #[doc = "`reset()` method sets CPUID to value 0x410f_c241"] impl crate::Resettable for CPUID_SPEC { - const RESET_VALUE: Self::Ux = 0x410f_c241; + const RESET_VALUE: u32 = 0x410f_c241; } diff --git a/src/ppb/fpcar.rs b/src/ppb/fpcar.rs index 45dcdd57..c065f38a 100644 --- a/src/ppb/fpcar.rs +++ b/src/ppb/fpcar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for FPCAR_SPEC { impl crate::Readable for FPCAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpcar::W`](W) writer structure"] impl crate::Writable for FPCAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPCAR to value 0"] impl crate::Resettable for FPCAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/fpccr.rs b/src/ppb/fpccr.rs index 193d9aed..f41c5557 100644 --- a/src/ppb/fpccr.rs +++ b/src/ppb/fpccr.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for FPCCR_SPEC { impl crate::Readable for FPCCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpccr::W`](W) writer structure"] impl crate::Writable for FPCCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPCCR to value 0"] impl crate::Resettable for FPCCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/fpdscr.rs b/src/ppb/fpdscr.rs index 0b953969..a3e82c18 100644 --- a/src/ppb/fpdscr.rs +++ b/src/ppb/fpdscr.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for FPDSCR_SPEC { impl crate::Readable for FPDSCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`fpdscr::W`](W) writer structure"] impl crate::Writable for FPDSCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FPDSCR to value 0"] impl crate::Resettable for FPDSCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/hfsr.rs b/src/ppb/hfsr.rs index e7190033..2f003556 100644 --- a/src/ppb/hfsr.rs +++ b/src/ppb/hfsr.rs @@ -168,10 +168,10 @@ impl crate::RegisterSpec for HFSR_SPEC { impl crate::Readable for HFSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`hfsr::W`](W) writer structure"] impl crate::Writable for HFSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HFSR to value 0"] impl crate::Resettable for HFSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/icsr.rs b/src/ppb/icsr.rs index 15ae88d2..0eadeaab 100644 --- a/src/ppb/icsr.rs +++ b/src/ppb/icsr.rs @@ -351,10 +351,10 @@ impl crate::RegisterSpec for ICSR_SPEC { impl crate::Readable for ICSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`icsr::W`](W) writer structure"] impl crate::Writable for ICSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ICSR to value 0"] impl crate::Resettable for ICSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mmfar.rs b/src/ppb/mmfar.rs index 525c4f88..833a2aaa 100644 --- a/src/ppb/mmfar.rs +++ b/src/ppb/mmfar.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MMFAR_SPEC { impl crate::Readable for MMFAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mmfar::W`](W) writer structure"] impl crate::Writable for MMFAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MMFAR to value 0"] impl crate::Resettable for MMFAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_ctrl.rs b/src/ppb/mpu_ctrl.rs index b4c9e9dd..7a50edd9 100644 --- a/src/ppb/mpu_ctrl.rs +++ b/src/ppb/mpu_ctrl.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for MPU_CTRL_SPEC { impl crate::Readable for MPU_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_ctrl::W`](W) writer structure"] impl crate::Writable for MPU_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_CTRL to value 0"] impl crate::Resettable for MPU_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rasr.rs b/src/ppb/mpu_rasr.rs index 6c4d1356..62aeb2c2 100644 --- a/src/ppb/mpu_rasr.rs +++ b/src/ppb/mpu_rasr.rs @@ -264,10 +264,10 @@ impl crate::RegisterSpec for MPU_RASR_SPEC { impl crate::Readable for MPU_RASR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rasr::W`](W) writer structure"] impl crate::Writable for MPU_RASR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RASR to value 0"] impl crate::Resettable for MPU_RASR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rasr_a1.rs b/src/ppb/mpu_rasr_a1.rs index 68a75f85..14936ca8 100644 --- a/src/ppb/mpu_rasr_a1.rs +++ b/src/ppb/mpu_rasr_a1.rs @@ -264,10 +264,10 @@ impl crate::RegisterSpec for MPU_RASR_A1_SPEC { impl crate::Readable for MPU_RASR_A1_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rasr_a1::W`](W) writer structure"] impl crate::Writable for MPU_RASR_A1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RASR_A1 to value 0"] impl crate::Resettable for MPU_RASR_A1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rasr_a2.rs b/src/ppb/mpu_rasr_a2.rs index ffcbdd46..c9f9386a 100644 --- a/src/ppb/mpu_rasr_a2.rs +++ b/src/ppb/mpu_rasr_a2.rs @@ -264,10 +264,10 @@ impl crate::RegisterSpec for MPU_RASR_A2_SPEC { impl crate::Readable for MPU_RASR_A2_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rasr_a2::W`](W) writer structure"] impl crate::Writable for MPU_RASR_A2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RASR_A2 to value 0"] impl crate::Resettable for MPU_RASR_A2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rasr_a3.rs b/src/ppb/mpu_rasr_a3.rs index 927ab69a..61c9f9a9 100644 --- a/src/ppb/mpu_rasr_a3.rs +++ b/src/ppb/mpu_rasr_a3.rs @@ -264,10 +264,10 @@ impl crate::RegisterSpec for MPU_RASR_A3_SPEC { impl crate::Readable for MPU_RASR_A3_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rasr_a3::W`](W) writer structure"] impl crate::Writable for MPU_RASR_A3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RASR_A3 to value 0"] impl crate::Resettable for MPU_RASR_A3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rbar.rs b/src/ppb/mpu_rbar.rs index 5637cc66..ae45fbd0 100644 --- a/src/ppb/mpu_rbar.rs +++ b/src/ppb/mpu_rbar.rs @@ -119,10 +119,10 @@ impl crate::RegisterSpec for MPU_RBAR_SPEC { impl crate::Readable for MPU_RBAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rbar::W`](W) writer structure"] impl crate::Writable for MPU_RBAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RBAR to value 0"] impl crate::Resettable for MPU_RBAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rbar_a1.rs b/src/ppb/mpu_rbar_a1.rs index 7a85aa78..f270e847 100644 --- a/src/ppb/mpu_rbar_a1.rs +++ b/src/ppb/mpu_rbar_a1.rs @@ -119,10 +119,10 @@ impl crate::RegisterSpec for MPU_RBAR_A1_SPEC { impl crate::Readable for MPU_RBAR_A1_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rbar_a1::W`](W) writer structure"] impl crate::Writable for MPU_RBAR_A1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RBAR_A1 to value 0"] impl crate::Resettable for MPU_RBAR_A1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rbar_a2.rs b/src/ppb/mpu_rbar_a2.rs index 3f943c30..0f99e542 100644 --- a/src/ppb/mpu_rbar_a2.rs +++ b/src/ppb/mpu_rbar_a2.rs @@ -119,10 +119,10 @@ impl crate::RegisterSpec for MPU_RBAR_A2_SPEC { impl crate::Readable for MPU_RBAR_A2_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rbar_a2::W`](W) writer structure"] impl crate::Writable for MPU_RBAR_A2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RBAR_A2 to value 0"] impl crate::Resettable for MPU_RBAR_A2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rbar_a3.rs b/src/ppb/mpu_rbar_a3.rs index 42198e82..ca5f413c 100644 --- a/src/ppb/mpu_rbar_a3.rs +++ b/src/ppb/mpu_rbar_a3.rs @@ -119,10 +119,10 @@ impl crate::RegisterSpec for MPU_RBAR_A3_SPEC { impl crate::Readable for MPU_RBAR_A3_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rbar_a3::W`](W) writer structure"] impl crate::Writable for MPU_RBAR_A3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RBAR_A3 to value 0"] impl crate::Resettable for MPU_RBAR_A3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_rnr.rs b/src/ppb/mpu_rnr.rs index bc0cce5f..13f81fcf 100644 --- a/src/ppb/mpu_rnr.rs +++ b/src/ppb/mpu_rnr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for MPU_RNR_SPEC { impl crate::Readable for MPU_RNR_SPEC {} #[doc = "`write(|w| ..)` method takes [`mpu_rnr::W`](W) writer structure"] impl crate::Writable for MPU_RNR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MPU_RNR to value 0"] impl crate::Resettable for MPU_RNR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/mpu_type.rs b/src/ppb/mpu_type.rs index 09bdf4a0..78279dc0 100644 --- a/src/ppb/mpu_type.rs +++ b/src/ppb/mpu_type.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for MPU_TYPE_SPEC { impl crate::Readable for MPU_TYPE_SPEC {} #[doc = "`reset()` method sets MPU_TYPE to value 0x0800"] impl crate::Resettable for MPU_TYPE_SPEC { - const RESET_VALUE: Self::Ux = 0x0800; + const RESET_VALUE: u32 = 0x0800; } diff --git a/src/ppb/nvic_iabr0.rs b/src/ppb/nvic_iabr0.rs index 52dc8717..1ad12c20 100644 --- a/src/ppb/nvic_iabr0.rs +++ b/src/ppb/nvic_iabr0.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_IABR0_SPEC { impl crate::Readable for NVIC_IABR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iabr0::W`](W) writer structure"] impl crate::Writable for NVIC_IABR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IABR0 to value 0"] impl crate::Resettable for NVIC_IABR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iabr1.rs b/src/ppb/nvic_iabr1.rs index 830e6ee2..0680510d 100644 --- a/src/ppb/nvic_iabr1.rs +++ b/src/ppb/nvic_iabr1.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_IABR1_SPEC { impl crate::Readable for NVIC_IABR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iabr1::W`](W) writer structure"] impl crate::Writable for NVIC_IABR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IABR1 to value 0"] impl crate::Resettable for NVIC_IABR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iabr2.rs b/src/ppb/nvic_iabr2.rs index d38c9527..644a8d23 100644 --- a/src/ppb/nvic_iabr2.rs +++ b/src/ppb/nvic_iabr2.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_IABR2_SPEC { impl crate::Readable for NVIC_IABR2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iabr2::W`](W) writer structure"] impl crate::Writable for NVIC_IABR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IABR2 to value 0"] impl crate::Resettable for NVIC_IABR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iabr3.rs b/src/ppb/nvic_iabr3.rs index 8961960b..d1c6f582 100644 --- a/src/ppb/nvic_iabr3.rs +++ b/src/ppb/nvic_iabr3.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_IABR3_SPEC { impl crate::Readable for NVIC_IABR3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iabr3::W`](W) writer structure"] impl crate::Writable for NVIC_IABR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IABR3 to value 0"] impl crate::Resettable for NVIC_IABR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icer0.rs b/src/ppb/nvic_icer0.rs index 7094549e..abefe9e2 100644 --- a/src/ppb/nvic_icer0.rs +++ b/src/ppb/nvic_icer0.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICER0_SPEC { impl crate::Readable for NVIC_ICER0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icer0::W`](W) writer structure"] impl crate::Writable for NVIC_ICER0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICER0 to value 0"] impl crate::Resettable for NVIC_ICER0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icer1.rs b/src/ppb/nvic_icer1.rs index 55928e23..8e9e2063 100644 --- a/src/ppb/nvic_icer1.rs +++ b/src/ppb/nvic_icer1.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICER1_SPEC { impl crate::Readable for NVIC_ICER1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icer1::W`](W) writer structure"] impl crate::Writable for NVIC_ICER1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICER1 to value 0"] impl crate::Resettable for NVIC_ICER1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icer2.rs b/src/ppb/nvic_icer2.rs index 8cc5b40d..9c847fdd 100644 --- a/src/ppb/nvic_icer2.rs +++ b/src/ppb/nvic_icer2.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICER2_SPEC { impl crate::Readable for NVIC_ICER2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icer2::W`](W) writer structure"] impl crate::Writable for NVIC_ICER2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICER2 to value 0"] impl crate::Resettable for NVIC_ICER2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icer3.rs b/src/ppb/nvic_icer3.rs index bd025a8d..d60ac0cd 100644 --- a/src/ppb/nvic_icer3.rs +++ b/src/ppb/nvic_icer3.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICER3_SPEC { impl crate::Readable for NVIC_ICER3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icer3::W`](W) writer structure"] impl crate::Writable for NVIC_ICER3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICER3 to value 0"] impl crate::Resettable for NVIC_ICER3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icpr0.rs b/src/ppb/nvic_icpr0.rs index 3aaac3e7..53dc3625 100644 --- a/src/ppb/nvic_icpr0.rs +++ b/src/ppb/nvic_icpr0.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICPR0_SPEC { impl crate::Readable for NVIC_ICPR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icpr0::W`](W) writer structure"] impl crate::Writable for NVIC_ICPR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICPR0 to value 0"] impl crate::Resettable for NVIC_ICPR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icpr1.rs b/src/ppb/nvic_icpr1.rs index 2b3e19be..5ff630c7 100644 --- a/src/ppb/nvic_icpr1.rs +++ b/src/ppb/nvic_icpr1.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICPR1_SPEC { impl crate::Readable for NVIC_ICPR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icpr1::W`](W) writer structure"] impl crate::Writable for NVIC_ICPR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICPR1 to value 0"] impl crate::Resettable for NVIC_ICPR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icpr2.rs b/src/ppb/nvic_icpr2.rs index 13d8cf15..ddc61f67 100644 --- a/src/ppb/nvic_icpr2.rs +++ b/src/ppb/nvic_icpr2.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICPR2_SPEC { impl crate::Readable for NVIC_ICPR2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icpr2::W`](W) writer structure"] impl crate::Writable for NVIC_ICPR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICPR2 to value 0"] impl crate::Resettable for NVIC_ICPR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_icpr3.rs b/src/ppb/nvic_icpr3.rs index b78d44eb..fb2f752b 100644 --- a/src/ppb/nvic_icpr3.rs +++ b/src/ppb/nvic_icpr3.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ICPR3_SPEC { impl crate::Readable for NVIC_ICPR3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_icpr3::W`](W) writer structure"] impl crate::Writable for NVIC_ICPR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ICPR3 to value 0"] impl crate::Resettable for NVIC_ICPR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr0.rs b/src/ppb/nvic_ipr0.rs index 4c386e0b..40339cfa 100644 --- a/src/ppb/nvic_ipr0.rs +++ b/src/ppb/nvic_ipr0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR0_SPEC { impl crate::Readable for NVIC_IPR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr0::W`](W) writer structure"] impl crate::Writable for NVIC_IPR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR0 to value 0"] impl crate::Resettable for NVIC_IPR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr1.rs b/src/ppb/nvic_ipr1.rs index af72cde9..9ad54e99 100644 --- a/src/ppb/nvic_ipr1.rs +++ b/src/ppb/nvic_ipr1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR1_SPEC { impl crate::Readable for NVIC_IPR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr1::W`](W) writer structure"] impl crate::Writable for NVIC_IPR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR1 to value 0"] impl crate::Resettable for NVIC_IPR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr10.rs b/src/ppb/nvic_ipr10.rs index 766ca00f..1d25038b 100644 --- a/src/ppb/nvic_ipr10.rs +++ b/src/ppb/nvic_ipr10.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR10_SPEC { impl crate::Readable for NVIC_IPR10_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr10::W`](W) writer structure"] impl crate::Writable for NVIC_IPR10_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR10 to value 0"] impl crate::Resettable for NVIC_IPR10_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr11.rs b/src/ppb/nvic_ipr11.rs index a0afb84b..a3b4958c 100644 --- a/src/ppb/nvic_ipr11.rs +++ b/src/ppb/nvic_ipr11.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR11_SPEC { impl crate::Readable for NVIC_IPR11_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr11::W`](W) writer structure"] impl crate::Writable for NVIC_IPR11_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR11 to value 0"] impl crate::Resettable for NVIC_IPR11_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr12.rs b/src/ppb/nvic_ipr12.rs index 58814f63..322d1761 100644 --- a/src/ppb/nvic_ipr12.rs +++ b/src/ppb/nvic_ipr12.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR12_SPEC { impl crate::Readable for NVIC_IPR12_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr12::W`](W) writer structure"] impl crate::Writable for NVIC_IPR12_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR12 to value 0"] impl crate::Resettable for NVIC_IPR12_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr13.rs b/src/ppb/nvic_ipr13.rs index 4d0c1003..98088554 100644 --- a/src/ppb/nvic_ipr13.rs +++ b/src/ppb/nvic_ipr13.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR13_SPEC { impl crate::Readable for NVIC_IPR13_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr13::W`](W) writer structure"] impl crate::Writable for NVIC_IPR13_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR13 to value 0"] impl crate::Resettable for NVIC_IPR13_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr14.rs b/src/ppb/nvic_ipr14.rs index 1a161d3e..e74c0ce3 100644 --- a/src/ppb/nvic_ipr14.rs +++ b/src/ppb/nvic_ipr14.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR14_SPEC { impl crate::Readable for NVIC_IPR14_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr14::W`](W) writer structure"] impl crate::Writable for NVIC_IPR14_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR14 to value 0"] impl crate::Resettable for NVIC_IPR14_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr15.rs b/src/ppb/nvic_ipr15.rs index 169403b2..85a0b059 100644 --- a/src/ppb/nvic_ipr15.rs +++ b/src/ppb/nvic_ipr15.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR15_SPEC { impl crate::Readable for NVIC_IPR15_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr15::W`](W) writer structure"] impl crate::Writable for NVIC_IPR15_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR15 to value 0"] impl crate::Resettable for NVIC_IPR15_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr16.rs b/src/ppb/nvic_ipr16.rs index e1ab2638..3e711f0c 100644 --- a/src/ppb/nvic_ipr16.rs +++ b/src/ppb/nvic_ipr16.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR16_SPEC { impl crate::Readable for NVIC_IPR16_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr16::W`](W) writer structure"] impl crate::Writable for NVIC_IPR16_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR16 to value 0"] impl crate::Resettable for NVIC_IPR16_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr17.rs b/src/ppb/nvic_ipr17.rs index 52744d3c..0e15a483 100644 --- a/src/ppb/nvic_ipr17.rs +++ b/src/ppb/nvic_ipr17.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR17_SPEC { impl crate::Readable for NVIC_IPR17_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr17::W`](W) writer structure"] impl crate::Writable for NVIC_IPR17_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR17 to value 0"] impl crate::Resettable for NVIC_IPR17_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr18.rs b/src/ppb/nvic_ipr18.rs index 103d33b1..22107377 100644 --- a/src/ppb/nvic_ipr18.rs +++ b/src/ppb/nvic_ipr18.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR18_SPEC { impl crate::Readable for NVIC_IPR18_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr18::W`](W) writer structure"] impl crate::Writable for NVIC_IPR18_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR18 to value 0"] impl crate::Resettable for NVIC_IPR18_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr19.rs b/src/ppb/nvic_ipr19.rs index df1fa06c..8c3779d6 100644 --- a/src/ppb/nvic_ipr19.rs +++ b/src/ppb/nvic_ipr19.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR19_SPEC { impl crate::Readable for NVIC_IPR19_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr19::W`](W) writer structure"] impl crate::Writable for NVIC_IPR19_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR19 to value 0"] impl crate::Resettable for NVIC_IPR19_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr2.rs b/src/ppb/nvic_ipr2.rs index 44b633c9..cb1ed45e 100644 --- a/src/ppb/nvic_ipr2.rs +++ b/src/ppb/nvic_ipr2.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR2_SPEC { impl crate::Readable for NVIC_IPR2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr2::W`](W) writer structure"] impl crate::Writable for NVIC_IPR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR2 to value 0"] impl crate::Resettable for NVIC_IPR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr20.rs b/src/ppb/nvic_ipr20.rs index 293ab41a..afd09752 100644 --- a/src/ppb/nvic_ipr20.rs +++ b/src/ppb/nvic_ipr20.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR20_SPEC { impl crate::Readable for NVIC_IPR20_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr20::W`](W) writer structure"] impl crate::Writable for NVIC_IPR20_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR20 to value 0"] impl crate::Resettable for NVIC_IPR20_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr21.rs b/src/ppb/nvic_ipr21.rs index 14b19c1f..53149f9b 100644 --- a/src/ppb/nvic_ipr21.rs +++ b/src/ppb/nvic_ipr21.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR21_SPEC { impl crate::Readable for NVIC_IPR21_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr21::W`](W) writer structure"] impl crate::Writable for NVIC_IPR21_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR21 to value 0"] impl crate::Resettable for NVIC_IPR21_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr22.rs b/src/ppb/nvic_ipr22.rs index df2a3379..7f558dca 100644 --- a/src/ppb/nvic_ipr22.rs +++ b/src/ppb/nvic_ipr22.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR22_SPEC { impl crate::Readable for NVIC_IPR22_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr22::W`](W) writer structure"] impl crate::Writable for NVIC_IPR22_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR22 to value 0"] impl crate::Resettable for NVIC_IPR22_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr23.rs b/src/ppb/nvic_ipr23.rs index 5168901d..19b0c1a3 100644 --- a/src/ppb/nvic_ipr23.rs +++ b/src/ppb/nvic_ipr23.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR23_SPEC { impl crate::Readable for NVIC_IPR23_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr23::W`](W) writer structure"] impl crate::Writable for NVIC_IPR23_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR23 to value 0"] impl crate::Resettable for NVIC_IPR23_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr24.rs b/src/ppb/nvic_ipr24.rs index 2efb581b..7b251761 100644 --- a/src/ppb/nvic_ipr24.rs +++ b/src/ppb/nvic_ipr24.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR24_SPEC { impl crate::Readable for NVIC_IPR24_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr24::W`](W) writer structure"] impl crate::Writable for NVIC_IPR24_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR24 to value 0"] impl crate::Resettable for NVIC_IPR24_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr25.rs b/src/ppb/nvic_ipr25.rs index ceffc845..825b3302 100644 --- a/src/ppb/nvic_ipr25.rs +++ b/src/ppb/nvic_ipr25.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR25_SPEC { impl crate::Readable for NVIC_IPR25_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr25::W`](W) writer structure"] impl crate::Writable for NVIC_IPR25_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR25 to value 0"] impl crate::Resettable for NVIC_IPR25_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr26.rs b/src/ppb/nvic_ipr26.rs index 2aba0700..b54eb779 100644 --- a/src/ppb/nvic_ipr26.rs +++ b/src/ppb/nvic_ipr26.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR26_SPEC { impl crate::Readable for NVIC_IPR26_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr26::W`](W) writer structure"] impl crate::Writable for NVIC_IPR26_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR26 to value 0"] impl crate::Resettable for NVIC_IPR26_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr27.rs b/src/ppb/nvic_ipr27.rs index 1e150160..9840fbe8 100644 --- a/src/ppb/nvic_ipr27.rs +++ b/src/ppb/nvic_ipr27.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR27_SPEC { impl crate::Readable for NVIC_IPR27_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr27::W`](W) writer structure"] impl crate::Writable for NVIC_IPR27_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR27 to value 0"] impl crate::Resettable for NVIC_IPR27_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr3.rs b/src/ppb/nvic_ipr3.rs index 69bfc44b..8ccb326b 100644 --- a/src/ppb/nvic_ipr3.rs +++ b/src/ppb/nvic_ipr3.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR3_SPEC { impl crate::Readable for NVIC_IPR3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr3::W`](W) writer structure"] impl crate::Writable for NVIC_IPR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR3 to value 0"] impl crate::Resettable for NVIC_IPR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr4.rs b/src/ppb/nvic_ipr4.rs index 95efccb3..46e10f86 100644 --- a/src/ppb/nvic_ipr4.rs +++ b/src/ppb/nvic_ipr4.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR4_SPEC { impl crate::Readable for NVIC_IPR4_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr4::W`](W) writer structure"] impl crate::Writable for NVIC_IPR4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR4 to value 0"] impl crate::Resettable for NVIC_IPR4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr5.rs b/src/ppb/nvic_ipr5.rs index 61ca8e6a..ecc5180f 100644 --- a/src/ppb/nvic_ipr5.rs +++ b/src/ppb/nvic_ipr5.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR5_SPEC { impl crate::Readable for NVIC_IPR5_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr5::W`](W) writer structure"] impl crate::Writable for NVIC_IPR5_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR5 to value 0"] impl crate::Resettable for NVIC_IPR5_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr6.rs b/src/ppb/nvic_ipr6.rs index f0de0d11..5ddc6b23 100644 --- a/src/ppb/nvic_ipr6.rs +++ b/src/ppb/nvic_ipr6.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR6_SPEC { impl crate::Readable for NVIC_IPR6_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr6::W`](W) writer structure"] impl crate::Writable for NVIC_IPR6_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR6 to value 0"] impl crate::Resettable for NVIC_IPR6_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr7.rs b/src/ppb/nvic_ipr7.rs index 6ee3779d..d40e8357 100644 --- a/src/ppb/nvic_ipr7.rs +++ b/src/ppb/nvic_ipr7.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR7_SPEC { impl crate::Readable for NVIC_IPR7_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr7::W`](W) writer structure"] impl crate::Writable for NVIC_IPR7_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR7 to value 0"] impl crate::Resettable for NVIC_IPR7_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr8.rs b/src/ppb/nvic_ipr8.rs index e1d03f2d..3db437d4 100644 --- a/src/ppb/nvic_ipr8.rs +++ b/src/ppb/nvic_ipr8.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR8_SPEC { impl crate::Readable for NVIC_IPR8_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr8::W`](W) writer structure"] impl crate::Writable for NVIC_IPR8_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR8 to value 0"] impl crate::Resettable for NVIC_IPR8_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ipr9.rs b/src/ppb/nvic_ipr9.rs index 14cacf42..b7070642 100644 --- a/src/ppb/nvic_ipr9.rs +++ b/src/ppb/nvic_ipr9.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for NVIC_IPR9_SPEC { impl crate::Readable for NVIC_IPR9_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ipr9::W`](W) writer structure"] impl crate::Writable for NVIC_IPR9_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_IPR9 to value 0"] impl crate::Resettable for NVIC_IPR9_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iser0.rs b/src/ppb/nvic_iser0.rs index 0e3d80a6..f8eda5be 100644 --- a/src/ppb/nvic_iser0.rs +++ b/src/ppb/nvic_iser0.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISER0_SPEC { impl crate::Readable for NVIC_ISER0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iser0::W`](W) writer structure"] impl crate::Writable for NVIC_ISER0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISER0 to value 0"] impl crate::Resettable for NVIC_ISER0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iser1.rs b/src/ppb/nvic_iser1.rs index d2fc5c13..f2f78363 100644 --- a/src/ppb/nvic_iser1.rs +++ b/src/ppb/nvic_iser1.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISER1_SPEC { impl crate::Readable for NVIC_ISER1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iser1::W`](W) writer structure"] impl crate::Writable for NVIC_ISER1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISER1 to value 0"] impl crate::Resettable for NVIC_ISER1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iser2.rs b/src/ppb/nvic_iser2.rs index c229ef91..00c5b78f 100644 --- a/src/ppb/nvic_iser2.rs +++ b/src/ppb/nvic_iser2.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISER2_SPEC { impl crate::Readable for NVIC_ISER2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iser2::W`](W) writer structure"] impl crate::Writable for NVIC_ISER2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISER2 to value 0"] impl crate::Resettable for NVIC_ISER2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_iser3.rs b/src/ppb/nvic_iser3.rs index c157540b..96d6d338 100644 --- a/src/ppb/nvic_iser3.rs +++ b/src/ppb/nvic_iser3.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISER3_SPEC { impl crate::Readable for NVIC_ISER3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_iser3::W`](W) writer structure"] impl crate::Writable for NVIC_ISER3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISER3 to value 0"] impl crate::Resettable for NVIC_ISER3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ispr0.rs b/src/ppb/nvic_ispr0.rs index 68bfdd33..7742f320 100644 --- a/src/ppb/nvic_ispr0.rs +++ b/src/ppb/nvic_ispr0.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISPR0_SPEC { impl crate::Readable for NVIC_ISPR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ispr0::W`](W) writer structure"] impl crate::Writable for NVIC_ISPR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISPR0 to value 0"] impl crate::Resettable for NVIC_ISPR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ispr1.rs b/src/ppb/nvic_ispr1.rs index 5fe721dd..1aa254f0 100644 --- a/src/ppb/nvic_ispr1.rs +++ b/src/ppb/nvic_ispr1.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISPR1_SPEC { impl crate::Readable for NVIC_ISPR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ispr1::W`](W) writer structure"] impl crate::Writable for NVIC_ISPR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISPR1 to value 0"] impl crate::Resettable for NVIC_ISPR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ispr2.rs b/src/ppb/nvic_ispr2.rs index e4c31c8a..7d8946fa 100644 --- a/src/ppb/nvic_ispr2.rs +++ b/src/ppb/nvic_ispr2.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISPR2_SPEC { impl crate::Readable for NVIC_ISPR2_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ispr2::W`](W) writer structure"] impl crate::Writable for NVIC_ISPR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISPR2 to value 0"] impl crate::Resettable for NVIC_ISPR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/nvic_ispr3.rs b/src/ppb/nvic_ispr3.rs index 7da487ab..df3c58c6 100644 --- a/src/ppb/nvic_ispr3.rs +++ b/src/ppb/nvic_ispr3.rs @@ -95,10 +95,10 @@ impl crate::RegisterSpec for NVIC_ISPR3_SPEC { impl crate::Readable for NVIC_ISPR3_SPEC {} #[doc = "`write(|w| ..)` method takes [`nvic_ispr3::W`](W) writer structure"] impl crate::Writable for NVIC_ISPR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NVIC_ISPR3 to value 0"] impl crate::Resettable for NVIC_ISPR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/scr.rs b/src/ppb/scr.rs index 799c238d..3e6b6bd7 100644 --- a/src/ppb/scr.rs +++ b/src/ppb/scr.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for SCR_SPEC { impl crate::Readable for SCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`scr::W`](W) writer structure"] impl crate::Writable for SCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SCR to value 0"] impl crate::Resettable for SCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/shcsr.rs b/src/ppb/shcsr.rs index eb827aee..aeed8d44 100644 --- a/src/ppb/shcsr.rs +++ b/src/ppb/shcsr.rs @@ -235,10 +235,10 @@ impl crate::RegisterSpec for SHCSR_SPEC { impl crate::Readable for SHCSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`shcsr::W`](W) writer structure"] impl crate::Writable for SHCSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SHCSR to value 0"] impl crate::Resettable for SHCSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/shpr1.rs b/src/ppb/shpr1.rs index 20c3cc26..c22a3ea5 100644 --- a/src/ppb/shpr1.rs +++ b/src/ppb/shpr1.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for SHPR1_SPEC { impl crate::Readable for SHPR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`shpr1::W`](W) writer structure"] impl crate::Writable for SHPR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SHPR1 to value 0"] impl crate::Resettable for SHPR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/shpr2.rs b/src/ppb/shpr2.rs index 512c2869..51dbe02f 100644 --- a/src/ppb/shpr2.rs +++ b/src/ppb/shpr2.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SHPR2_SPEC { impl crate::Readable for SHPR2_SPEC {} #[doc = "`write(|w| ..)` method takes [`shpr2::W`](W) writer structure"] impl crate::Writable for SHPR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SHPR2 to value 0"] impl crate::Resettable for SHPR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/shpr3.rs b/src/ppb/shpr3.rs index 2c6409fc..5e1bb90e 100644 --- a/src/ppb/shpr3.rs +++ b/src/ppb/shpr3.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for SHPR3_SPEC { impl crate::Readable for SHPR3_SPEC {} #[doc = "`write(|w| ..)` method takes [`shpr3::W`](W) writer structure"] impl crate::Writable for SHPR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SHPR3 to value 0"] impl crate::Resettable for SHPR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/stir.rs b/src/ppb/stir.rs index 3563ea07..79e36ed1 100644 --- a/src/ppb/stir.rs +++ b/src/ppb/stir.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for STIR_SPEC { } #[doc = "`write(|w| ..)` method takes [`stir::W`](W) writer structure"] impl crate::Writable for STIR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets STIR to value 0"] impl crate::Resettable for STIR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/syst_calib.rs b/src/ppb/syst_calib.rs index 05a942bc..fc2b480a 100644 --- a/src/ppb/syst_calib.rs +++ b/src/ppb/syst_calib.rs @@ -168,10 +168,10 @@ impl crate::RegisterSpec for SYST_CALIB_SPEC { impl crate::Readable for SYST_CALIB_SPEC {} #[doc = "`write(|w| ..)` method takes [`syst_calib::W`](W) writer structure"] impl crate::Writable for SYST_CALIB_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYST_CALIB to value 0xc000_0000"] impl crate::Resettable for SYST_CALIB_SPEC { - const RESET_VALUE: Self::Ux = 0xc000_0000; + const RESET_VALUE: u32 = 0xc000_0000; } diff --git a/src/ppb/syst_csr.rs b/src/ppb/syst_csr.rs index ded1ff7c..28556f36 100644 --- a/src/ppb/syst_csr.rs +++ b/src/ppb/syst_csr.rs @@ -232,10 +232,10 @@ impl crate::RegisterSpec for SYST_CSR_SPEC { impl crate::Readable for SYST_CSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`syst_csr::W`](W) writer structure"] impl crate::Writable for SYST_CSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYST_CSR to value 0x04"] impl crate::Resettable for SYST_CSR_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/ppb/syst_cvr.rs b/src/ppb/syst_cvr.rs index ee6bbfc1..6031e19a 100644 --- a/src/ppb/syst_cvr.rs +++ b/src/ppb/syst_cvr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SYST_CVR_SPEC { impl crate::Readable for SYST_CVR_SPEC {} #[doc = "`write(|w| ..)` method takes [`syst_cvr::W`](W) writer structure"] impl crate::Writable for SYST_CVR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYST_CVR to value 0"] impl crate::Resettable for SYST_CVR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/syst_rvr.rs b/src/ppb/syst_rvr.rs index 4abcea43..a7a39206 100644 --- a/src/ppb/syst_rvr.rs +++ b/src/ppb/syst_rvr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SYST_RVR_SPEC { impl crate::Readable for SYST_RVR_SPEC {} #[doc = "`write(|w| ..)` method takes [`syst_rvr::W`](W) writer structure"] impl crate::Writable for SYST_RVR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYST_RVR to value 0"] impl crate::Resettable for SYST_RVR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/ppb/vtor.rs b/src/ppb/vtor.rs index b61aca35..6d18fc18 100644 --- a/src/ppb/vtor.rs +++ b/src/ppb/vtor.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for VTOR_SPEC { impl crate::Readable for VTOR_SPEC {} #[doc = "`write(|w| ..)` method takes [`vtor::W`](W) writer structure"] impl crate::Writable for VTOR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets VTOR to value 0"] impl crate::Resettable for VTOR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/pref/pcon.rs b/src/pref/pcon.rs index ad01fc19..26bf6c78 100644 --- a/src/pref/pcon.rs +++ b/src/pref/pcon.rs @@ -126,10 +126,10 @@ impl crate::RegisterSpec for PCON_SPEC { impl crate::Readable for PCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcon::W`](W) writer structure"] impl crate::Writable for PCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCON to value 0"] impl crate::Resettable for PCON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/atim0.rs b/src/rtc/atim0.rs index f69fc1a0..6ab6f629 100644 --- a/src/rtc/atim0.rs +++ b/src/rtc/atim0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for ATIM0_SPEC { impl crate::Readable for ATIM0_SPEC {} #[doc = "`write(|w| ..)` method takes [`atim0::W`](W) writer structure"] impl crate::Writable for ATIM0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ATIM0 to value 0"] impl crate::Resettable for ATIM0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/atim1.rs b/src/rtc/atim1.rs index 697728e4..ebd9dbde 100644 --- a/src/rtc/atim1.rs +++ b/src/rtc/atim1.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for ATIM1_SPEC { impl crate::Readable for ATIM1_SPEC {} #[doc = "`write(|w| ..)` method takes [`atim1::W`](W) writer structure"] impl crate::Writable for ATIM1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ATIM1 to value 0"] impl crate::Resettable for ATIM1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/clrsr.rs b/src/rtc/clrsr.rs index 394c1f3d..c73eebe8 100644 --- a/src/rtc/clrsr.rs +++ b/src/rtc/clrsr.rs @@ -75,10 +75,10 @@ impl crate::RegisterSpec for CLRSR_SPEC { } #[doc = "`write(|w| ..)` method takes [`clrsr::W`](W) writer structure"] impl crate::Writable for CLRSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLRSR to value 0"] impl crate::Resettable for CLRSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/ctr.rs b/src/rtc/ctr.rs index d9c5fdca..bc7fb16f 100644 --- a/src/rtc/ctr.rs +++ b/src/rtc/ctr.rs @@ -160,10 +160,10 @@ impl crate::RegisterSpec for CTR_SPEC { impl crate::Readable for CTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctr::W`](W) writer structure"] impl crate::Writable for CTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTR to value 0x7fff_0000"] impl crate::Resettable for CTR_SPEC { - const RESET_VALUE: Self::Ux = 0x7fff_0000; + const RESET_VALUE: u32 = 0x7fff_0000; } diff --git a/src/rtc/id.rs b/src/rtc/id.rs index 054dd711..4e46c792 100644 --- a/src/rtc/id.rs +++ b/src/rtc/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a3_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a3_c000; + const RESET_VALUE: u32 = 0x00a3_c000; } diff --git a/src/rtc/msksr.rs b/src/rtc/msksr.rs index 3cca6f20..9f4b81cc 100644 --- a/src/rtc/msksr.rs +++ b/src/rtc/msksr.rs @@ -130,10 +130,10 @@ impl crate::RegisterSpec for MSKSR_SPEC { impl crate::Readable for MSKSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`msksr::W`](W) writer structure"] impl crate::Writable for MSKSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MSKSR to value 0"] impl crate::Resettable for MSKSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/rawstat.rs b/src/rtc/rawstat.rs index 70dc6fe6..1d473d74 100644 --- a/src/rtc/rawstat.rs +++ b/src/rtc/rawstat.rs @@ -60,5 +60,5 @@ impl crate::RegisterSpec for RAWSTAT_SPEC { impl crate::Readable for RAWSTAT_SPEC {} #[doc = "`reset()` method sets RAWSTAT to value 0"] impl crate::Resettable for RAWSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/stssr.rs b/src/rtc/stssr.rs index 5f7ce517..78e32ac1 100644 --- a/src/rtc/stssr.rs +++ b/src/rtc/stssr.rs @@ -60,5 +60,5 @@ impl crate::RegisterSpec for STSSR_SPEC { impl crate::Readable for STSSR_SPEC {} #[doc = "`reset()` method sets STSSR to value 0"] impl crate::Resettable for STSSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/tim0.rs b/src/rtc/tim0.rs index f53256c8..3ad784b5 100644 --- a/src/rtc/tim0.rs +++ b/src/rtc/tim0.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for TIM0_SPEC { impl crate::Readable for TIM0_SPEC {} #[doc = "`write(|w| ..)` method takes [`tim0::W`](W) writer structure"] impl crate::Writable for TIM0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIM0 to value 0"] impl crate::Resettable for TIM0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/rtc/tim1.rs b/src/rtc/tim1.rs index b77a05ea..edfdb20a 100644 --- a/src/rtc/tim1.rs +++ b/src/rtc/tim1.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for TIM1_SPEC { impl crate::Readable for TIM1_SPEC {} #[doc = "`write(|w| ..)` method takes [`tim1::W`](W) writer structure"] impl crate::Writable for TIM1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TIM1 to value 0"] impl crate::Resettable for TIM1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/ccuclkcr.rs b/src/scu_clk/ccuclkcr.rs index f4c00734..44e86816 100644 --- a/src/scu_clk/ccuclkcr.rs +++ b/src/scu_clk/ccuclkcr.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for CCUCLKCR_SPEC { impl crate::Readable for CCUCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ccuclkcr::W`](W) writer structure"] impl crate::Writable for CCUCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CCUCLKCR to value 0"] impl crate::Resettable for CCUCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/clkclr.rs b/src/scu_clk/clkclr.rs index d39a9e64..6ed62861 100644 --- a/src/scu_clk/clkclr.rs +++ b/src/scu_clk/clkclr.rs @@ -241,10 +241,10 @@ impl crate::RegisterSpec for CLKCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`clkclr::W`](W) writer structure"] impl crate::Writable for CLKCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLKCLR to value 0"] impl crate::Resettable for CLKCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/clkset.rs b/src/scu_clk/clkset.rs index 4b8934f3..3e8a889a 100644 --- a/src/scu_clk/clkset.rs +++ b/src/scu_clk/clkset.rs @@ -241,10 +241,10 @@ impl crate::RegisterSpec for CLKSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`clkset::W`](W) writer structure"] impl crate::Writable for CLKSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLKSET to value 0"] impl crate::Resettable for CLKSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/clkstat.rs b/src/scu_clk/clkstat.rs index c0b6cf17..22d35a37 100644 --- a/src/scu_clk/clkstat.rs +++ b/src/scu_clk/clkstat.rs @@ -257,5 +257,5 @@ impl crate::RegisterSpec for CLKSTAT_SPEC { impl crate::Readable for CLKSTAT_SPEC {} #[doc = "`reset()` method sets CLKSTAT to value 0"] impl crate::Resettable for CLKSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/cpuclkcr.rs b/src/scu_clk/cpuclkcr.rs index 0a3a61a5..3994ad60 100644 --- a/src/scu_clk/cpuclkcr.rs +++ b/src/scu_clk/cpuclkcr.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for CPUCLKCR_SPEC { impl crate::Readable for CPUCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`cpuclkcr::W`](W) writer structure"] impl crate::Writable for CPUCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CPUCLKCR to value 0"] impl crate::Resettable for CPUCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/dsleepcr.rs b/src/scu_clk/dsleepcr.rs index 1036d883..fbdca6ef 100644 --- a/src/scu_clk/dsleepcr.rs +++ b/src/scu_clk/dsleepcr.rs @@ -671,10 +671,10 @@ impl crate::RegisterSpec for DSLEEPCR_SPEC { impl crate::Readable for DSLEEPCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dsleepcr::W`](W) writer structure"] impl crate::Writable for DSLEEPCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DSLEEPCR to value 0"] impl crate::Resettable for DSLEEPCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/ebuclkcr.rs b/src/scu_clk/ebuclkcr.rs index 7c3c562f..80b49819 100644 --- a/src/scu_clk/ebuclkcr.rs +++ b/src/scu_clk/ebuclkcr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for EBUCLKCR_SPEC { impl crate::Readable for EBUCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ebuclkcr::W`](W) writer structure"] impl crate::Writable for EBUCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EBUCLKCR to value 0"] impl crate::Resettable for EBUCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/extclkcr.rs b/src/scu_clk/extclkcr.rs index 5b69119c..6f2359e9 100644 --- a/src/scu_clk/extclkcr.rs +++ b/src/scu_clk/extclkcr.rs @@ -123,10 +123,10 @@ impl crate::RegisterSpec for EXTCLKCR_SPEC { impl crate::Readable for EXTCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`extclkcr::W`](W) writer structure"] impl crate::Writable for EXTCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EXTCLKCR to value 0"] impl crate::Resettable for EXTCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/pbclkcr.rs b/src/scu_clk/pbclkcr.rs index bd354c84..b7aafeee 100644 --- a/src/scu_clk/pbclkcr.rs +++ b/src/scu_clk/pbclkcr.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for PBCLKCR_SPEC { impl crate::Readable for PBCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`pbclkcr::W`](W) writer structure"] impl crate::Writable for PBCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PBCLKCR to value 0"] impl crate::Resettable for PBCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/sleepcr.rs b/src/scu_clk/sleepcr.rs index 21c056a5..38fdcebc 100644 --- a/src/scu_clk/sleepcr.rs +++ b/src/scu_clk/sleepcr.rs @@ -473,10 +473,10 @@ impl crate::RegisterSpec for SLEEPCR_SPEC { impl crate::Readable for SLEEPCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sleepcr::W`](W) writer structure"] impl crate::Writable for SLEEPCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SLEEPCR to value 0"] impl crate::Resettable for SLEEPCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/sysclkcr.rs b/src/scu_clk/sysclkcr.rs index 16466c79..11647c89 100644 --- a/src/scu_clk/sysclkcr.rs +++ b/src/scu_clk/sysclkcr.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for SYSCLKCR_SPEC { impl crate::Readable for SYSCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sysclkcr::W`](W) writer structure"] impl crate::Writable for SYSCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYSCLKCR to value 0"] impl crate::Resettable for SYSCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/usbclkcr.rs b/src/scu_clk/usbclkcr.rs index 16da75b3..53c0d3a1 100644 --- a/src/scu_clk/usbclkcr.rs +++ b/src/scu_clk/usbclkcr.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for USBCLKCR_SPEC { impl crate::Readable for USBCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`usbclkcr::W`](W) writer structure"] impl crate::Writable for USBCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets USBCLKCR to value 0"] impl crate::Resettable for USBCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_clk/wdtclkcr.rs b/src/scu_clk/wdtclkcr.rs index b8ff3207..294edf01 100644 --- a/src/scu_clk/wdtclkcr.rs +++ b/src/scu_clk/wdtclkcr.rs @@ -123,10 +123,10 @@ impl crate::RegisterSpec for WDTCLKCR_SPEC { impl crate::Readable for WDTCLKCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`wdtclkcr::W`](W) writer structure"] impl crate::Writable for WDTCLKCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets WDTCLKCR to value 0"] impl crate::Resettable for WDTCLKCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/ccucon.rs b/src/scu_general/ccucon.rs index a0198072..60b5a7e7 100644 --- a/src/scu_general/ccucon.rs +++ b/src/scu_general/ccucon.rs @@ -409,10 +409,10 @@ impl crate::RegisterSpec for CCUCON_SPEC { impl crate::Readable for CCUCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`ccucon::W`](W) writer structure"] impl crate::Writable for CCUCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CCUCON to value 0"] impl crate::Resettable for CCUCON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/dtscon.rs b/src/scu_general/dtscon.rs index 8398bb4b..d989c863 100644 --- a/src/scu_general/dtscon.rs +++ b/src/scu_general/dtscon.rs @@ -186,10 +186,10 @@ impl crate::RegisterSpec for DTSCON_SPEC { impl crate::Readable for DTSCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`dtscon::W`](W) writer structure"] impl crate::Writable for DTSCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DTSCON to value 0x01"] impl crate::Resettable for DTSCON_SPEC { - const RESET_VALUE: Self::Ux = 0x01; + const RESET_VALUE: u32 = 0x01; } diff --git a/src/scu_general/dtsstat.rs b/src/scu_general/dtsstat.rs index db3a8545..176b1853 100644 --- a/src/scu_general/dtsstat.rs +++ b/src/scu_general/dtsstat.rs @@ -100,5 +100,5 @@ impl crate::RegisterSpec for DTSSTAT_SPEC { impl crate::Readable for DTSSTAT_SPEC {} #[doc = "`reset()` method sets DTSSTAT to value 0"] impl crate::Resettable for DTSSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/g0orcen.rs b/src/scu_general/g0orcen.rs index aaa9850c..21a3d1a9 100644 --- a/src/scu_general/g0orcen.rs +++ b/src/scu_general/g0orcen.rs @@ -153,10 +153,10 @@ impl crate::RegisterSpec for G0ORCEN_SPEC { impl crate::Readable for G0ORCEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`g0orcen::W`](W) writer structure"] impl crate::Writable for G0ORCEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets G0ORCEN to value 0"] impl crate::Resettable for G0ORCEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/g1orcen.rs b/src/scu_general/g1orcen.rs index aad681e4..3e5c6c44 100644 --- a/src/scu_general/g1orcen.rs +++ b/src/scu_general/g1orcen.rs @@ -153,10 +153,10 @@ impl crate::RegisterSpec for G1ORCEN_SPEC { impl crate::Readable for G1ORCEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`g1orcen::W`](W) writer structure"] impl crate::Writable for G1ORCEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets G1ORCEN to value 0"] impl crate::Resettable for G1ORCEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/gpr0.rs b/src/scu_general/gpr0.rs index d3574bbf..e6596867 100644 --- a/src/scu_general/gpr0.rs +++ b/src/scu_general/gpr0.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for GPR0_SPEC { impl crate::Readable for GPR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`gpr0::W`](W) writer structure"] impl crate::Writable for GPR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GPR0 to value 0"] impl crate::Resettable for GPR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/gpr1.rs b/src/scu_general/gpr1.rs index d2cf169d..b631741f 100644 --- a/src/scu_general/gpr1.rs +++ b/src/scu_general/gpr1.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for GPR1_SPEC { impl crate::Readable for GPR1_SPEC {} #[doc = "`write(|w| ..)` method takes [`gpr1::W`](W) writer structure"] impl crate::Writable for GPR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GPR1 to value 0"] impl crate::Resettable for GPR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/id.rs b/src/scu_general/id.rs index 4f2f39be..6077b1c8 100644 --- a/src/scu_general/id.rs +++ b/src/scu_general/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00a0_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00a0_c000; + const RESET_VALUE: u32 = 0x00a0_c000; } diff --git a/src/scu_general/idchip.rs b/src/scu_general/idchip.rs index 2e7f601c..1ce6b30c 100644 --- a/src/scu_general/idchip.rs +++ b/src/scu_general/idchip.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for IDCHIP_SPEC { impl crate::Readable for IDCHIP_SPEC {} #[doc = "`reset()` method sets IDCHIP to value 0"] impl crate::Resettable for IDCHIP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/idmanuf.rs b/src/scu_general/idmanuf.rs index 4e3ea641..9ce0d588 100644 --- a/src/scu_general/idmanuf.rs +++ b/src/scu_general/idmanuf.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for IDMANUF_SPEC { impl crate::Readable for IDMANUF_SPEC {} #[doc = "`reset()` method sets IDMANUF to value 0x1820"] impl crate::Resettable for IDMANUF_SPEC { - const RESET_VALUE: Self::Ux = 0x1820; + const RESET_VALUE: u32 = 0x1820; } diff --git a/src/scu_general/mirrsts.rs b/src/scu_general/mirrsts.rs index b24b55a6..41d505c5 100644 --- a/src/scu_general/mirrsts.rs +++ b/src/scu_general/mirrsts.rs @@ -544,5 +544,5 @@ impl crate::RegisterSpec for MIRRSTS_SPEC { impl crate::Readable for MIRRSTS_SPEC {} #[doc = "`reset()` method sets MIRRSTS to value 0"] impl crate::Resettable for MIRRSTS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/rmacr.rs b/src/scu_general/rmacr.rs index f2005490..3107645b 100644 --- a/src/scu_general/rmacr.rs +++ b/src/scu_general/rmacr.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for RMACR_SPEC { impl crate::Readable for RMACR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rmacr::W`](W) writer structure"] impl crate::Writable for RMACR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RMACR to value 0"] impl crate::Resettable for RMACR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/rmdata.rs b/src/scu_general/rmdata.rs index 4319208f..de9fa71e 100644 --- a/src/scu_general/rmdata.rs +++ b/src/scu_general/rmdata.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for RMDATA_SPEC { impl crate::Readable for RMDATA_SPEC {} #[doc = "`write(|w| ..)` method takes [`rmdata::W`](W) writer structure"] impl crate::Writable for RMDATA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RMDATA to value 0"] impl crate::Resettable for RMDATA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/sdmmcdel.rs b/src/scu_general/sdmmcdel.rs index a1130ebf..58ea113c 100644 --- a/src/scu_general/sdmmcdel.rs +++ b/src/scu_general/sdmmcdel.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for SDMMCDEL_SPEC { impl crate::Readable for SDMMCDEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`sdmmcdel::W`](W) writer structure"] impl crate::Writable for SDMMCDEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SDMMCDEL to value 0"] impl crate::Resettable for SDMMCDEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_general/stcon.rs b/src/scu_general/stcon.rs index c4853e70..e0cfa5d2 100644 --- a/src/scu_general/stcon.rs +++ b/src/scu_general/stcon.rs @@ -235,10 +235,10 @@ impl crate::RegisterSpec for STCON_SPEC { impl crate::Readable for STCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`stcon::W`](W) writer structure"] impl crate::Writable for STCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets STCON to value 0"] impl crate::Resettable for STCON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_hibernate/hdclr.rs b/src/scu_hibernate/hdclr.rs index 73118b3a..a07df9de 100644 --- a/src/scu_hibernate/hdclr.rs +++ b/src/scu_hibernate/hdclr.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for HDCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`hdclr::W`](W) writer structure"] impl crate::Writable for HDCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HDCLR to value 0"] impl crate::Resettable for HDCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_hibernate/hdcr.rs b/src/scu_hibernate/hdcr.rs index 58886677..1d332dbb 100644 --- a/src/scu_hibernate/hdcr.rs +++ b/src/scu_hibernate/hdcr.rs @@ -1051,10 +1051,10 @@ impl crate::RegisterSpec for HDCR_SPEC { impl crate::Readable for HDCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`hdcr::W`](W) writer structure"] impl crate::Writable for HDCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HDCR to value 0x000c_2000"] impl crate::Resettable for HDCR_SPEC { - const RESET_VALUE: Self::Ux = 0x000c_2000; + const RESET_VALUE: u32 = 0x000c_2000; } diff --git a/src/scu_hibernate/hdset.rs b/src/scu_hibernate/hdset.rs index 29e399e5..1e0bc0d7 100644 --- a/src/scu_hibernate/hdset.rs +++ b/src/scu_hibernate/hdset.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for HDSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`hdset::W`](W) writer structure"] impl crate::Writable for HDSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HDSET to value 0"] impl crate::Resettable for HDSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_hibernate/hdstat.rs b/src/scu_hibernate/hdstat.rs index 6f11f3fb..0b28091e 100644 --- a/src/scu_hibernate/hdstat.rs +++ b/src/scu_hibernate/hdstat.rs @@ -216,5 +216,5 @@ impl crate::RegisterSpec for HDSTAT_SPEC { impl crate::Readable for HDSTAT_SPEC {} #[doc = "`reset()` method sets HDSTAT to value 0"] impl crate::Resettable for HDSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_hibernate/oscsictrl.rs b/src/scu_hibernate/oscsictrl.rs index 4be7c569..05cfa29a 100644 --- a/src/scu_hibernate/oscsictrl.rs +++ b/src/scu_hibernate/oscsictrl.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for OSCSICTRL_SPEC { impl crate::Readable for OSCSICTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`oscsictrl::W`](W) writer structure"] impl crate::Writable for OSCSICTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OSCSICTRL to value 0x01"] impl crate::Resettable for OSCSICTRL_SPEC { - const RESET_VALUE: Self::Ux = 0x01; + const RESET_VALUE: u32 = 0x01; } diff --git a/src/scu_hibernate/osculctrl.rs b/src/scu_hibernate/osculctrl.rs index 41a233f8..1a7f7774 100644 --- a/src/scu_hibernate/osculctrl.rs +++ b/src/scu_hibernate/osculctrl.rs @@ -185,10 +185,10 @@ impl crate::RegisterSpec for OSCULCTRL_SPEC { impl crate::Readable for OSCULCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`osculctrl::W`](W) writer structure"] impl crate::Writable for OSCULCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OSCULCTRL to value 0x20"] impl crate::Resettable for OSCULCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0x20; + const RESET_VALUE: u32 = 0x20; } diff --git a/src/scu_hibernate/osculstat.rs b/src/scu_hibernate/osculstat.rs index 47bcb886..6cb65935 100644 --- a/src/scu_hibernate/osculstat.rs +++ b/src/scu_hibernate/osculstat.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for OSCULSTAT_SPEC { impl crate::Readable for OSCULSTAT_SPEC {} #[doc = "`reset()` method sets OSCULSTAT to value 0"] impl crate::Resettable for OSCULSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/nmireqen.rs b/src/scu_interrupt/nmireqen.rs index ade8cc43..7f636c28 100644 --- a/src/scu_interrupt/nmireqen.rs +++ b/src/scu_interrupt/nmireqen.rs @@ -473,10 +473,10 @@ impl crate::RegisterSpec for NMIREQEN_SPEC { impl crate::Readable for NMIREQEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`nmireqen::W`](W) writer structure"] impl crate::Writable for NMIREQEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets NMIREQEN to value 0"] impl crate::Resettable for NMIREQEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/srclr.rs b/src/scu_interrupt/srclr.rs index 83cb37c6..e075893e 100644 --- a/src/scu_interrupt/srclr.rs +++ b/src/scu_interrupt/srclr.rs @@ -574,10 +574,10 @@ impl crate::RegisterSpec for SRCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`srclr::W`](W) writer structure"] impl crate::Writable for SRCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRCLR to value 0"] impl crate::Resettable for SRCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/srmsk.rs b/src/scu_interrupt/srmsk.rs index 2c62f255..7d447d3d 100644 --- a/src/scu_interrupt/srmsk.rs +++ b/src/scu_interrupt/srmsk.rs @@ -985,10 +985,10 @@ impl crate::RegisterSpec for SRMSK_SPEC { impl crate::Readable for SRMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`srmsk::W`](W) writer structure"] impl crate::Writable for SRMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRMSK to value 0"] impl crate::Resettable for SRMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/srraw.rs b/src/scu_interrupt/srraw.rs index c15b3400..947770af 100644 --- a/src/scu_interrupt/srraw.rs +++ b/src/scu_interrupt/srraw.rs @@ -524,5 +524,5 @@ impl crate::RegisterSpec for SRRAW_SPEC { impl crate::Readable for SRRAW_SPEC {} #[doc = "`reset()` method sets SRRAW to value 0"] impl crate::Resettable for SRRAW_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/srset.rs b/src/scu_interrupt/srset.rs index aaf56a95..a021b5d6 100644 --- a/src/scu_interrupt/srset.rs +++ b/src/scu_interrupt/srset.rs @@ -574,10 +574,10 @@ impl crate::RegisterSpec for SRSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`srset::W`](W) writer structure"] impl crate::Writable for SRSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRSET to value 0"] impl crate::Resettable for SRSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_interrupt/srstat.rs b/src/scu_interrupt/srstat.rs index f4f49671..232348af 100644 --- a/src/scu_interrupt/srstat.rs +++ b/src/scu_interrupt/srstat.rs @@ -524,5 +524,5 @@ impl crate::RegisterSpec for SRSTAT_SPEC { impl crate::Readable for SRSTAT_SPEC {} #[doc = "`reset()` method sets SRSTAT to value 0"] impl crate::Resettable for SRSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_osc/clkcalconst.rs b/src/scu_osc/clkcalconst.rs index c2bbda21..8f6d3588 100644 --- a/src/scu_osc/clkcalconst.rs +++ b/src/scu_osc/clkcalconst.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CLKCALCONST_SPEC { impl crate::Readable for CLKCALCONST_SPEC {} #[doc = "`write(|w| ..)` method takes [`clkcalconst::W`](W) writer structure"] impl crate::Writable for CLKCALCONST_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLKCALCONST to value 0"] impl crate::Resettable for CLKCALCONST_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_osc/oschpctrl.rs b/src/scu_osc/oschpctrl.rs index 0556c060..e9b8fb4f 100644 --- a/src/scu_osc/oschpctrl.rs +++ b/src/scu_osc/oschpctrl.rs @@ -264,10 +264,10 @@ impl crate::RegisterSpec for OSCHPCTRL_SPEC { impl crate::Readable for OSCHPCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`oschpctrl::W`](W) writer structure"] impl crate::Writable for OSCHPCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OSCHPCTRL to value 0x33"] impl crate::Resettable for OSCHPCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0x33; + const RESET_VALUE: u32 = 0x33; } diff --git a/src/scu_osc/oschpstat.rs b/src/scu_osc/oschpstat.rs index 5c718c0c..62d71bc0 100644 --- a/src/scu_osc/oschpstat.rs +++ b/src/scu_osc/oschpstat.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for OSCHPSTAT_SPEC { impl crate::Readable for OSCHPSTAT_SPEC {} #[doc = "`reset()` method sets OSCHPSTAT to value 0"] impl crate::Resettable for OSCHPSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/mchkcon.rs b/src/scu_parity/mchkcon.rs index 1be7571c..6e05d73a 100644 --- a/src/scu_parity/mchkcon.rs +++ b/src/scu_parity/mchkcon.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for MCHKCON_SPEC { impl crate::Readable for MCHKCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`mchkcon::W`](W) writer structure"] impl crate::Writable for MCHKCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MCHKCON to value 0"] impl crate::Resettable for MCHKCON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/peen.rs b/src/scu_parity/peen.rs index c3b724df..2d869462 100644 --- a/src/scu_parity/peen.rs +++ b/src/scu_parity/peen.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for PEEN_SPEC { impl crate::Readable for PEEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`peen::W`](W) writer structure"] impl crate::Writable for PEEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PEEN to value 0"] impl crate::Resettable for PEEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/peflag.rs b/src/scu_parity/peflag.rs index 33511244..c571842e 100644 --- a/src/scu_parity/peflag.rs +++ b/src/scu_parity/peflag.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for PEFLAG_SPEC { impl crate::Readable for PEFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`peflag::W`](W) writer structure"] impl crate::Writable for PEFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PEFLAG to value 0"] impl crate::Resettable for PEFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/persten.rs b/src/scu_parity/persten.rs index 1857e1fb..43543104 100644 --- a/src/scu_parity/persten.rs +++ b/src/scu_parity/persten.rs @@ -89,10 +89,10 @@ impl crate::RegisterSpec for PERSTEN_SPEC { impl crate::Readable for PERSTEN_SPEC {} #[doc = "`write(|w| ..)` method takes [`persten::W`](W) writer structure"] impl crate::Writable for PERSTEN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PERSTEN to value 0"] impl crate::Resettable for PERSTEN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/pete.rs b/src/scu_parity/pete.rs index d2e6f9d4..4b7d395c 100644 --- a/src/scu_parity/pete.rs +++ b/src/scu_parity/pete.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for PETE_SPEC { impl crate::Readable for PETE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pete::W`](W) writer structure"] impl crate::Writable for PETE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PETE to value 0"] impl crate::Resettable for PETE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/pmtpr.rs b/src/scu_parity/pmtpr.rs index 206f569c..994ff13a 100644 --- a/src/scu_parity/pmtpr.rs +++ b/src/scu_parity/pmtpr.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for PMTPR_SPEC { impl crate::Readable for PMTPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`pmtpr::W`](W) writer structure"] impl crate::Writable for PMTPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PMTPR to value 0"] impl crate::Resettable for PMTPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_parity/pmtsr.rs b/src/scu_parity/pmtsr.rs index cdd74232..accc40cb 100644 --- a/src/scu_parity/pmtsr.rs +++ b/src/scu_parity/pmtsr.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for PMTSR_SPEC { impl crate::Readable for PMTSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`pmtsr::W`](W) writer structure"] impl crate::Writable for PMTSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PMTSR to value 0"] impl crate::Resettable for PMTSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_pll/clkmxstat.rs b/src/scu_pll/clkmxstat.rs index e615fa50..a4d84b30 100644 --- a/src/scu_pll/clkmxstat.rs +++ b/src/scu_pll/clkmxstat.rs @@ -57,5 +57,5 @@ impl crate::RegisterSpec for CLKMXSTAT_SPEC { impl crate::Readable for CLKMXSTAT_SPEC {} #[doc = "`reset()` method sets CLKMXSTAT to value 0"] impl crate::Resettable for CLKMXSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_pll/pllcon0.rs b/src/scu_pll/pllcon0.rs index 6d323115..c0cfa9c7 100644 --- a/src/scu_pll/pllcon0.rs +++ b/src/scu_pll/pllcon0.rs @@ -609,10 +609,10 @@ impl crate::RegisterSpec for PLLCON0_SPEC { impl crate::Readable for PLLCON0_SPEC {} #[doc = "`write(|w| ..)` method takes [`pllcon0::W`](W) writer structure"] impl crate::Writable for PLLCON0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PLLCON0 to value 0x0003_0003"] impl crate::Resettable for PLLCON0_SPEC { - const RESET_VALUE: Self::Ux = 0x0003_0003; + const RESET_VALUE: u32 = 0x0003_0003; } diff --git a/src/scu_pll/pllcon1.rs b/src/scu_pll/pllcon1.rs index 90c14383..10547a80 100644 --- a/src/scu_pll/pllcon1.rs +++ b/src/scu_pll/pllcon1.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for PLLCON1_SPEC { impl crate::Readable for PLLCON1_SPEC {} #[doc = "`write(|w| ..)` method takes [`pllcon1::W`](W) writer structure"] impl crate::Writable for PLLCON1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PLLCON1 to value 0"] impl crate::Resettable for PLLCON1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_pll/pllcon2.rs b/src/scu_pll/pllcon2.rs index 342c510d..4b2bd96f 100644 --- a/src/scu_pll/pllcon2.rs +++ b/src/scu_pll/pllcon2.rs @@ -153,10 +153,10 @@ impl crate::RegisterSpec for PLLCON2_SPEC { impl crate::Readable for PLLCON2_SPEC {} #[doc = "`write(|w| ..)` method takes [`pllcon2::W`](W) writer structure"] impl crate::Writable for PLLCON2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PLLCON2 to value 0x01"] impl crate::Resettable for PLLCON2_SPEC { - const RESET_VALUE: Self::Ux = 0x01; + const RESET_VALUE: u32 = 0x01; } diff --git a/src/scu_pll/pllstat.rs b/src/scu_pll/pllstat.rs index a790af4e..a7738e65 100644 --- a/src/scu_pll/pllstat.rs +++ b/src/scu_pll/pllstat.rs @@ -380,5 +380,5 @@ impl crate::RegisterSpec for PLLSTAT_SPEC { impl crate::Readable for PLLSTAT_SPEC {} #[doc = "`reset()` method sets PLLSTAT to value 0x02"] impl crate::Resettable for PLLSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/scu_pll/usbpllcon.rs b/src/scu_pll/usbpllcon.rs index ce729208..83d7916e 100644 --- a/src/scu_pll/usbpllcon.rs +++ b/src/scu_pll/usbpllcon.rs @@ -447,10 +447,10 @@ impl crate::RegisterSpec for USBPLLCON_SPEC { impl crate::Readable for USBPLLCON_SPEC {} #[doc = "`write(|w| ..)` method takes [`usbpllcon::W`](W) writer structure"] impl crate::Writable for USBPLLCON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets USBPLLCON to value 0x0001_0003"] impl crate::Resettable for USBPLLCON_SPEC { - const RESET_VALUE: Self::Ux = 0x0001_0003; + const RESET_VALUE: u32 = 0x0001_0003; } diff --git a/src/scu_pll/usbpllstat.rs b/src/scu_pll/usbpllstat.rs index 44ad7e10..1541c04a 100644 --- a/src/scu_pll/usbpllstat.rs +++ b/src/scu_pll/usbpllstat.rs @@ -216,5 +216,5 @@ impl crate::RegisterSpec for USBPLLSTAT_SPEC { impl crate::Readable for USBPLLSTAT_SPEC {} #[doc = "`reset()` method sets USBPLLSTAT to value 0x02"] impl crate::Resettable for USBPLLSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/scu_power/evrstat.rs b/src/scu_power/evrstat.rs index 852da7be..26589d68 100644 --- a/src/scu_power/evrstat.rs +++ b/src/scu_power/evrstat.rs @@ -52,5 +52,5 @@ impl crate::RegisterSpec for EVRSTAT_SPEC { impl crate::Readable for EVRSTAT_SPEC {} #[doc = "`reset()` method sets EVRSTAT to value 0"] impl crate::Resettable for EVRSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_power/evrvadcstat.rs b/src/scu_power/evrvadcstat.rs index 0a26ca84..15ae2e09 100644 --- a/src/scu_power/evrvadcstat.rs +++ b/src/scu_power/evrvadcstat.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for EVRVADCSTAT_SPEC { impl crate::Readable for EVRVADCSTAT_SPEC {} #[doc = "`reset()` method sets EVRVADCSTAT to value 0"] impl crate::Resettable for EVRVADCSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_power/pwrclr.rs b/src/scu_power/pwrclr.rs index cab0232d..24cafff0 100644 --- a/src/scu_power/pwrclr.rs +++ b/src/scu_power/pwrclr.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for PWRCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`pwrclr::W`](W) writer structure"] impl crate::Writable for PWRCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PWRCLR to value 0"] impl crate::Resettable for PWRCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_power/pwrmon.rs b/src/scu_power/pwrmon.rs index 0f2f913d..3b36c6c2 100644 --- a/src/scu_power/pwrmon.rs +++ b/src/scu_power/pwrmon.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for PWRMON_SPEC { impl crate::Readable for PWRMON_SPEC {} #[doc = "`write(|w| ..)` method takes [`pwrmon::W`](W) writer structure"] impl crate::Writable for PWRMON_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PWRMON to value 0"] impl crate::Resettable for PWRMON_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_power/pwrset.rs b/src/scu_power/pwrset.rs index db26d378..5040c621 100644 --- a/src/scu_power/pwrset.rs +++ b/src/scu_power/pwrset.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for PWRSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`pwrset::W`](W) writer structure"] impl crate::Writable for PWRSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PWRSET to value 0"] impl crate::Resettable for PWRSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_power/pwrstat.rs b/src/scu_power/pwrstat.rs index 88b09063..2980004f 100644 --- a/src/scu_power/pwrstat.rs +++ b/src/scu_power/pwrstat.rs @@ -175,5 +175,5 @@ impl crate::RegisterSpec for PWRSTAT_SPEC { impl crate::Readable for PWRSTAT_SPEC {} #[doc = "`reset()` method sets PWRSTAT to value 0"] impl crate::Resettable for PWRSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prclr0.rs b/src/scu_reset/prclr0.rs index 08c5c8f9..125a3d21 100644 --- a/src/scu_reset/prclr0.rs +++ b/src/scu_reset/prclr0.rs @@ -426,10 +426,10 @@ impl crate::RegisterSpec for PRCLR0_SPEC { } #[doc = "`write(|w| ..)` method takes [`prclr0::W`](W) writer structure"] impl crate::Writable for PRCLR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRCLR0 to value 0"] impl crate::Resettable for PRCLR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prclr1.rs b/src/scu_reset/prclr1.rs index deac1520..46c96252 100644 --- a/src/scu_reset/prclr1.rs +++ b/src/scu_reset/prclr1.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for PRCLR1_SPEC { } #[doc = "`write(|w| ..)` method takes [`prclr1::W`](W) writer structure"] impl crate::Writable for PRCLR1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRCLR1 to value 0"] impl crate::Resettable for PRCLR1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prclr2.rs b/src/scu_reset/prclr2.rs index f9af2607..8d3c4fa8 100644 --- a/src/scu_reset/prclr2.rs +++ b/src/scu_reset/prclr2.rs @@ -241,10 +241,10 @@ impl crate::RegisterSpec for PRCLR2_SPEC { } #[doc = "`write(|w| ..)` method takes [`prclr2::W`](W) writer structure"] impl crate::Writable for PRCLR2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRCLR2 to value 0"] impl crate::Resettable for PRCLR2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prclr3.rs b/src/scu_reset/prclr3.rs index c7204671..70475bfa 100644 --- a/src/scu_reset/prclr3.rs +++ b/src/scu_reset/prclr3.rs @@ -56,10 +56,10 @@ impl crate::RegisterSpec for PRCLR3_SPEC { } #[doc = "`write(|w| ..)` method takes [`prclr3::W`](W) writer structure"] impl crate::Writable for PRCLR3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRCLR3 to value 0"] impl crate::Resettable for PRCLR3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prset0.rs b/src/scu_reset/prset0.rs index 147012b2..d6e019b6 100644 --- a/src/scu_reset/prset0.rs +++ b/src/scu_reset/prset0.rs @@ -426,10 +426,10 @@ impl crate::RegisterSpec for PRSET0_SPEC { } #[doc = "`write(|w| ..)` method takes [`prset0::W`](W) writer structure"] impl crate::Writable for PRSET0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRSET0 to value 0"] impl crate::Resettable for PRSET0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prset1.rs b/src/scu_reset/prset1.rs index 03711e0b..f53cf759 100644 --- a/src/scu_reset/prset1.rs +++ b/src/scu_reset/prset1.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for PRSET1_SPEC { } #[doc = "`write(|w| ..)` method takes [`prset1::W`](W) writer structure"] impl crate::Writable for PRSET1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRSET1 to value 0"] impl crate::Resettable for PRSET1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prset2.rs b/src/scu_reset/prset2.rs index 15e75855..24232765 100644 --- a/src/scu_reset/prset2.rs +++ b/src/scu_reset/prset2.rs @@ -241,10 +241,10 @@ impl crate::RegisterSpec for PRSET2_SPEC { } #[doc = "`write(|w| ..)` method takes [`prset2::W`](W) writer structure"] impl crate::Writable for PRSET2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRSET2 to value 0"] impl crate::Resettable for PRSET2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prset3.rs b/src/scu_reset/prset3.rs index e1668d78..f8830095 100644 --- a/src/scu_reset/prset3.rs +++ b/src/scu_reset/prset3.rs @@ -56,10 +56,10 @@ impl crate::RegisterSpec for PRSET3_SPEC { } #[doc = "`write(|w| ..)` method takes [`prset3::W`](W) writer structure"] impl crate::Writable for PRSET3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PRSET3 to value 0"] impl crate::Resettable for PRSET3_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/prstat0.rs b/src/scu_reset/prstat0.rs index 3dd427a2..5d07d968 100644 --- a/src/scu_reset/prstat0.rs +++ b/src/scu_reset/prstat0.rs @@ -462,5 +462,5 @@ impl crate::RegisterSpec for PRSTAT0_SPEC { impl crate::Readable for PRSTAT0_SPEC {} #[doc = "`reset()` method sets PRSTAT0 to value 0x0001_0f9f"] impl crate::Resettable for PRSTAT0_SPEC { - const RESET_VALUE: Self::Ux = 0x0001_0f9f; + const RESET_VALUE: u32 = 0x0001_0f9f; } diff --git a/src/scu_reset/prstat1.rs b/src/scu_reset/prstat1.rs index bd93bb81..3f0ce794 100644 --- a/src/scu_reset/prstat1.rs +++ b/src/scu_reset/prstat1.rs @@ -339,5 +339,5 @@ impl crate::RegisterSpec for PRSTAT1_SPEC { impl crate::Readable for PRSTAT1_SPEC {} #[doc = "`reset()` method sets PRSTAT1 to value 0x01f9"] impl crate::Resettable for PRSTAT1_SPEC { - const RESET_VALUE: Self::Ux = 0x01f9; + const RESET_VALUE: u32 = 0x01f9; } diff --git a/src/scu_reset/prstat2.rs b/src/scu_reset/prstat2.rs index fd5ec6ca..fff5f842 100644 --- a/src/scu_reset/prstat2.rs +++ b/src/scu_reset/prstat2.rs @@ -257,5 +257,5 @@ impl crate::RegisterSpec for PRSTAT2_SPEC { impl crate::Readable for PRSTAT2_SPEC {} #[doc = "`reset()` method sets PRSTAT2 to value 0xf6"] impl crate::Resettable for PRSTAT2_SPEC { - const RESET_VALUE: Self::Ux = 0xf6; + const RESET_VALUE: u32 = 0xf6; } diff --git a/src/scu_reset/prstat3.rs b/src/scu_reset/prstat3.rs index c7c80eb7..4bd0163e 100644 --- a/src/scu_reset/prstat3.rs +++ b/src/scu_reset/prstat3.rs @@ -52,5 +52,5 @@ impl crate::RegisterSpec for PRSTAT3_SPEC { impl crate::Readable for PRSTAT3_SPEC {} #[doc = "`reset()` method sets PRSTAT3 to value 0x04"] impl crate::Resettable for PRSTAT3_SPEC { - const RESET_VALUE: Self::Ux = 0x04; + const RESET_VALUE: u32 = 0x04; } diff --git a/src/scu_reset/rstclr.rs b/src/scu_reset/rstclr.rs index 20b52a2c..718993f6 100644 --- a/src/scu_reset/rstclr.rs +++ b/src/scu_reset/rstclr.rs @@ -167,10 +167,10 @@ impl crate::RegisterSpec for RSTCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`rstclr::W`](W) writer structure"] impl crate::Writable for RSTCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RSTCLR to value 0"] impl crate::Resettable for RSTCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/rstset.rs b/src/scu_reset/rstset.rs index 29e5e91d..c829f8d5 100644 --- a/src/scu_reset/rstset.rs +++ b/src/scu_reset/rstset.rs @@ -130,10 +130,10 @@ impl crate::RegisterSpec for RSTSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`rstset::W`](W) writer structure"] impl crate::Writable for RSTSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RSTSET to value 0"] impl crate::Resettable for RSTSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_reset/rststat.rs b/src/scu_reset/rststat.rs index 01be0802..6a905cc6 100644 --- a/src/scu_reset/rststat.rs +++ b/src/scu_reset/rststat.rs @@ -220,5 +220,5 @@ impl crate::RegisterSpec for RSTSTAT_SPEC { impl crate::Readable for RSTSTAT_SPEC {} #[doc = "`reset()` method sets RSTSTAT to value 0"] impl crate::Resettable for RSTSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_trap/trapclr.rs b/src/scu_trap/trapclr.rs index 91dbeeea..19e00f36 100644 --- a/src/scu_trap/trapclr.rs +++ b/src/scu_trap/trapclr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for TRAPCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`trapclr::W`](W) writer structure"] impl crate::Writable for TRAPCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRAPCLR to value 0"] impl crate::Resettable for TRAPCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_trap/trapdis.rs b/src/scu_trap/trapdis.rs index aacb04af..acc94ec5 100644 --- a/src/scu_trap/trapdis.rs +++ b/src/scu_trap/trapdis.rs @@ -537,10 +537,10 @@ impl crate::RegisterSpec for TRAPDIS_SPEC { impl crate::Readable for TRAPDIS_SPEC {} #[doc = "`write(|w| ..)` method takes [`trapdis::W`](W) writer structure"] impl crate::Writable for TRAPDIS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRAPDIS to value 0x01ff"] impl crate::Resettable for TRAPDIS_SPEC { - const RESET_VALUE: Self::Ux = 0x01ff; + const RESET_VALUE: u32 = 0x01ff; } diff --git a/src/scu_trap/trapraw.rs b/src/scu_trap/trapraw.rs index 6bf23018..ed325526 100644 --- a/src/scu_trap/trapraw.rs +++ b/src/scu_trap/trapraw.rs @@ -339,5 +339,5 @@ impl crate::RegisterSpec for TRAPRAW_SPEC { impl crate::Readable for TRAPRAW_SPEC {} #[doc = "`reset()` method sets TRAPRAW to value 0"] impl crate::Resettable for TRAPRAW_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_trap/trapset.rs b/src/scu_trap/trapset.rs index 2a81ef33..b1a62226 100644 --- a/src/scu_trap/trapset.rs +++ b/src/scu_trap/trapset.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for TRAPSET_SPEC { } #[doc = "`write(|w| ..)` method takes [`trapset::W`](W) writer structure"] impl crate::Writable for TRAPSET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRAPSET to value 0"] impl crate::Resettable for TRAPSET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/scu_trap/trapstat.rs b/src/scu_trap/trapstat.rs index 10d41ff7..91a4bb4d 100644 --- a/src/scu_trap/trapstat.rs +++ b/src/scu_trap/trapstat.rs @@ -339,5 +339,5 @@ impl crate::RegisterSpec for TRAPSTAT_SPEC { impl crate::Readable for TRAPSTAT_SPEC {} #[doc = "`reset()` method sets TRAPSTAT to value 0"] impl crate::Resettable for TRAPSTAT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/acmd_err_status.rs b/src/sdmmc/acmd_err_status.rs index b583e6e7..36114b31 100644 --- a/src/sdmmc/acmd_err_status.rs +++ b/src/sdmmc/acmd_err_status.rs @@ -257,5 +257,5 @@ impl crate::RegisterSpec for ACMD_ERR_STATUS_SPEC { impl crate::Readable for ACMD_ERR_STATUS_SPEC {} #[doc = "`reset()` method sets ACMD_ERR_STATUS to value 0"] impl crate::Resettable for ACMD_ERR_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/argument1.rs b/src/sdmmc/argument1.rs index a6fc211d..79186c6d 100644 --- a/src/sdmmc/argument1.rs +++ b/src/sdmmc/argument1.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for ARGUMENT1_SPEC { impl crate::Readable for ARGUMENT1_SPEC {} #[doc = "`write(|w| ..)` method takes [`argument1::W`](W) writer structure"] impl crate::Writable for ARGUMENT1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ARGUMENT1 to value 0"] impl crate::Resettable for ARGUMENT1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/block_count.rs b/src/sdmmc/block_count.rs index d274c337..b1a50e40 100644 --- a/src/sdmmc/block_count.rs +++ b/src/sdmmc/block_count.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for BLOCK_COUNT_SPEC { impl crate::Readable for BLOCK_COUNT_SPEC {} #[doc = "`write(|w| ..)` method takes [`block_count::W`](W) writer structure"] impl crate::Writable for BLOCK_COUNT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets BLOCK_COUNT to value 0"] impl crate::Resettable for BLOCK_COUNT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/block_gap_ctrl.rs b/src/sdmmc/block_gap_ctrl.rs index e246ff99..1e457fd0 100644 --- a/src/sdmmc/block_gap_ctrl.rs +++ b/src/sdmmc/block_gap_ctrl.rs @@ -296,10 +296,10 @@ impl crate::RegisterSpec for BLOCK_GAP_CTRL_SPEC { impl crate::Readable for BLOCK_GAP_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`block_gap_ctrl::W`](W) writer structure"] impl crate::Writable for BLOCK_GAP_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets BLOCK_GAP_CTRL to value 0"] impl crate::Resettable for BLOCK_GAP_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/sdmmc/block_size.rs b/src/sdmmc/block_size.rs index 1743790c..63db9937 100644 --- a/src/sdmmc/block_size.rs +++ b/src/sdmmc/block_size.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for BLOCK_SIZE_SPEC { impl crate::Readable for BLOCK_SIZE_SPEC {} #[doc = "`write(|w| ..)` method takes [`block_size::W`](W) writer structure"] impl crate::Writable for BLOCK_SIZE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets BLOCK_SIZE to value 0"] impl crate::Resettable for BLOCK_SIZE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/capabilities.rs b/src/sdmmc/capabilities.rs index f0c478b5..7ff27d06 100644 --- a/src/sdmmc/capabilities.rs +++ b/src/sdmmc/capabilities.rs @@ -537,5 +537,5 @@ impl crate::RegisterSpec for CAPABILITIES_SPEC { impl crate::Readable for CAPABILITIES_SPEC {} #[doc = "`reset()` method sets CAPABILITIES to value 0x01a0_30b0"] impl crate::Resettable for CAPABILITIES_SPEC { - const RESET_VALUE: Self::Ux = 0x01a0_30b0; + const RESET_VALUE: u32 = 0x01a0_30b0; } diff --git a/src/sdmmc/capabilities_hi.rs b/src/sdmmc/capabilities_hi.rs index c2608964..8ab9aa51 100644 --- a/src/sdmmc/capabilities_hi.rs +++ b/src/sdmmc/capabilities_hi.rs @@ -363,5 +363,5 @@ impl crate::RegisterSpec for CAPABILITIES_HI_SPEC { impl crate::Readable for CAPABILITIES_HI_SPEC {} #[doc = "`reset()` method sets CAPABILITIES_HI to value 0x0300_0000"] impl crate::Resettable for CAPABILITIES_HI_SPEC { - const RESET_VALUE: Self::Ux = 0x0300_0000; + const RESET_VALUE: u32 = 0x0300_0000; } diff --git a/src/sdmmc/clock_ctrl.rs b/src/sdmmc/clock_ctrl.rs index ad191d86..8fce0466 100644 --- a/src/sdmmc/clock_ctrl.rs +++ b/src/sdmmc/clock_ctrl.rs @@ -355,10 +355,10 @@ impl crate::RegisterSpec for CLOCK_CTRL_SPEC { impl crate::Readable for CLOCK_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`clock_ctrl::W`](W) writer structure"] impl crate::Writable for CLOCK_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets CLOCK_CTRL to value 0"] impl crate::Resettable for CLOCK_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/command.rs b/src/sdmmc/command.rs index b1406cb2..b031a2ae 100644 --- a/src/sdmmc/command.rs +++ b/src/sdmmc/command.rs @@ -424,10 +424,10 @@ impl crate::RegisterSpec for COMMAND_SPEC { impl crate::Readable for COMMAND_SPEC {} #[doc = "`write(|w| ..)` method takes [`command::W`](W) writer structure"] impl crate::Writable for COMMAND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets COMMAND to value 0"] impl crate::Resettable for COMMAND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/data_buffer.rs b/src/sdmmc/data_buffer.rs index 37026243..1b15af16 100644 --- a/src/sdmmc/data_buffer.rs +++ b/src/sdmmc/data_buffer.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DATA_BUFFER_SPEC { impl crate::Readable for DATA_BUFFER_SPEC {} #[doc = "`write(|w| ..)` method takes [`data_buffer::W`](W) writer structure"] impl crate::Writable for DATA_BUFFER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DATA_BUFFER to value 0"] impl crate::Resettable for DATA_BUFFER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/debug_sel.rs b/src/sdmmc/debug_sel.rs index 679031e5..ec1c2f7e 100644 --- a/src/sdmmc/debug_sel.rs +++ b/src/sdmmc/debug_sel.rs @@ -56,10 +56,10 @@ impl crate::RegisterSpec for DEBUG_SEL_SPEC { } #[doc = "`write(|w| ..)` method takes [`debug_sel::W`](W) writer structure"] impl crate::Writable for DEBUG_SEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DEBUG_SEL to value 0"] impl crate::Resettable for DEBUG_SEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/en_int_signal_err.rs b/src/sdmmc/en_int_signal_err.rs index 797db6a7..ade71175 100644 --- a/src/sdmmc/en_int_signal_err.rs +++ b/src/sdmmc/en_int_signal_err.rs @@ -729,10 +729,10 @@ impl crate::RegisterSpec for EN_INT_SIGNAL_ERR_SPEC { impl crate::Readable for EN_INT_SIGNAL_ERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`en_int_signal_err::W`](W) writer structure"] impl crate::Writable for EN_INT_SIGNAL_ERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets EN_INT_SIGNAL_ERR to value 0"] impl crate::Resettable for EN_INT_SIGNAL_ERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/en_int_signal_norm.rs b/src/sdmmc/en_int_signal_norm.rs index 9461a7fd..192ce3c8 100644 --- a/src/sdmmc/en_int_signal_norm.rs +++ b/src/sdmmc/en_int_signal_norm.rs @@ -544,10 +544,10 @@ impl crate::RegisterSpec for EN_INT_SIGNAL_NORM_SPEC { impl crate::Readable for EN_INT_SIGNAL_NORM_SPEC {} #[doc = "`write(|w| ..)` method takes [`en_int_signal_norm::W`](W) writer structure"] impl crate::Writable for EN_INT_SIGNAL_NORM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets EN_INT_SIGNAL_NORM to value 0"] impl crate::Resettable for EN_INT_SIGNAL_NORM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/en_int_status_err.rs b/src/sdmmc/en_int_status_err.rs index ca97a512..def823bc 100644 --- a/src/sdmmc/en_int_status_err.rs +++ b/src/sdmmc/en_int_status_err.rs @@ -729,10 +729,10 @@ impl crate::RegisterSpec for EN_INT_STATUS_ERR_SPEC { impl crate::Readable for EN_INT_STATUS_ERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`en_int_status_err::W`](W) writer structure"] impl crate::Writable for EN_INT_STATUS_ERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets EN_INT_STATUS_ERR to value 0"] impl crate::Resettable for EN_INT_STATUS_ERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/en_int_status_norm.rs b/src/sdmmc/en_int_status_norm.rs index f0d2ff63..18593a9f 100644 --- a/src/sdmmc/en_int_status_norm.rs +++ b/src/sdmmc/en_int_status_norm.rs @@ -544,10 +544,10 @@ impl crate::RegisterSpec for EN_INT_STATUS_NORM_SPEC { impl crate::Readable for EN_INT_STATUS_NORM_SPEC {} #[doc = "`write(|w| ..)` method takes [`en_int_status_norm::W`](W) writer structure"] impl crate::Writable for EN_INT_STATUS_NORM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets EN_INT_STATUS_NORM to value 0"] impl crate::Resettable for EN_INT_STATUS_NORM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/force_event_acmd_err_status.rs b/src/sdmmc/force_event_acmd_err_status.rs index 07fe3308..51435fb8 100644 --- a/src/sdmmc/force_event_acmd_err_status.rs +++ b/src/sdmmc/force_event_acmd_err_status.rs @@ -241,10 +241,10 @@ impl crate::RegisterSpec for FORCE_EVENT_ACMD_ERR_STATUS_SPEC { } #[doc = "`write(|w| ..)` method takes [`force_event_acmd_err_status::W`](W) writer structure"] impl crate::Writable for FORCE_EVENT_ACMD_ERR_STATUS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets FORCE_EVENT_ACMD_ERR_STATUS to value 0"] impl crate::Resettable for FORCE_EVENT_ACMD_ERR_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/force_event_err_status.rs b/src/sdmmc/force_event_err_status.rs index e791480c..4ce4b000 100644 --- a/src/sdmmc/force_event_err_status.rs +++ b/src/sdmmc/force_event_err_status.rs @@ -426,10 +426,10 @@ impl crate::RegisterSpec for FORCE_EVENT_ERR_STATUS_SPEC { } #[doc = "`write(|w| ..)` method takes [`force_event_err_status::W`](W) writer structure"] impl crate::Writable for FORCE_EVENT_ERR_STATUS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets FORCE_EVENT_ERR_STATUS to value 0"] impl crate::Resettable for FORCE_EVENT_ERR_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/host_ctrl.rs b/src/sdmmc/host_ctrl.rs index f2bbac49..856fec8b 100644 --- a/src/sdmmc/host_ctrl.rs +++ b/src/sdmmc/host_ctrl.rs @@ -409,10 +409,10 @@ impl crate::RegisterSpec for HOST_CTRL_SPEC { impl crate::Readable for HOST_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`host_ctrl::W`](W) writer structure"] impl crate::Writable for HOST_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets HOST_CTRL to value 0"] impl crate::Resettable for HOST_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/sdmmc/int_status_err.rs b/src/sdmmc/int_status_err.rs index 8e1626b6..050b5104 100644 --- a/src/sdmmc/int_status_err.rs +++ b/src/sdmmc/int_status_err.rs @@ -665,10 +665,10 @@ impl crate::RegisterSpec for INT_STATUS_ERR_SPEC { impl crate::Readable for INT_STATUS_ERR_SPEC {} #[doc = "`write(|w| ..)` method takes [`int_status_err::W`](W) writer structure"] impl crate::Writable for INT_STATUS_ERR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets INT_STATUS_ERR to value 0"] impl crate::Resettable for INT_STATUS_ERR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/int_status_norm.rs b/src/sdmmc/int_status_norm.rs index 225d4a29..1a611654 100644 --- a/src/sdmmc/int_status_norm.rs +++ b/src/sdmmc/int_status_norm.rs @@ -555,10 +555,10 @@ impl crate::RegisterSpec for INT_STATUS_NORM_SPEC { impl crate::Readable for INT_STATUS_NORM_SPEC {} #[doc = "`write(|w| ..)` method takes [`int_status_norm::W`](W) writer structure"] impl crate::Writable for INT_STATUS_NORM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets INT_STATUS_NORM to value 0"] impl crate::Resettable for INT_STATUS_NORM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/max_current_cap.rs b/src/sdmmc/max_current_cap.rs index f7d5fdee..eef16e3f 100644 --- a/src/sdmmc/max_current_cap.rs +++ b/src/sdmmc/max_current_cap.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for MAX_CURRENT_CAP_SPEC { impl crate::Readable for MAX_CURRENT_CAP_SPEC {} #[doc = "`reset()` method sets MAX_CURRENT_CAP to value 0x01"] impl crate::Resettable for MAX_CURRENT_CAP_SPEC { - const RESET_VALUE: Self::Ux = 0x01; + const RESET_VALUE: u32 = 0x01; } diff --git a/src/sdmmc/power_ctrl.rs b/src/sdmmc/power_ctrl.rs index e24dd9c1..4d1bdf41 100644 --- a/src/sdmmc/power_ctrl.rs +++ b/src/sdmmc/power_ctrl.rs @@ -161,10 +161,10 @@ impl crate::RegisterSpec for POWER_CTRL_SPEC { impl crate::Readable for POWER_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`power_ctrl::W`](W) writer structure"] impl crate::Writable for POWER_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets POWER_CTRL to value 0"] impl crate::Resettable for POWER_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/sdmmc/present_state.rs b/src/sdmmc/present_state.rs index a8bc7ad8..c00da038 100644 --- a/src/sdmmc/present_state.rs +++ b/src/sdmmc/present_state.rs @@ -449,5 +449,5 @@ impl crate::RegisterSpec for PRESENT_STATE_SPEC { impl crate::Readable for PRESENT_STATE_SPEC {} #[doc = "`reset()` method sets PRESENT_STATE to value 0"] impl crate::Resettable for PRESENT_STATE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/response0.rs b/src/sdmmc/response0.rs index b745a916..4b51d515 100644 --- a/src/sdmmc/response0.rs +++ b/src/sdmmc/response0.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for RESPONSE0_SPEC { impl crate::Readable for RESPONSE0_SPEC {} #[doc = "`reset()` method sets RESPONSE0 to value 0"] impl crate::Resettable for RESPONSE0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/response2.rs b/src/sdmmc/response2.rs index 44c1d9bd..abb84948 100644 --- a/src/sdmmc/response2.rs +++ b/src/sdmmc/response2.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for RESPONSE2_SPEC { impl crate::Readable for RESPONSE2_SPEC {} #[doc = "`reset()` method sets RESPONSE2 to value 0"] impl crate::Resettable for RESPONSE2_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/response4.rs b/src/sdmmc/response4.rs index 43c92d9f..c80bad7e 100644 --- a/src/sdmmc/response4.rs +++ b/src/sdmmc/response4.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for RESPONSE4_SPEC { impl crate::Readable for RESPONSE4_SPEC {} #[doc = "`reset()` method sets RESPONSE4 to value 0"] impl crate::Resettable for RESPONSE4_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/response6.rs b/src/sdmmc/response6.rs index 9956be54..01b9d7b3 100644 --- a/src/sdmmc/response6.rs +++ b/src/sdmmc/response6.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for RESPONSE6_SPEC { impl crate::Readable for RESPONSE6_SPEC {} #[doc = "`reset()` method sets RESPONSE6 to value 0"] impl crate::Resettable for RESPONSE6_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/slot_int_status.rs b/src/sdmmc/slot_int_status.rs index a81116da..47f9a274 100644 --- a/src/sdmmc/slot_int_status.rs +++ b/src/sdmmc/slot_int_status.rs @@ -49,5 +49,5 @@ impl crate::RegisterSpec for SLOT_INT_STATUS_SPEC { impl crate::Readable for SLOT_INT_STATUS_SPEC {} #[doc = "`reset()` method sets SLOT_INT_STATUS to value 0"] impl crate::Resettable for SLOT_INT_STATUS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/spi.rs b/src/sdmmc/spi.rs index 5367f08e..49af9143 100644 --- a/src/sdmmc/spi.rs +++ b/src/sdmmc/spi.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for SPI_SPEC { impl crate::Readable for SPI_SPEC {} #[doc = "`write(|w| ..)` method takes [`spi::W`](W) writer structure"] impl crate::Writable for SPI_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SPI to value 0"] impl crate::Resettable for SPI_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/sdmmc/sw_reset.rs b/src/sdmmc/sw_reset.rs index b91a4d20..2521a71e 100644 --- a/src/sdmmc/sw_reset.rs +++ b/src/sdmmc/sw_reset.rs @@ -168,10 +168,10 @@ impl crate::RegisterSpec for SW_RESET_SPEC { impl crate::Readable for SW_RESET_SPEC {} #[doc = "`write(|w| ..)` method takes [`sw_reset::W`](W) writer structure"] impl crate::Writable for SW_RESET_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets SW_RESET to value 0"] impl crate::Resettable for SW_RESET_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/sdmmc/timeout_ctrl.rs b/src/sdmmc/timeout_ctrl.rs index e42c98c0..d1180267 100644 --- a/src/sdmmc/timeout_ctrl.rs +++ b/src/sdmmc/timeout_ctrl.rs @@ -108,10 +108,10 @@ impl crate::RegisterSpec for TIMEOUT_CTRL_SPEC { impl crate::Readable for TIMEOUT_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`timeout_ctrl::W`](W) writer structure"] impl crate::Writable for TIMEOUT_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets TIMEOUT_CTRL to value 0"] impl crate::Resettable for TIMEOUT_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/sdmmc/transfer_mode.rs b/src/sdmmc/transfer_mode.rs index 9a3431f1..88b2427e 100644 --- a/src/sdmmc/transfer_mode.rs +++ b/src/sdmmc/transfer_mode.rs @@ -351,10 +351,10 @@ impl crate::RegisterSpec for TRANSFER_MODE_SPEC { impl crate::Readable for TRANSFER_MODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`transfer_mode::W`](W) writer structure"] impl crate::Writable for TRANSFER_MODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0; } #[doc = "`reset()` method sets TRANSFER_MODE to value 0"] impl crate::Resettable for TRANSFER_MODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u16 = 0; } diff --git a/src/sdmmc/wakeup_ctrl.rs b/src/sdmmc/wakeup_ctrl.rs index 794688c0..5eb19a5e 100644 --- a/src/sdmmc/wakeup_ctrl.rs +++ b/src/sdmmc/wakeup_ctrl.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for WAKEUP_CTRL_SPEC { impl crate::Readable for WAKEUP_CTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`wakeup_ctrl::W`](W) writer structure"] impl crate::Writable for WAKEUP_CTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0; } #[doc = "`reset()` method sets WAKEUP_CTRL to value 0"] impl crate::Resettable for WAKEUP_CTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u8 = 0; } diff --git a/src/usb0/daint.rs b/src/usb0/daint.rs index 1c88742a..60bbb06d 100644 --- a/src/usb0/daint.rs +++ b/src/usb0/daint.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for DAINT_SPEC { impl crate::Readable for DAINT_SPEC {} #[doc = "`reset()` method sets DAINT to value 0"] impl crate::Resettable for DAINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/daintmsk.rs b/src/usb0/daintmsk.rs index c5729f5f..8f5a7fd8 100644 --- a/src/usb0/daintmsk.rs +++ b/src/usb0/daintmsk.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DAINTMSK_SPEC { impl crate::Readable for DAINTMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`daintmsk::W`](W) writer structure"] impl crate::Writable for DAINTMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DAINTMSK to value 0"] impl crate::Resettable for DAINTMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/dcfg.rs b/src/usb0/dcfg.rs index d2fc9d3e..6dc3e44a 100644 --- a/src/usb0/dcfg.rs +++ b/src/usb0/dcfg.rs @@ -355,10 +355,10 @@ impl crate::RegisterSpec for DCFG_SPEC { impl crate::Readable for DCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`dcfg::W`](W) writer structure"] impl crate::Writable for DCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DCFG to value 0x0820_0000"] impl crate::Resettable for DCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x0820_0000; + const RESET_VALUE: u32 = 0x0820_0000; } diff --git a/src/usb0/dctl.rs b/src/usb0/dctl.rs index 23f16e74..f9d091f3 100644 --- a/src/usb0/dctl.rs +++ b/src/usb0/dctl.rs @@ -393,10 +393,10 @@ impl crate::RegisterSpec for DCTL_SPEC { impl crate::Readable for DCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`dctl::W`](W) writer structure"] impl crate::Writable for DCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DCTL to value 0"] impl crate::Resettable for DCTL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/diepempmsk.rs b/src/usb0/diepempmsk.rs index 8eb09b1b..c2e9e3ee 100644 --- a/src/usb0/diepempmsk.rs +++ b/src/usb0/diepempmsk.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DIEPEMPMSK_SPEC { impl crate::Readable for DIEPEMPMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepempmsk::W`](W) writer structure"] impl crate::Writable for DIEPEMPMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPEMPMSK to value 0"] impl crate::Resettable for DIEPEMPMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/diepmsk.rs b/src/usb0/diepmsk.rs index f6e367b3..83c2ec79 100644 --- a/src/usb0/diepmsk.rs +++ b/src/usb0/diepmsk.rs @@ -160,10 +160,10 @@ impl crate::RegisterSpec for DIEPMSK_SPEC { impl crate::Readable for DIEPMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepmsk::W`](W) writer structure"] impl crate::Writable for DIEPMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPMSK to value 0"] impl crate::Resettable for DIEPMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/dieptxf1.rs b/src/usb0/dieptxf1.rs index 6f0c7c55..82625aa9 100644 --- a/src/usb0/dieptxf1.rs +++ b/src/usb0/dieptxf1.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF1_SPEC { impl crate::Readable for DIEPTXF1_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf1::W`](W) writer structure"] impl crate::Writable for DIEPTXF1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF1 to value 0x0100_012a"] impl crate::Resettable for DIEPTXF1_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_012a; + const RESET_VALUE: u32 = 0x0100_012a; } diff --git a/src/usb0/dieptxf2.rs b/src/usb0/dieptxf2.rs index 5df68c9b..db9e00a0 100644 --- a/src/usb0/dieptxf2.rs +++ b/src/usb0/dieptxf2.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF2_SPEC { impl crate::Readable for DIEPTXF2_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf2::W`](W) writer structure"] impl crate::Writable for DIEPTXF2_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF2 to value 0x0100_022a"] impl crate::Resettable for DIEPTXF2_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_022a; + const RESET_VALUE: u32 = 0x0100_022a; } diff --git a/src/usb0/dieptxf3.rs b/src/usb0/dieptxf3.rs index 2c0482df..47bc914a 100644 --- a/src/usb0/dieptxf3.rs +++ b/src/usb0/dieptxf3.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF3_SPEC { impl crate::Readable for DIEPTXF3_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf3::W`](W) writer structure"] impl crate::Writable for DIEPTXF3_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF3 to value 0x0100_032a"] impl crate::Resettable for DIEPTXF3_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_032a; + const RESET_VALUE: u32 = 0x0100_032a; } diff --git a/src/usb0/dieptxf4.rs b/src/usb0/dieptxf4.rs index b87621b6..0b5b72fc 100644 --- a/src/usb0/dieptxf4.rs +++ b/src/usb0/dieptxf4.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF4_SPEC { impl crate::Readable for DIEPTXF4_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf4::W`](W) writer structure"] impl crate::Writable for DIEPTXF4_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF4 to value 0x0100_042a"] impl crate::Resettable for DIEPTXF4_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_042a; + const RESET_VALUE: u32 = 0x0100_042a; } diff --git a/src/usb0/dieptxf5.rs b/src/usb0/dieptxf5.rs index 3f9f7d3c..e79f4bec 100644 --- a/src/usb0/dieptxf5.rs +++ b/src/usb0/dieptxf5.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF5_SPEC { impl crate::Readable for DIEPTXF5_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf5::W`](W) writer structure"] impl crate::Writable for DIEPTXF5_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF5 to value 0x0100_052a"] impl crate::Resettable for DIEPTXF5_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_052a; + const RESET_VALUE: u32 = 0x0100_052a; } diff --git a/src/usb0/dieptxf6.rs b/src/usb0/dieptxf6.rs index 294b9c99..a78c735b 100644 --- a/src/usb0/dieptxf6.rs +++ b/src/usb0/dieptxf6.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTXF6_SPEC { impl crate::Readable for DIEPTXF6_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptxf6::W`](W) writer structure"] impl crate::Writable for DIEPTXF6_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTXF6 to value 0x0100_062a"] impl crate::Resettable for DIEPTXF6_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_062a; + const RESET_VALUE: u32 = 0x0100_062a; } diff --git a/src/usb0/doepmsk.rs b/src/usb0/doepmsk.rs index d7345b64..557d5114 100644 --- a/src/usb0/doepmsk.rs +++ b/src/usb0/doepmsk.rs @@ -190,10 +190,10 @@ impl crate::RegisterSpec for DOEPMSK_SPEC { impl crate::Readable for DOEPMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepmsk::W`](W) writer structure"] impl crate::Writable for DOEPMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPMSK to value 0"] impl crate::Resettable for DOEPMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/dsts.rs b/src/usb0/dsts.rs index f0cca0d5..3bf3295e 100644 --- a/src/usb0/dsts.rs +++ b/src/usb0/dsts.rs @@ -70,5 +70,5 @@ impl crate::RegisterSpec for DSTS_SPEC { impl crate::Readable for DSTS_SPEC {} #[doc = "`reset()` method sets DSTS to value 0x02"] impl crate::Resettable for DSTS_SPEC { - const RESET_VALUE: Self::Ux = 0x02; + const RESET_VALUE: u32 = 0x02; } diff --git a/src/usb0/dvbusdis.rs b/src/usb0/dvbusdis.rs index 3a882beb..9c99cf27 100644 --- a/src/usb0/dvbusdis.rs +++ b/src/usb0/dvbusdis.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DVBUSDIS_SPEC { impl crate::Readable for DVBUSDIS_SPEC {} #[doc = "`write(|w| ..)` method takes [`dvbusdis::W`](W) writer structure"] impl crate::Writable for DVBUSDIS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DVBUSDIS to value 0x17d7"] impl crate::Resettable for DVBUSDIS_SPEC { - const RESET_VALUE: Self::Ux = 0x17d7; + const RESET_VALUE: u32 = 0x17d7; } diff --git a/src/usb0/dvbuspulse.rs b/src/usb0/dvbuspulse.rs index 78619a01..543134b5 100644 --- a/src/usb0/dvbuspulse.rs +++ b/src/usb0/dvbuspulse.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DVBUSPULSE_SPEC { impl crate::Readable for DVBUSPULSE_SPEC {} #[doc = "`write(|w| ..)` method takes [`dvbuspulse::W`](W) writer structure"] impl crate::Writable for DVBUSPULSE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DVBUSPULSE to value 0x05b8"] impl crate::Resettable for DVBUSPULSE_SPEC { - const RESET_VALUE: Self::Ux = 0x05b8; + const RESET_VALUE: u32 = 0x05b8; } diff --git a/src/usb0/gahbcfg.rs b/src/usb0/gahbcfg.rs index 9eca4c2f..cad34d89 100644 --- a/src/usb0/gahbcfg.rs +++ b/src/usb0/gahbcfg.rs @@ -390,10 +390,10 @@ impl crate::RegisterSpec for GAHBCFG_SPEC { impl crate::Readable for GAHBCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`gahbcfg::W`](W) writer structure"] impl crate::Writable for GAHBCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GAHBCFG to value 0"] impl crate::Resettable for GAHBCFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/gdfifocfg.rs b/src/usb0/gdfifocfg.rs index 8215490f..0b417feb 100644 --- a/src/usb0/gdfifocfg.rs +++ b/src/usb0/gdfifocfg.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for GDFIFOCFG_SPEC { impl crate::Readable for GDFIFOCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`gdfifocfg::W`](W) writer structure"] impl crate::Writable for GDFIFOCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GDFIFOCFG to value 0x027a_02b2"] impl crate::Resettable for GDFIFOCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x027a_02b2; + const RESET_VALUE: u32 = 0x027a_02b2; } diff --git a/src/usb0/gintmsk_devicemode.rs b/src/usb0/gintmsk_devicemode.rs index 15dab1d3..6e4dd7f5 100644 --- a/src/usb0/gintmsk_devicemode.rs +++ b/src/usb0/gintmsk_devicemode.rs @@ -310,10 +310,10 @@ impl crate::RegisterSpec for GINTMSK_DEVICEMODE_SPEC { impl crate::Readable for GINTMSK_DEVICEMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gintmsk_devicemode::W`](W) writer structure"] impl crate::Writable for GINTMSK_DEVICEMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GINTMSK_DEVICEMODE to value 0"] impl crate::Resettable for GINTMSK_DEVICEMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/gintmsk_hostmode.rs b/src/usb0/gintmsk_hostmode.rs index 4052ca73..5c3af92e 100644 --- a/src/usb0/gintmsk_hostmode.rs +++ b/src/usb0/gintmsk_hostmode.rs @@ -205,10 +205,10 @@ impl crate::RegisterSpec for GINTMSK_HOSTMODE_SPEC { impl crate::Readable for GINTMSK_HOSTMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gintmsk_hostmode::W`](W) writer structure"] impl crate::Writable for GINTMSK_HOSTMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GINTMSK_HOSTMODE to value 0"] impl crate::Resettable for GINTMSK_HOSTMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/gintsts_devicemode.rs b/src/usb0/gintsts_devicemode.rs index 2db3e27c..59e8000e 100644 --- a/src/usb0/gintsts_devicemode.rs +++ b/src/usb0/gintsts_devicemode.rs @@ -303,10 +303,10 @@ impl crate::RegisterSpec for GINTSTS_DEVICEMODE_SPEC { impl crate::Readable for GINTSTS_DEVICEMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gintsts_devicemode::W`](W) writer structure"] impl crate::Writable for GINTSTS_DEVICEMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GINTSTS_DEVICEMODE to value 0x1400_0020"] impl crate::Resettable for GINTSTS_DEVICEMODE_SPEC { - const RESET_VALUE: Self::Ux = 0x1400_0020; + const RESET_VALUE: u32 = 0x1400_0020; } diff --git a/src/usb0/gintsts_hostmode.rs b/src/usb0/gintsts_hostmode.rs index aa92a22c..b45469e8 100644 --- a/src/usb0/gintsts_hostmode.rs +++ b/src/usb0/gintsts_hostmode.rs @@ -206,10 +206,10 @@ impl crate::RegisterSpec for GINTSTS_HOSTMODE_SPEC { impl crate::Readable for GINTSTS_HOSTMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gintsts_hostmode::W`](W) writer structure"] impl crate::Writable for GINTSTS_HOSTMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GINTSTS_HOSTMODE to value 0x1400_0020"] impl crate::Resettable for GINTSTS_HOSTMODE_SPEC { - const RESET_VALUE: Self::Ux = 0x1400_0020; + const RESET_VALUE: u32 = 0x1400_0020; } diff --git a/src/usb0/gnptxfsiz_devicemode.rs b/src/usb0/gnptxfsiz_devicemode.rs index a5aa6cf4..dc746a28 100644 --- a/src/usb0/gnptxfsiz_devicemode.rs +++ b/src/usb0/gnptxfsiz_devicemode.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for GNPTXFSIZ_DEVICEMODE_SPEC { impl crate::Readable for GNPTXFSIZ_DEVICEMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gnptxfsiz_devicemode::W`](W) writer structure"] impl crate::Writable for GNPTXFSIZ_DEVICEMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GNPTXFSIZ_DEVICEMODE to value 0x0010_0000"] impl crate::Resettable for GNPTXFSIZ_DEVICEMODE_SPEC { - const RESET_VALUE: Self::Ux = 0x0010_0000; + const RESET_VALUE: u32 = 0x0010_0000; } diff --git a/src/usb0/gnptxfsiz_hostmode.rs b/src/usb0/gnptxfsiz_hostmode.rs index 8ef73dac..8d0e20dc 100644 --- a/src/usb0/gnptxfsiz_hostmode.rs +++ b/src/usb0/gnptxfsiz_hostmode.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for GNPTXFSIZ_HOSTMODE_SPEC { impl crate::Readable for GNPTXFSIZ_HOSTMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`gnptxfsiz_hostmode::W`](W) writer structure"] impl crate::Writable for GNPTXFSIZ_HOSTMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GNPTXFSIZ_HOSTMODE to value 0x0010_011a"] impl crate::Resettable for GNPTXFSIZ_HOSTMODE_SPEC { - const RESET_VALUE: Self::Ux = 0x0010_011a; + const RESET_VALUE: u32 = 0x0010_011a; } diff --git a/src/usb0/gnptxsts.rs b/src/usb0/gnptxsts.rs index 368b8e61..1033598b 100644 --- a/src/usb0/gnptxsts.rs +++ b/src/usb0/gnptxsts.rs @@ -173,5 +173,5 @@ impl crate::RegisterSpec for GNPTXSTS_SPEC { impl crate::Readable for GNPTXSTS_SPEC {} #[doc = "`reset()` method sets GNPTXSTS to value 0x0008_0010"] impl crate::Resettable for GNPTXSTS_SPEC { - const RESET_VALUE: Self::Ux = 0x0008_0010; + const RESET_VALUE: u32 = 0x0008_0010; } diff --git a/src/usb0/gotgctl.rs b/src/usb0/gotgctl.rs index 7e7edbd1..eb1f3322 100644 --- a/src/usb0/gotgctl.rs +++ b/src/usb0/gotgctl.rs @@ -975,10 +975,10 @@ impl crate::RegisterSpec for GOTGCTL_SPEC { impl crate::Readable for GOTGCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`gotgctl::W`](W) writer structure"] impl crate::Writable for GOTGCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GOTGCTL to value 0x0001_0000"] impl crate::Resettable for GOTGCTL_SPEC { - const RESET_VALUE: Self::Ux = 0x0001_0000; + const RESET_VALUE: u32 = 0x0001_0000; } diff --git a/src/usb0/gotgint.rs b/src/usb0/gotgint.rs index 5ee26285..54610260 100644 --- a/src/usb0/gotgint.rs +++ b/src/usb0/gotgint.rs @@ -115,10 +115,10 @@ impl crate::RegisterSpec for GOTGINT_SPEC { impl crate::Readable for GOTGINT_SPEC {} #[doc = "`write(|w| ..)` method takes [`gotgint::W`](W) writer structure"] impl crate::Writable for GOTGINT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GOTGINT to value 0"] impl crate::Resettable for GOTGINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/grstctl.rs b/src/usb0/grstctl.rs index 3d97b86d..fe853345 100644 --- a/src/usb0/grstctl.rs +++ b/src/usb0/grstctl.rs @@ -208,10 +208,10 @@ impl crate::RegisterSpec for GRSTCTL_SPEC { impl crate::Readable for GRSTCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`grstctl::W`](W) writer structure"] impl crate::Writable for GRSTCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GRSTCTL to value 0x1000_0000"] impl crate::Resettable for GRSTCTL_SPEC { - const RESET_VALUE: Self::Ux = 0x1000_0000; + const RESET_VALUE: u32 = 0x1000_0000; } diff --git a/src/usb0/grxfsiz.rs b/src/usb0/grxfsiz.rs index ea52da84..4c6477b8 100644 --- a/src/usb0/grxfsiz.rs +++ b/src/usb0/grxfsiz.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for GRXFSIZ_SPEC { impl crate::Readable for GRXFSIZ_SPEC {} #[doc = "`write(|w| ..)` method takes [`grxfsiz::W`](W) writer structure"] impl crate::Writable for GRXFSIZ_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GRXFSIZ to value 0x011a"] impl crate::Resettable for GRXFSIZ_SPEC { - const RESET_VALUE: Self::Ux = 0x011a; + const RESET_VALUE: u32 = 0x011a; } diff --git a/src/usb0/grxstsp_devicemode.rs b/src/usb0/grxstsp_devicemode.rs index 556b07ee..bb158b99 100644 --- a/src/usb0/grxstsp_devicemode.rs +++ b/src/usb0/grxstsp_devicemode.rs @@ -164,5 +164,5 @@ impl crate::RegisterSpec for GRXSTSP_DEVICEMODE_SPEC { impl crate::Readable for GRXSTSP_DEVICEMODE_SPEC {} #[doc = "`reset()` method sets GRXSTSP_DEVICEMODE to value 0"] impl crate::Resettable for GRXSTSP_DEVICEMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/grxstsp_hostmode.rs b/src/usb0/grxstsp_hostmode.rs index 490c51f1..9708c6b5 100644 --- a/src/usb0/grxstsp_hostmode.rs +++ b/src/usb0/grxstsp_hostmode.rs @@ -149,5 +149,5 @@ impl crate::RegisterSpec for GRXSTSP_HOSTMODE_SPEC { impl crate::Readable for GRXSTSP_HOSTMODE_SPEC {} #[doc = "`reset()` method sets GRXSTSP_HOSTMODE to value 0"] impl crate::Resettable for GRXSTSP_HOSTMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/grxstsr_devicemode.rs b/src/usb0/grxstsr_devicemode.rs index 1bd7a876..d50013cc 100644 --- a/src/usb0/grxstsr_devicemode.rs +++ b/src/usb0/grxstsr_devicemode.rs @@ -164,5 +164,5 @@ impl crate::RegisterSpec for GRXSTSR_DEVICEMODE_SPEC { impl crate::Readable for GRXSTSR_DEVICEMODE_SPEC {} #[doc = "`reset()` method sets GRXSTSR_DEVICEMODE to value 0"] impl crate::Resettable for GRXSTSR_DEVICEMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/grxstsr_hostmode.rs b/src/usb0/grxstsr_hostmode.rs index d8033bac..069fee1b 100644 --- a/src/usb0/grxstsr_hostmode.rs +++ b/src/usb0/grxstsr_hostmode.rs @@ -149,5 +149,5 @@ impl crate::RegisterSpec for GRXSTSR_HOSTMODE_SPEC { impl crate::Readable for GRXSTSR_HOSTMODE_SPEC {} #[doc = "`reset()` method sets GRXSTSR_HOSTMODE to value 0"] impl crate::Resettable for GRXSTSR_HOSTMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/guid.rs b/src/usb0/guid.rs index c631e3ea..2b68d7a5 100644 --- a/src/usb0/guid.rs +++ b/src/usb0/guid.rs @@ -70,10 +70,10 @@ impl crate::RegisterSpec for GUID_SPEC { impl crate::Readable for GUID_SPEC {} #[doc = "`write(|w| ..)` method takes [`guid::W`](W) writer structure"] impl crate::Writable for GUID_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GUID to value 0x00ae_c000"] impl crate::Resettable for GUID_SPEC { - const RESET_VALUE: Self::Ux = 0x00ae_c000; + const RESET_VALUE: u32 = 0x00ae_c000; } diff --git a/src/usb0/gusbcfg.rs b/src/usb0/gusbcfg.rs index 604c9ff2..a0716211 100644 --- a/src/usb0/gusbcfg.rs +++ b/src/usb0/gusbcfg.rs @@ -476,10 +476,10 @@ impl crate::RegisterSpec for GUSBCFG_SPEC { impl crate::Readable for GUSBCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`gusbcfg::W`](W) writer structure"] impl crate::Writable for GUSBCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GUSBCFG to value 0x1440"] impl crate::Resettable for GUSBCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x1440; + const RESET_VALUE: u32 = 0x1440; } diff --git a/src/usb0/haint.rs b/src/usb0/haint.rs index 98a06a52..70a20dd2 100644 --- a/src/usb0/haint.rs +++ b/src/usb0/haint.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for HAINT_SPEC { impl crate::Readable for HAINT_SPEC {} #[doc = "`reset()` method sets HAINT to value 0"] impl crate::Resettable for HAINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/haintmsk.rs b/src/usb0/haintmsk.rs index 099c9b24..856cb844 100644 --- a/src/usb0/haintmsk.rs +++ b/src/usb0/haintmsk.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for HAINTMSK_SPEC { impl crate::Readable for HAINTMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`haintmsk::W`](W) writer structure"] impl crate::Writable for HAINTMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HAINTMSK to value 0"] impl crate::Resettable for HAINTMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/hcfg.rs b/src/usb0/hcfg.rs index e0d0e2dd..2fc3a2a0 100644 --- a/src/usb0/hcfg.rs +++ b/src/usb0/hcfg.rs @@ -272,10 +272,10 @@ impl crate::RegisterSpec for HCFG_SPEC { impl crate::Readable for HCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcfg::W`](W) writer structure"] impl crate::Writable for HCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCFG to value 0x0200"] impl crate::Resettable for HCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x0200; + const RESET_VALUE: u32 = 0x0200; } diff --git a/src/usb0/hfir.rs b/src/usb0/hfir.rs index a7189663..6849caf7 100644 --- a/src/usb0/hfir.rs +++ b/src/usb0/hfir.rs @@ -104,10 +104,10 @@ impl crate::RegisterSpec for HFIR_SPEC { impl crate::Readable for HFIR_SPEC {} #[doc = "`write(|w| ..)` method takes [`hfir::W`](W) writer structure"] impl crate::Writable for HFIR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HFIR to value 0xea60"] impl crate::Resettable for HFIR_SPEC { - const RESET_VALUE: Self::Ux = 0xea60; + const RESET_VALUE: u32 = 0xea60; } diff --git a/src/usb0/hflbaddr.rs b/src/usb0/hflbaddr.rs index 6ce4480b..4d8a516a 100644 --- a/src/usb0/hflbaddr.rs +++ b/src/usb0/hflbaddr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for HFLBADDR_SPEC { impl crate::Readable for HFLBADDR_SPEC {} #[doc = "`write(|w| ..)` method takes [`hflbaddr::W`](W) writer structure"] impl crate::Writable for HFLBADDR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HFLBADDR to value 0"] impl crate::Resettable for HFLBADDR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/hfnum.rs b/src/usb0/hfnum.rs index e3a54fec..68cac67c 100644 --- a/src/usb0/hfnum.rs +++ b/src/usb0/hfnum.rs @@ -47,10 +47,10 @@ impl crate::RegisterSpec for HFNUM_SPEC { impl crate::Readable for HFNUM_SPEC {} #[doc = "`write(|w| ..)` method takes [`hfnum::W`](W) writer structure"] impl crate::Writable for HFNUM_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HFNUM to value 0x3fff"] impl crate::Resettable for HFNUM_SPEC { - const RESET_VALUE: Self::Ux = 0x3fff; + const RESET_VALUE: u32 = 0x3fff; } diff --git a/src/usb0/hprt.rs b/src/usb0/hprt.rs index af6cafda..bcb6128a 100644 --- a/src/usb0/hprt.rs +++ b/src/usb0/hprt.rs @@ -517,10 +517,10 @@ impl crate::RegisterSpec for HPRT_SPEC { impl crate::Readable for HPRT_SPEC {} #[doc = "`write(|w| ..)` method takes [`hprt::W`](W) writer structure"] impl crate::Writable for HPRT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HPRT to value 0"] impl crate::Resettable for HPRT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0/hptxfsiz.rs b/src/usb0/hptxfsiz.rs index 6ecae45c..3e7b1927 100644 --- a/src/usb0/hptxfsiz.rs +++ b/src/usb0/hptxfsiz.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for HPTXFSIZ_SPEC { impl crate::Readable for HPTXFSIZ_SPEC {} #[doc = "`write(|w| ..)` method takes [`hptxfsiz::W`](W) writer structure"] impl crate::Writable for HPTXFSIZ_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HPTXFSIZ to value 0x0100_012a"] impl crate::Resettable for HPTXFSIZ_SPEC { - const RESET_VALUE: Self::Ux = 0x0100_012a; + const RESET_VALUE: u32 = 0x0100_012a; } diff --git a/src/usb0/hptxsts.rs b/src/usb0/hptxsts.rs index 6a26ddda..2f00663a 100644 --- a/src/usb0/hptxsts.rs +++ b/src/usb0/hptxsts.rs @@ -169,10 +169,10 @@ impl crate::RegisterSpec for HPTXSTS_SPEC { impl crate::Readable for HPTXSTS_SPEC {} #[doc = "`write(|w| ..)` method takes [`hptxsts::W`](W) writer structure"] impl crate::Writable for HPTXSTS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HPTXSTS to value 0x0008_0100"] impl crate::Resettable for HPTXSTS_SPEC { - const RESET_VALUE: Self::Ux = 0x0008_0100; + const RESET_VALUE: u32 = 0x0008_0100; } diff --git a/src/usb0/pcgcctl.rs b/src/usb0/pcgcctl.rs index 1c0c947c..9b181be4 100644 --- a/src/usb0/pcgcctl.rs +++ b/src/usb0/pcgcctl.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for PCGCCTL_SPEC { impl crate::Readable for PCGCCTL_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcgcctl::W`](W) writer structure"] impl crate::Writable for PCGCCTL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCGCCTL to value 0x0100"] impl crate::Resettable for PCGCCTL_SPEC { - const RESET_VALUE: Self::Ux = 0x0100; + const RESET_VALUE: u32 = 0x0100; } diff --git a/src/usb0_ch0/hcchar.rs b/src/usb0_ch0/hcchar.rs index b48df230..b7d7bef6 100644 --- a/src/usb0_ch0/hcchar.rs +++ b/src/usb0_ch0/hcchar.rs @@ -456,10 +456,10 @@ impl crate::RegisterSpec for HCCHAR_SPEC { impl crate::Readable for HCCHAR_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcchar::W`](W) writer structure"] impl crate::Writable for HCCHAR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCCHAR to value 0"] impl crate::Resettable for HCCHAR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hcdma_buffermode.rs b/src/usb0_ch0/hcdma_buffermode.rs index 777e55d6..4d06d6ac 100644 --- a/src/usb0_ch0/hcdma_buffermode.rs +++ b/src/usb0_ch0/hcdma_buffermode.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for HCDMA_BUFFERMODE_SPEC { impl crate::Readable for HCDMA_BUFFERMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcdma_buffermode::W`](W) writer structure"] impl crate::Writable for HCDMA_BUFFERMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCDMA_BUFFERMODE to value 0"] impl crate::Resettable for HCDMA_BUFFERMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hcdma_scatgather.rs b/src/usb0_ch0/hcdma_scatgather.rs index 2419669f..3c06c5e3 100644 --- a/src/usb0_ch0/hcdma_scatgather.rs +++ b/src/usb0_ch0/hcdma_scatgather.rs @@ -110,10 +110,10 @@ impl crate::RegisterSpec for HCDMA_SCATGATHER_SPEC { impl crate::Readable for HCDMA_SCATGATHER_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcdma_scatgather::W`](W) writer structure"] impl crate::Writable for HCDMA_SCATGATHER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCDMA_SCATGATHER to value 0"] impl crate::Resettable for HCDMA_SCATGATHER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hcdmab.rs b/src/usb0_ch0/hcdmab.rs index fa180b41..ad0a6686 100644 --- a/src/usb0_ch0/hcdmab.rs +++ b/src/usb0_ch0/hcdmab.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for HCDMAB_SPEC { impl crate::Readable for HCDMAB_SPEC {} #[doc = "`reset()` method sets HCDMAB to value 0"] impl crate::Resettable for HCDMAB_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hcint.rs b/src/usb0_ch0/hcint.rs index 790b7947..7b4bcc92 100644 --- a/src/usb0_ch0/hcint.rs +++ b/src/usb0_ch0/hcint.rs @@ -235,10 +235,10 @@ impl crate::RegisterSpec for HCINT_SPEC { impl crate::Readable for HCINT_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcint::W`](W) writer structure"] impl crate::Writable for HCINT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCINT to value 0"] impl crate::Resettable for HCINT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hcintmsk.rs b/src/usb0_ch0/hcintmsk.rs index a310159b..9b23c8c9 100644 --- a/src/usb0_ch0/hcintmsk.rs +++ b/src/usb0_ch0/hcintmsk.rs @@ -220,10 +220,10 @@ impl crate::RegisterSpec for HCINTMSK_SPEC { impl crate::Readable for HCINTMSK_SPEC {} #[doc = "`write(|w| ..)` method takes [`hcintmsk::W`](W) writer structure"] impl crate::Writable for HCINTMSK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCINTMSK to value 0"] impl crate::Resettable for HCINTMSK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hctsiz_buffermode.rs b/src/usb0_ch0/hctsiz_buffermode.rs index 5c8690df..0b2ccb8b 100644 --- a/src/usb0_ch0/hctsiz_buffermode.rs +++ b/src/usb0_ch0/hctsiz_buffermode.rs @@ -151,10 +151,10 @@ impl crate::RegisterSpec for HCTSIZ_BUFFERMODE_SPEC { impl crate::Readable for HCTSIZ_BUFFERMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`hctsiz_buffermode::W`](W) writer structure"] impl crate::Writable for HCTSIZ_BUFFERMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCTSIZ_BUFFERMODE to value 0"] impl crate::Resettable for HCTSIZ_BUFFERMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ch0/hctsiz_scatgather.rs b/src/usb0_ch0/hctsiz_scatgather.rs index 026718fa..5a42cea0 100644 --- a/src/usb0_ch0/hctsiz_scatgather.rs +++ b/src/usb0_ch0/hctsiz_scatgather.rs @@ -151,10 +151,10 @@ impl crate::RegisterSpec for HCTSIZ_SCATGATHER_SPEC { impl crate::Readable for HCTSIZ_SCATGATHER_SPEC {} #[doc = "`write(|w| ..)` method takes [`hctsiz_scatgather::W`](W) writer structure"] impl crate::Writable for HCTSIZ_SCATGATHER_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets HCTSIZ_SCATGATHER to value 0"] impl crate::Resettable for HCTSIZ_SCATGATHER_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/diepctl0.rs b/src/usb0_ep0/diepctl0.rs index c1ebe27e..4450ca8c 100644 --- a/src/usb0_ep0/diepctl0.rs +++ b/src/usb0_ep0/diepctl0.rs @@ -252,10 +252,10 @@ impl crate::RegisterSpec for DIEPCTL0_SPEC { impl crate::Readable for DIEPCTL0_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepctl0::W`](W) writer structure"] impl crate::Writable for DIEPCTL0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPCTL0 to value 0x8000"] impl crate::Resettable for DIEPCTL0_SPEC { - const RESET_VALUE: Self::Ux = 0x8000; + const RESET_VALUE: u32 = 0x8000; } diff --git a/src/usb0_ep0/diepdma0.rs b/src/usb0_ep0/diepdma0.rs index 098c7911..5e8d533e 100644 --- a/src/usb0_ep0/diepdma0.rs +++ b/src/usb0_ep0/diepdma0.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DIEPDMA0_SPEC { impl crate::Readable for DIEPDMA0_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepdma0::W`](W) writer structure"] impl crate::Writable for DIEPDMA0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPDMA0 to value 0"] impl crate::Resettable for DIEPDMA0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/diepdmab0.rs b/src/usb0_ep0/diepdmab0.rs index b710a208..340229bd 100644 --- a/src/usb0_ep0/diepdmab0.rs +++ b/src/usb0_ep0/diepdmab0.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for DIEPDMAB0_SPEC { impl crate::Readable for DIEPDMAB0_SPEC {} #[doc = "`reset()` method sets DIEPDMAB0 to value 0"] impl crate::Resettable for DIEPDMAB0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/diepint0.rs b/src/usb0_ep0/diepint0.rs index 7b2ad9c9..67cba1fd 100644 --- a/src/usb0_ep0/diepint0.rs +++ b/src/usb0_ep0/diepint0.rs @@ -137,10 +137,10 @@ impl crate::RegisterSpec for DIEPINT0_SPEC { impl crate::Readable for DIEPINT0_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepint0::W`](W) writer structure"] impl crate::Writable for DIEPINT0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPINT0 to value 0x80"] impl crate::Resettable for DIEPINT0_SPEC { - const RESET_VALUE: Self::Ux = 0x80; + const RESET_VALUE: u32 = 0x80; } diff --git a/src/usb0_ep0/dieptsiz0.rs b/src/usb0_ep0/dieptsiz0.rs index 433f78a6..36d89a88 100644 --- a/src/usb0_ep0/dieptsiz0.rs +++ b/src/usb0_ep0/dieptsiz0.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTSIZ0_SPEC { impl crate::Readable for DIEPTSIZ0_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptsiz0::W`](W) writer structure"] impl crate::Writable for DIEPTSIZ0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTSIZ0 to value 0"] impl crate::Resettable for DIEPTSIZ0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/doepctl0.rs b/src/usb0_ep0/doepctl0.rs index b05fd3dd..42f1f64e 100644 --- a/src/usb0_ep0/doepctl0.rs +++ b/src/usb0_ep0/doepctl0.rs @@ -210,10 +210,10 @@ impl crate::RegisterSpec for DOEPCTL0_SPEC { impl crate::Readable for DOEPCTL0_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepctl0::W`](W) writer structure"] impl crate::Writable for DOEPCTL0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPCTL0 to value 0x8000"] impl crate::Resettable for DOEPCTL0_SPEC { - const RESET_VALUE: Self::Ux = 0x8000; + const RESET_VALUE: u32 = 0x8000; } diff --git a/src/usb0_ep0/doepdma0.rs b/src/usb0_ep0/doepdma0.rs index 1f198d04..0c9341ee 100644 --- a/src/usb0_ep0/doepdma0.rs +++ b/src/usb0_ep0/doepdma0.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DOEPDMA0_SPEC { impl crate::Readable for DOEPDMA0_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepdma0::W`](W) writer structure"] impl crate::Writable for DOEPDMA0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPDMA0 to value 0"] impl crate::Resettable for DOEPDMA0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/doepdmab0.rs b/src/usb0_ep0/doepdmab0.rs index e877a934..3464cdbe 100644 --- a/src/usb0_ep0/doepdmab0.rs +++ b/src/usb0_ep0/doepdmab0.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for DOEPDMAB0_SPEC { impl crate::Readable for DOEPDMAB0_SPEC {} #[doc = "`reset()` method sets DOEPDMAB0 to value 0"] impl crate::Resettable for DOEPDMAB0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/doepint0.rs b/src/usb0_ep0/doepint0.rs index 1349bd11..91c4dcd0 100644 --- a/src/usb0_ep0/doepint0.rs +++ b/src/usb0_ep0/doepint0.rs @@ -205,10 +205,10 @@ impl crate::RegisterSpec for DOEPINT0_SPEC { impl crate::Readable for DOEPINT0_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepint0::W`](W) writer structure"] impl crate::Writable for DOEPINT0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPINT0 to value 0x80"] impl crate::Resettable for DOEPINT0_SPEC { - const RESET_VALUE: Self::Ux = 0x80; + const RESET_VALUE: u32 = 0x80; } diff --git a/src/usb0_ep0/doeptsiz0.rs b/src/usb0_ep0/doeptsiz0.rs index 0ad8fcbc..28f5fadb 100644 --- a/src/usb0_ep0/doeptsiz0.rs +++ b/src/usb0_ep0/doeptsiz0.rs @@ -138,10 +138,10 @@ impl crate::RegisterSpec for DOEPTSIZ0_SPEC { impl crate::Readable for DOEPTSIZ0_SPEC {} #[doc = "`write(|w| ..)` method takes [`doeptsiz0::W`](W) writer structure"] impl crate::Writable for DOEPTSIZ0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPTSIZ0 to value 0"] impl crate::Resettable for DOEPTSIZ0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep0/dtxfsts0.rs b/src/usb0_ep0/dtxfsts0.rs index 9f0110af..e080eea8 100644 --- a/src/usb0_ep0/dtxfsts0.rs +++ b/src/usb0_ep0/dtxfsts0.rs @@ -65,5 +65,5 @@ impl crate::RegisterSpec for DTXFSTS0_SPEC { impl crate::Readable for DTXFSTS0_SPEC {} #[doc = "`reset()` method sets DTXFSTS0 to value 0"] impl crate::Resettable for DTXFSTS0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/diepctl_intbulk.rs b/src/usb0_ep1/diepctl_intbulk.rs index cdb1e68a..15a8c5c6 100644 --- a/src/usb0_ep1/diepctl_intbulk.rs +++ b/src/usb0_ep1/diepctl_intbulk.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for DIEPCTL_INTBULK_SPEC { impl crate::Readable for DIEPCTL_INTBULK_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepctl_intbulk::W`](W) writer structure"] impl crate::Writable for DIEPCTL_INTBULK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPCTL_INTBULK to value 0"] impl crate::Resettable for DIEPCTL_INTBULK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/diepctl_isocont.rs b/src/usb0_ep1/diepctl_isocont.rs index fc385409..32a1a602 100644 --- a/src/usb0_ep1/diepctl_isocont.rs +++ b/src/usb0_ep1/diepctl_isocont.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for DIEPCTL_ISOCONT_SPEC { impl crate::Readable for DIEPCTL_ISOCONT_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepctl_isocont::W`](W) writer structure"] impl crate::Writable for DIEPCTL_ISOCONT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPCTL_ISOCONT to value 0"] impl crate::Resettable for DIEPCTL_ISOCONT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/diepdma.rs b/src/usb0_ep1/diepdma.rs index 6a2dedc8..df8508a5 100644 --- a/src/usb0_ep1/diepdma.rs +++ b/src/usb0_ep1/diepdma.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DIEPDMA_SPEC { impl crate::Readable for DIEPDMA_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepdma::W`](W) writer structure"] impl crate::Writable for DIEPDMA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPDMA to value 0"] impl crate::Resettable for DIEPDMA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/diepdmab.rs b/src/usb0_ep1/diepdmab.rs index 82d6cfc1..a695cd8f 100644 --- a/src/usb0_ep1/diepdmab.rs +++ b/src/usb0_ep1/diepdmab.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for DIEPDMAB_SPEC { impl crate::Readable for DIEPDMAB_SPEC {} #[doc = "`reset()` method sets DIEPDMAB to value 0"] impl crate::Resettable for DIEPDMAB_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/diepint.rs b/src/usb0_ep1/diepint.rs index 1f94e137..3f6659c1 100644 --- a/src/usb0_ep1/diepint.rs +++ b/src/usb0_ep1/diepint.rs @@ -137,10 +137,10 @@ impl crate::RegisterSpec for DIEPINT_SPEC { impl crate::Readable for DIEPINT_SPEC {} #[doc = "`write(|w| ..)` method takes [`diepint::W`](W) writer structure"] impl crate::Writable for DIEPINT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPINT to value 0x80"] impl crate::Resettable for DIEPINT_SPEC { - const RESET_VALUE: Self::Ux = 0x80; + const RESET_VALUE: u32 = 0x80; } diff --git a/src/usb0_ep1/dieptsiz.rs b/src/usb0_ep1/dieptsiz.rs index 351804ab..6b45e27b 100644 --- a/src/usb0_ep1/dieptsiz.rs +++ b/src/usb0_ep1/dieptsiz.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for DIEPTSIZ_SPEC { impl crate::Readable for DIEPTSIZ_SPEC {} #[doc = "`write(|w| ..)` method takes [`dieptsiz::W`](W) writer structure"] impl crate::Writable for DIEPTSIZ_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DIEPTSIZ to value 0"] impl crate::Resettable for DIEPTSIZ_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doepctl_intbulk.rs b/src/usb0_ep1/doepctl_intbulk.rs index d14e5e0f..b6066c50 100644 --- a/src/usb0_ep1/doepctl_intbulk.rs +++ b/src/usb0_ep1/doepctl_intbulk.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for DOEPCTL_INTBULK_SPEC { impl crate::Readable for DOEPCTL_INTBULK_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepctl_intbulk::W`](W) writer structure"] impl crate::Writable for DOEPCTL_INTBULK_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPCTL_INTBULK to value 0"] impl crate::Resettable for DOEPCTL_INTBULK_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doepctl_isocont.rs b/src/usb0_ep1/doepctl_isocont.rs index b7e36cba..d9c0e34b 100644 --- a/src/usb0_ep1/doepctl_isocont.rs +++ b/src/usb0_ep1/doepctl_isocont.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for DOEPCTL_ISOCONT_SPEC { impl crate::Readable for DOEPCTL_ISOCONT_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepctl_isocont::W`](W) writer structure"] impl crate::Writable for DOEPCTL_ISOCONT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPCTL_ISOCONT to value 0"] impl crate::Resettable for DOEPCTL_ISOCONT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doepdma.rs b/src/usb0_ep1/doepdma.rs index ad31e6e8..2a4d54a3 100644 --- a/src/usb0_ep1/doepdma.rs +++ b/src/usb0_ep1/doepdma.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for DOEPDMA_SPEC { impl crate::Readable for DOEPDMA_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepdma::W`](W) writer structure"] impl crate::Writable for DOEPDMA_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPDMA to value 0"] impl crate::Resettable for DOEPDMA_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doepdmab.rs b/src/usb0_ep1/doepdmab.rs index 30e02234..64581ece 100644 --- a/src/usb0_ep1/doepdmab.rs +++ b/src/usb0_ep1/doepdmab.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for DOEPDMAB_SPEC { impl crate::Readable for DOEPDMAB_SPEC {} #[doc = "`reset()` method sets DOEPDMAB to value 0"] impl crate::Resettable for DOEPDMAB_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doepint.rs b/src/usb0_ep1/doepint.rs index 8b6a96ec..8598da87 100644 --- a/src/usb0_ep1/doepint.rs +++ b/src/usb0_ep1/doepint.rs @@ -205,10 +205,10 @@ impl crate::RegisterSpec for DOEPINT_SPEC { impl crate::Readable for DOEPINT_SPEC {} #[doc = "`write(|w| ..)` method takes [`doepint::W`](W) writer structure"] impl crate::Writable for DOEPINT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPINT to value 0x80"] impl crate::Resettable for DOEPINT_SPEC { - const RESET_VALUE: Self::Ux = 0x80; + const RESET_VALUE: u32 = 0x80; } diff --git a/src/usb0_ep1/doeptsiz_control.rs b/src/usb0_ep1/doeptsiz_control.rs index b4a1d54e..e9af2bf7 100644 --- a/src/usb0_ep1/doeptsiz_control.rs +++ b/src/usb0_ep1/doeptsiz_control.rs @@ -138,10 +138,10 @@ impl crate::RegisterSpec for DOEPTSIZ_CONTROL_SPEC { impl crate::Readable for DOEPTSIZ_CONTROL_SPEC {} #[doc = "`write(|w| ..)` method takes [`doeptsiz_control::W`](W) writer structure"] impl crate::Writable for DOEPTSIZ_CONTROL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPTSIZ_CONTROL to value 0"] impl crate::Resettable for DOEPTSIZ_CONTROL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/doeptsiz_iso.rs b/src/usb0_ep1/doeptsiz_iso.rs index 17a03030..ff359b6e 100644 --- a/src/usb0_ep1/doeptsiz_iso.rs +++ b/src/usb0_ep1/doeptsiz_iso.rs @@ -117,10 +117,10 @@ impl crate::RegisterSpec for DOEPTSIZ_ISO_SPEC { impl crate::Readable for DOEPTSIZ_ISO_SPEC {} #[doc = "`write(|w| ..)` method takes [`doeptsiz_iso::W`](W) writer structure"] impl crate::Writable for DOEPTSIZ_ISO_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DOEPTSIZ_ISO to value 0"] impl crate::Resettable for DOEPTSIZ_ISO_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usb0_ep1/dtxfsts.rs b/src/usb0_ep1/dtxfsts.rs index eab4e95e..92c25252 100644 --- a/src/usb0_ep1/dtxfsts.rs +++ b/src/usb0_ep1/dtxfsts.rs @@ -65,5 +65,5 @@ impl crate::RegisterSpec for DTXFSTS_SPEC { impl crate::Readable for DTXFSTS_SPEC {} #[doc = "`reset()` method sets DTXFSTS to value 0"] impl crate::Resettable for DTXFSTS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0/id.rs b/src/usic0/id.rs index 9b9824da..f44473c6 100644 --- a/src/usic0/id.rs +++ b/src/usic0/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00aa_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00aa_c000; + const RESET_VALUE: u32 = 0x00aa_c000; } diff --git a/src/usic0_ch0/brg.rs b/src/usic0_ch0/brg.rs index 1db4d5fb..2002d28f 100644 --- a/src/usic0_ch0/brg.rs +++ b/src/usic0_ch0/brg.rs @@ -601,10 +601,10 @@ impl crate::RegisterSpec for BRG_SPEC { impl crate::Readable for BRG_SPEC {} #[doc = "`write(|w| ..)` method takes [`brg::W`](W) writer structure"] impl crate::Writable for BRG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BRG to value 0"] impl crate::Resettable for BRG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/byp.rs b/src/usic0_ch0/byp.rs index 4738fc20..b3fabd2d 100644 --- a/src/usic0_ch0/byp.rs +++ b/src/usic0_ch0/byp.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for BYP_SPEC { impl crate::Readable for BYP_SPEC {} #[doc = "`write(|w| ..)` method takes [`byp::W`](W) writer structure"] impl crate::Writable for BYP_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BYP to value 0"] impl crate::Resettable for BYP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/bypcr.rs b/src/usic0_ch0/bypcr.rs index 058e5bf5..64d97a22 100644 --- a/src/usic0_ch0/bypcr.rs +++ b/src/usic0_ch0/bypcr.rs @@ -399,10 +399,10 @@ impl crate::RegisterSpec for BYPCR_SPEC { impl crate::Readable for BYPCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`bypcr::W`](W) writer structure"] impl crate::Writable for BYPCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BYPCR to value 0"] impl crate::Resettable for BYPCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/ccfg.rs b/src/usic0_ch0/ccfg.rs index b91c7fb2..2192398a 100644 --- a/src/usic0_ch0/ccfg.rs +++ b/src/usic0_ch0/ccfg.rs @@ -257,5 +257,5 @@ impl crate::RegisterSpec for CCFG_SPEC { impl crate::Readable for CCFG_SPEC {} #[doc = "`reset()` method sets CCFG to value 0xcf"] impl crate::Resettable for CCFG_SPEC { - const RESET_VALUE: Self::Ux = 0xcf; + const RESET_VALUE: u32 = 0xcf; } diff --git a/src/usic0_ch0/ccr.rs b/src/usic0_ch0/ccr.rs index f3444b13..c48d5989 100644 --- a/src/usic0_ch0/ccr.rs +++ b/src/usic0_ch0/ccr.rs @@ -764,10 +764,10 @@ impl crate::RegisterSpec for CCR_SPEC { impl crate::Readable for CCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ccr::W`](W) writer structure"] impl crate::Writable for CCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CCR to value 0"] impl crate::Resettable for CCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/cmtr.rs b/src/usic0_ch0/cmtr.rs index bcde5353..52ec65c7 100644 --- a/src/usic0_ch0/cmtr.rs +++ b/src/usic0_ch0/cmtr.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for CMTR_SPEC { impl crate::Readable for CMTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`cmtr::W`](W) writer structure"] impl crate::Writable for CMTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CMTR to value 0"] impl crate::Resettable for CMTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx0cr.rs b/src/usic0_ch0/dx0cr.rs index 23b87e3f..dc6b07be 100644 --- a/src/usic0_ch0/dx0cr.rs +++ b/src/usic0_ch0/dx0cr.rs @@ -630,10 +630,10 @@ impl crate::RegisterSpec for DX0CR_SPEC { impl crate::Readable for DX0CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx0cr::W`](W) writer structure"] impl crate::Writable for DX0CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX0CR to value 0"] impl crate::Resettable for DX0CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx1cr.rs b/src/usic0_ch0/dx1cr.rs index 57c6f697..ddf733d8 100644 --- a/src/usic0_ch0/dx1cr.rs +++ b/src/usic0_ch0/dx1cr.rs @@ -694,10 +694,10 @@ impl crate::RegisterSpec for DX1CR_SPEC { impl crate::Readable for DX1CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx1cr::W`](W) writer structure"] impl crate::Writable for DX1CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX1CR to value 0"] impl crate::Resettable for DX1CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx2cr.rs b/src/usic0_ch0/dx2cr.rs index a90f3fc0..b6274e96 100644 --- a/src/usic0_ch0/dx2cr.rs +++ b/src/usic0_ch0/dx2cr.rs @@ -630,10 +630,10 @@ impl crate::RegisterSpec for DX2CR_SPEC { impl crate::Readable for DX2CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx2cr::W`](W) writer structure"] impl crate::Writable for DX2CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX2CR to value 0"] impl crate::Resettable for DX2CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx3cr.rs b/src/usic0_ch0/dx3cr.rs index a99683b9..c2244cf9 100644 --- a/src/usic0_ch0/dx3cr.rs +++ b/src/usic0_ch0/dx3cr.rs @@ -630,10 +630,10 @@ impl crate::RegisterSpec for DX3CR_SPEC { impl crate::Readable for DX3CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx3cr::W`](W) writer structure"] impl crate::Writable for DX3CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX3CR to value 0"] impl crate::Resettable for DX3CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx4cr.rs b/src/usic0_ch0/dx4cr.rs index f11e4584..dd2bce47 100644 --- a/src/usic0_ch0/dx4cr.rs +++ b/src/usic0_ch0/dx4cr.rs @@ -630,10 +630,10 @@ impl crate::RegisterSpec for DX4CR_SPEC { impl crate::Readable for DX4CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx4cr::W`](W) writer structure"] impl crate::Writable for DX4CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX4CR to value 0"] impl crate::Resettable for DX4CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/dx5cr.rs b/src/usic0_ch0/dx5cr.rs index 8050e17a..ac078663 100644 --- a/src/usic0_ch0/dx5cr.rs +++ b/src/usic0_ch0/dx5cr.rs @@ -630,10 +630,10 @@ impl crate::RegisterSpec for DX5CR_SPEC { impl crate::Readable for DX5CR_SPEC {} #[doc = "`write(|w| ..)` method takes [`dx5cr::W`](W) writer structure"] impl crate::Writable for DX5CR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets DX5CR to value 0"] impl crate::Resettable for DX5CR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/fdr.rs b/src/usic0_ch0/fdr.rs index eafde56a..fc5d4f8e 100644 --- a/src/usic0_ch0/fdr.rs +++ b/src/usic0_ch0/fdr.rs @@ -143,10 +143,10 @@ impl crate::RegisterSpec for FDR_SPEC { impl crate::Readable for FDR_SPEC {} #[doc = "`write(|w| ..)` method takes [`fdr::W`](W) writer structure"] impl crate::Writable for FDR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FDR to value 0"] impl crate::Resettable for FDR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/fmr.rs b/src/usic0_ch0/fmr.rs index 4e8a9f64..9ac76f8d 100644 --- a/src/usic0_ch0/fmr.rs +++ b/src/usic0_ch0/fmr.rs @@ -401,10 +401,10 @@ impl crate::RegisterSpec for FMR_SPEC { } #[doc = "`write(|w| ..)` method takes [`fmr::W`](W) writer structure"] impl crate::Writable for FMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets FMR to value 0"] impl crate::Resettable for FMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/in_.rs b/src/usic0_ch0/in_.rs index 46535c62..85c48e1d 100644 --- a/src/usic0_ch0/in_.rs +++ b/src/usic0_ch0/in_.rs @@ -27,11 +27,11 @@ impl crate::RegisterSpec for IN_SPEC { } #[doc = "`write(|w| ..)` method takes [`in_::W`](W) writer structure"] impl crate::Writable for IN_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets IN[%s] to value 0"] impl crate::Resettable for IN_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/inpr.rs b/src/usic0_ch0/inpr.rs index 822bc85b..cb0fc855 100644 --- a/src/usic0_ch0/inpr.rs +++ b/src/usic0_ch0/inpr.rs @@ -207,10 +207,10 @@ impl crate::RegisterSpec for INPR_SPEC { impl crate::Readable for INPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`inpr::W`](W) writer structure"] impl crate::Writable for INPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets INPR to value 0"] impl crate::Resettable for INPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/kscfg.rs b/src/usic0_ch0/kscfg.rs index 2318981f..630ffeeb 100644 --- a/src/usic0_ch0/kscfg.rs +++ b/src/usic0_ch0/kscfg.rs @@ -311,10 +311,10 @@ impl crate::RegisterSpec for KSCFG_SPEC { impl crate::Readable for KSCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`kscfg::W`](W) writer structure"] impl crate::Writable for KSCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets KSCFG to value 0"] impl crate::Resettable for KSCFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/outdr.rs b/src/usic0_ch0/outdr.rs index 71145e3d..8080282f 100644 --- a/src/usic0_ch0/outdr.rs +++ b/src/usic0_ch0/outdr.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for OUTDR_SPEC { impl crate::Readable for OUTDR_SPEC {} #[doc = "`reset()` method sets OUTDR to value 0"] impl crate::Resettable for OUTDR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/outr.rs b/src/usic0_ch0/outr.rs index 2af72be6..ceffa844 100644 --- a/src/usic0_ch0/outr.rs +++ b/src/usic0_ch0/outr.rs @@ -25,5 +25,5 @@ impl crate::RegisterSpec for OUTR_SPEC { impl crate::Readable for OUTR_SPEC {} #[doc = "`reset()` method sets OUTR to value 0"] impl crate::Resettable for OUTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pcr.rs b/src/usic0_ch0/pcr.rs index b7b34cb0..d9217af7 100644 --- a/src/usic0_ch0/pcr.rs +++ b/src/usic0_ch0/pcr.rs @@ -505,10 +505,10 @@ impl crate::RegisterSpec for PCR_SPEC { impl crate::Readable for PCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcr::W`](W) writer structure"] impl crate::Writable for PCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCR to value 0"] impl crate::Resettable for PCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pcr_ascmode.rs b/src/usic0_ch0/pcr_ascmode.rs index 2858eb67..6cfece26 100644 --- a/src/usic0_ch0/pcr_ascmode.rs +++ b/src/usic0_ch0/pcr_ascmode.rs @@ -852,10 +852,10 @@ impl crate::RegisterSpec for PCR_ASCMODE_SPEC { impl crate::Readable for PCR_ASCMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcr_ascmode::W`](W) writer structure"] impl crate::Writable for PCR_ASCMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCR_ASCMode to value 0"] impl crate::Resettable for PCR_ASCMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pcr_iicmode.rs b/src/usic0_ch0/pcr_iicmode.rs index ca9f2642..f2863408 100644 --- a/src/usic0_ch0/pcr_iicmode.rs +++ b/src/usic0_ch0/pcr_iicmode.rs @@ -823,10 +823,10 @@ impl crate::RegisterSpec for PCR_IICMODE_SPEC { impl crate::Readable for PCR_IICMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcr_iicmode::W`](W) writer structure"] impl crate::Writable for PCR_IICMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCR_IICMode to value 0"] impl crate::Resettable for PCR_IICMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pcr_iismode.rs b/src/usic0_ch0/pcr_iismode.rs index 2380457b..4b2c29cb 100644 --- a/src/usic0_ch0/pcr_iismode.rs +++ b/src/usic0_ch0/pcr_iismode.rs @@ -552,10 +552,10 @@ impl crate::RegisterSpec for PCR_IISMODE_SPEC { impl crate::Readable for PCR_IISMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcr_iismode::W`](W) writer structure"] impl crate::Writable for PCR_IISMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCR_IISMode to value 0"] impl crate::Resettable for PCR_IISMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pcr_sscmode.rs b/src/usic0_ch0/pcr_sscmode.rs index dbf546c9..955863e2 100644 --- a/src/usic0_ch0/pcr_sscmode.rs +++ b/src/usic0_ch0/pcr_sscmode.rs @@ -797,10 +797,10 @@ impl crate::RegisterSpec for PCR_SSCMODE_SPEC { impl crate::Readable for PCR_SSCMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`pcr_sscmode::W`](W) writer structure"] impl crate::Writable for PCR_SSCMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PCR_SSCMode to value 0"] impl crate::Resettable for PCR_SSCMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/pscr.rs b/src/usic0_ch0/pscr.rs index 3b230922..85248dfa 100644 --- a/src/usic0_ch0/pscr.rs +++ b/src/usic0_ch0/pscr.rs @@ -648,10 +648,10 @@ impl crate::RegisterSpec for PSCR_SPEC { } #[doc = "`write(|w| ..)` method takes [`pscr::W`](W) writer structure"] impl crate::Writable for PSCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSCR to value 0"] impl crate::Resettable for PSCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/psr.rs b/src/usic0_ch0/psr.rs index 0d6ee57e..5f89222c 100644 --- a/src/usic0_ch0/psr.rs +++ b/src/usic0_ch0/psr.rs @@ -623,10 +623,10 @@ impl crate::RegisterSpec for PSR_SPEC { impl crate::Readable for PSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`psr::W`](W) writer structure"] impl crate::Writable for PSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSR to value 0"] impl crate::Resettable for PSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/psr_ascmode.rs b/src/usic0_ch0/psr_ascmode.rs index cc267598..4307c5e5 100644 --- a/src/usic0_ch0/psr_ascmode.rs +++ b/src/usic0_ch0/psr_ascmode.rs @@ -1090,10 +1090,10 @@ impl crate::RegisterSpec for PSR_ASCMODE_SPEC { impl crate::Readable for PSR_ASCMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`psr_ascmode::W`](W) writer structure"] impl crate::Writable for PSR_ASCMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSR_ASCMode to value 0"] impl crate::Resettable for PSR_ASCMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/psr_iicmode.rs b/src/usic0_ch0/psr_iicmode.rs index abee6fa8..8dcbff65 100644 --- a/src/usic0_ch0/psr_iicmode.rs +++ b/src/usic0_ch0/psr_iicmode.rs @@ -1113,10 +1113,10 @@ impl crate::RegisterSpec for PSR_IICMODE_SPEC { impl crate::Readable for PSR_IICMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`psr_iicmode::W`](W) writer structure"] impl crate::Writable for PSR_IICMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSR_IICMode to value 0"] impl crate::Resettable for PSR_IICMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/psr_iismode.rs b/src/usic0_ch0/psr_iismode.rs index 50acefaa..335872ab 100644 --- a/src/usic0_ch0/psr_iismode.rs +++ b/src/usic0_ch0/psr_iismode.rs @@ -857,10 +857,10 @@ impl crate::RegisterSpec for PSR_IISMODE_SPEC { impl crate::Readable for PSR_IISMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`psr_iismode::W`](W) writer structure"] impl crate::Writable for PSR_IISMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSR_IISMode to value 0"] impl crate::Resettable for PSR_IISMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/psr_sscmode.rs b/src/usic0_ch0/psr_sscmode.rs index 25273f86..7304d41b 100644 --- a/src/usic0_ch0/psr_sscmode.rs +++ b/src/usic0_ch0/psr_sscmode.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for PSR_SSCMODE_SPEC { impl crate::Readable for PSR_SSCMODE_SPEC {} #[doc = "`write(|w| ..)` method takes [`psr_sscmode::W`](W) writer structure"] impl crate::Writable for PSR_SSCMODE_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets PSR_SSCMode to value 0"] impl crate::Resettable for PSR_SSCMODE_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbctr.rs b/src/usic0_ch0/rbctr.rs index 27dfdc07..b6417cfe 100644 --- a/src/usic0_ch0/rbctr.rs +++ b/src/usic0_ch0/rbctr.rs @@ -1007,10 +1007,10 @@ impl crate::RegisterSpec for RBCTR_SPEC { impl crate::Readable for RBCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rbctr::W`](W) writer structure"] impl crate::Writable for RBCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RBCTR to value 0"] impl crate::Resettable for RBCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbuf.rs b/src/usic0_ch0/rbuf.rs index e011fb7b..6388c73e 100644 --- a/src/usic0_ch0/rbuf.rs +++ b/src/usic0_ch0/rbuf.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RBUF_SPEC { impl crate::Readable for RBUF_SPEC {} #[doc = "`reset()` method sets RBUF to value 0"] impl crate::Resettable for RBUF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbuf0.rs b/src/usic0_ch0/rbuf0.rs index a5db333a..cfc36b8c 100644 --- a/src/usic0_ch0/rbuf0.rs +++ b/src/usic0_ch0/rbuf0.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RBUF0_SPEC { impl crate::Readable for RBUF0_SPEC {} #[doc = "`reset()` method sets RBUF0 to value 0"] impl crate::Resettable for RBUF0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbuf01sr.rs b/src/usic0_ch0/rbuf01sr.rs index 4ca1ed08..b618811a 100644 --- a/src/usic0_ch0/rbuf01sr.rs +++ b/src/usic0_ch0/rbuf01sr.rs @@ -449,5 +449,5 @@ impl crate::RegisterSpec for RBUF01SR_SPEC { impl crate::Readable for RBUF01SR_SPEC {} #[doc = "`reset()` method sets RBUF01SR to value 0"] impl crate::Resettable for RBUF01SR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbuf1.rs b/src/usic0_ch0/rbuf1.rs index b602d7f2..036e9716 100644 --- a/src/usic0_ch0/rbuf1.rs +++ b/src/usic0_ch0/rbuf1.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RBUF1_SPEC { impl crate::Readable for RBUF1_SPEC {} #[doc = "`reset()` method sets RBUF1 to value 0"] impl crate::Resettable for RBUF1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbufd.rs b/src/usic0_ch0/rbufd.rs index f62c0927..441149e7 100644 --- a/src/usic0_ch0/rbufd.rs +++ b/src/usic0_ch0/rbufd.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for RBUFD_SPEC { impl crate::Readable for RBUFD_SPEC {} #[doc = "`reset()` method sets RBUFD to value 0"] impl crate::Resettable for RBUFD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/rbufsr.rs b/src/usic0_ch0/rbufsr.rs index bfd8af35..034f4742 100644 --- a/src/usic0_ch0/rbufsr.rs +++ b/src/usic0_ch0/rbufsr.rs @@ -60,5 +60,5 @@ impl crate::RegisterSpec for RBUFSR_SPEC { impl crate::Readable for RBUFSR_SPEC {} #[doc = "`reset()` method sets RBUFSR to value 0"] impl crate::Resettable for RBUFSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/sctr.rs b/src/usic0_ch0/sctr.rs index 5df9b95d..f798b07d 100644 --- a/src/usic0_ch0/sctr.rs +++ b/src/usic0_ch0/sctr.rs @@ -583,10 +583,10 @@ impl crate::RegisterSpec for SCTR_SPEC { impl crate::Readable for SCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`sctr::W`](W) writer structure"] impl crate::Writable for SCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SCTR to value 0"] impl crate::Resettable for SCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/tbctr.rs b/src/usic0_ch0/tbctr.rs index 1d89dd4a..a758af2c 100644 --- a/src/usic0_ch0/tbctr.rs +++ b/src/usic0_ch0/tbctr.rs @@ -747,10 +747,10 @@ impl crate::RegisterSpec for TBCTR_SPEC { impl crate::Readable for TBCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`tbctr::W`](W) writer structure"] impl crate::Writable for TBCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TBCTR to value 0"] impl crate::Resettable for TBCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/tbuf.rs b/src/usic0_ch0/tbuf.rs index 71d85417..4a64e580 100644 --- a/src/usic0_ch0/tbuf.rs +++ b/src/usic0_ch0/tbuf.rs @@ -40,11 +40,11 @@ impl crate::RegisterSpec for TBUF_SPEC { impl crate::Readable for TBUF_SPEC {} #[doc = "`write(|w| ..)` method takes [`tbuf::W`](W) writer structure"] impl crate::Writable for TBUF_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TBUF[%s] to value 0"] impl crate::Resettable for TBUF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/tcsr.rs b/src/usic0_ch0/tcsr.rs index 3246cb9b..47334508 100644 --- a/src/usic0_ch0/tcsr.rs +++ b/src/usic0_ch0/tcsr.rs @@ -972,10 +972,10 @@ impl crate::RegisterSpec for TCSR_SPEC { impl crate::Readable for TCSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`tcsr::W`](W) writer structure"] impl crate::Writable for TCSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TCSR to value 0"] impl crate::Resettable for TCSR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/trbptr.rs b/src/usic0_ch0/trbptr.rs index 9cd56075..ed9103d8 100644 --- a/src/usic0_ch0/trbptr.rs +++ b/src/usic0_ch0/trbptr.rs @@ -39,5 +39,5 @@ impl crate::RegisterSpec for TRBPTR_SPEC { impl crate::Readable for TRBPTR_SPEC {} #[doc = "`reset()` method sets TRBPTR to value 0"] impl crate::Resettable for TRBPTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/trbscr.rs b/src/usic0_ch0/trbscr.rs index 5014f439..23dc81f7 100644 --- a/src/usic0_ch0/trbscr.rs +++ b/src/usic0_ch0/trbscr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for TRBSCR_SPEC { } #[doc = "`write(|w| ..)` method takes [`trbscr::W`](W) writer structure"] impl crate::Writable for TRBSCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRBSCR to value 0"] impl crate::Resettable for TRBSCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/usic0_ch0/trbsr.rs b/src/usic0_ch0/trbsr.rs index 43e9a1ec..db7ac80d 100644 --- a/src/usic0_ch0/trbsr.rs +++ b/src/usic0_ch0/trbsr.rs @@ -687,10 +687,10 @@ impl crate::RegisterSpec for TRBSR_SPEC { impl crate::Readable for TRBSR_SPEC {} #[doc = "`write(|w| ..)` method takes [`trbsr::W`](W) writer structure"] impl crate::Writable for TRBSR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets TRBSR to value 0x0808"] impl crate::Resettable for TRBSR_SPEC { - const RESET_VALUE: Self::Ux = 0x0808; + const RESET_VALUE: u32 = 0x0808; } diff --git a/src/vadc/brsctrl.rs b/src/vadc/brsctrl.rs index f26a1b38..c50f8a97 100644 --- a/src/vadc/brsctrl.rs +++ b/src/vadc/brsctrl.rs @@ -239,10 +239,10 @@ impl crate::RegisterSpec for BRSCTRL_SPEC { impl crate::Readable for BRSCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`brsctrl::W`](W) writer structure"] impl crate::Writable for BRSCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BRSCTRL to value 0"] impl crate::Resettable for BRSCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/brsmr.rs b/src/vadc/brsmr.rs index 6e54b184..09eb6da5 100644 --- a/src/vadc/brsmr.rs +++ b/src/vadc/brsmr.rs @@ -556,10 +556,10 @@ impl crate::RegisterSpec for BRSMR_SPEC { impl crate::Readable for BRSMR_SPEC {} #[doc = "`write(|w| ..)` method takes [`brsmr::W`](W) writer structure"] impl crate::Writable for BRSMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BRSMR to value 0"] impl crate::Resettable for BRSMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/brspnd.rs b/src/vadc/brspnd.rs index 0964eb0d..c48aad90 100644 --- a/src/vadc/brspnd.rs +++ b/src/vadc/brspnd.rs @@ -537,11 +537,11 @@ impl crate::RegisterSpec for BRSPND_SPEC { impl crate::Readable for BRSPND_SPEC {} #[doc = "`write(|w| ..)` method takes [`brspnd::W`](W) writer structure"] impl crate::Writable for BRSPND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BRSPND[%s] to value 0"] impl crate::Resettable for BRSPND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/brssel.rs b/src/vadc/brssel.rs index d90b4998..89e86b86 100644 --- a/src/vadc/brssel.rs +++ b/src/vadc/brssel.rs @@ -537,11 +537,11 @@ impl crate::RegisterSpec for BRSSEL_SPEC { impl crate::Readable for BRSSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`brssel::W`](W) writer structure"] impl crate::Writable for BRSSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BRSSEL[%s] to value 0"] impl crate::Resettable for BRSSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/clc.rs b/src/vadc/clc.rs index 7a7c39c0..3f95b451 100644 --- a/src/vadc/clc.rs +++ b/src/vadc/clc.rs @@ -194,10 +194,10 @@ impl crate::RegisterSpec for CLC_SPEC { impl crate::Readable for CLC_SPEC {} #[doc = "`write(|w| ..)` method takes [`clc::W`](W) writer structure"] impl crate::Writable for CLC_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CLC to value 0x03"] impl crate::Resettable for CLC_SPEC { - const RESET_VALUE: Self::Ux = 0x03; + const RESET_VALUE: u32 = 0x03; } diff --git a/src/vadc/emuxsel.rs b/src/vadc/emuxsel.rs index 795a07b4..aaf22fd7 100644 --- a/src/vadc/emuxsel.rs +++ b/src/vadc/emuxsel.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for EMUXSEL_SPEC { impl crate::Readable for EMUXSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`emuxsel::W`](W) writer structure"] impl crate::Writable for EMUXSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EMUXSEL to value 0"] impl crate::Resettable for EMUXSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globbound.rs b/src/vadc/globbound.rs index adb7f20f..6b148abc 100644 --- a/src/vadc/globbound.rs +++ b/src/vadc/globbound.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for GLOBBOUND_SPEC { impl crate::Readable for GLOBBOUND_SPEC {} #[doc = "`write(|w| ..)` method takes [`globbound::W`](W) writer structure"] impl crate::Writable for GLOBBOUND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBBOUND to value 0"] impl crate::Resettable for GLOBBOUND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globcfg.rs b/src/vadc/globcfg.rs index 597ae7f1..b6d214e3 100644 --- a/src/vadc/globcfg.rs +++ b/src/vadc/globcfg.rs @@ -611,10 +611,10 @@ impl crate::RegisterSpec for GLOBCFG_SPEC { impl crate::Readable for GLOBCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`globcfg::W`](W) writer structure"] impl crate::Writable for GLOBCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBCFG to value 0x0f"] impl crate::Resettable for GLOBCFG_SPEC { - const RESET_VALUE: Self::Ux = 0x0f; + const RESET_VALUE: u32 = 0x0f; } diff --git a/src/vadc/globeflag.rs b/src/vadc/globeflag.rs index 7e7291c7..d5a7703b 100644 --- a/src/vadc/globeflag.rs +++ b/src/vadc/globeflag.rs @@ -227,10 +227,10 @@ impl crate::RegisterSpec for GLOBEFLAG_SPEC { impl crate::Readable for GLOBEFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`globeflag::W`](W) writer structure"] impl crate::Writable for GLOBEFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBEFLAG to value 0"] impl crate::Resettable for GLOBEFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globevnp.rs b/src/vadc/globevnp.rs index 9edca062..52870b89 100644 --- a/src/vadc/globevnp.rs +++ b/src/vadc/globevnp.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for GLOBEVNP_SPEC { impl crate::Readable for GLOBEVNP_SPEC {} #[doc = "`write(|w| ..)` method takes [`globevnp::W`](W) writer structure"] impl crate::Writable for GLOBEVNP_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBEVNP to value 0"] impl crate::Resettable for GLOBEVNP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globiclass.rs b/src/vadc/globiclass.rs index e4a6b8bc..b2e08f9b 100644 --- a/src/vadc/globiclass.rs +++ b/src/vadc/globiclass.rs @@ -247,11 +247,11 @@ impl crate::RegisterSpec for GLOBICLASS_SPEC { impl crate::Readable for GLOBICLASS_SPEC {} #[doc = "`write(|w| ..)` method takes [`globiclass::W`](W) writer structure"] impl crate::Writable for GLOBICLASS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBICLASS[%s] to value 0"] impl crate::Resettable for GLOBICLASS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globrcr.rs b/src/vadc/globrcr.rs index 3232d560..17d80fd9 100644 --- a/src/vadc/globrcr.rs +++ b/src/vadc/globrcr.rs @@ -210,10 +210,10 @@ impl crate::RegisterSpec for GLOBRCR_SPEC { impl crate::Readable for GLOBRCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`globrcr::W`](W) writer structure"] impl crate::Writable for GLOBRCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBRCR to value 0"] impl crate::Resettable for GLOBRCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globres.rs b/src/vadc/globres.rs index f55580a2..f651dc23 100644 --- a/src/vadc/globres.rs +++ b/src/vadc/globres.rs @@ -173,10 +173,10 @@ impl crate::RegisterSpec for GLOBRES_SPEC { impl crate::Readable for GLOBRES_SPEC {} #[doc = "`write(|w| ..)` method takes [`globres::W`](W) writer structure"] impl crate::Writable for GLOBRES_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBRES to value 0"] impl crate::Resettable for GLOBRES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globresd.rs b/src/vadc/globresd.rs index 8d7c8699..365791c1 100644 --- a/src/vadc/globresd.rs +++ b/src/vadc/globresd.rs @@ -173,10 +173,10 @@ impl crate::RegisterSpec for GLOBRESD_SPEC { impl crate::Readable for GLOBRESD_SPEC {} #[doc = "`write(|w| ..)` method takes [`globresd::W`](W) writer structure"] impl crate::Writable for GLOBRESD_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBRESD to value 0"] impl crate::Resettable for GLOBRESD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/globtf.rs b/src/vadc/globtf.rs index b358599e..24741cf5 100644 --- a/src/vadc/globtf.rs +++ b/src/vadc/globtf.rs @@ -338,10 +338,10 @@ impl crate::RegisterSpec for GLOBTF_SPEC { impl crate::Readable for GLOBTF_SPEC {} #[doc = "`write(|w| ..)` method takes [`globtf::W`](W) writer structure"] impl crate::Writable for GLOBTF_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets GLOBTF to value 0"] impl crate::Resettable for GLOBTF_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc/id.rs b/src/vadc/id.rs index 39ad19e3..2b461bda 100644 --- a/src/vadc/id.rs +++ b/src/vadc/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00c5_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00c5_c000; + const RESET_VALUE: u32 = 0x00c5_c000; } diff --git a/src/vadc/ocs.rs b/src/vadc/ocs.rs index 68f44569..ede8b0cd 100644 --- a/src/vadc/ocs.rs +++ b/src/vadc/ocs.rs @@ -312,10 +312,10 @@ impl crate::RegisterSpec for OCS_SPEC { impl crate::Readable for OCS_SPEC {} #[doc = "`write(|w| ..)` method takes [`ocs::W`](W) writer structure"] impl crate::Writable for OCS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets OCS to value 0"] impl crate::Resettable for OCS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/alias.rs b/src/vadc_g0/alias.rs index 07fdc450..fd77b2bf 100644 --- a/src/vadc_g0/alias.rs +++ b/src/vadc_g0/alias.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for ALIAS_SPEC { impl crate::Readable for ALIAS_SPEC {} #[doc = "`write(|w| ..)` method takes [`alias::W`](W) writer structure"] impl crate::Writable for ALIAS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ALIAS to value 0x0100"] impl crate::Resettable for ALIAS_SPEC { - const RESET_VALUE: Self::Ux = 0x0100; + const RESET_VALUE: u32 = 0x0100; } diff --git a/src/vadc_g0/arbcfg.rs b/src/vadc_g0/arbcfg.rs index d8840d8b..078bb33f 100644 --- a/src/vadc_g0/arbcfg.rs +++ b/src/vadc_g0/arbcfg.rs @@ -369,10 +369,10 @@ impl crate::RegisterSpec for ARBCFG_SPEC { impl crate::Readable for ARBCFG_SPEC {} #[doc = "`write(|w| ..)` method takes [`arbcfg::W`](W) writer structure"] impl crate::Writable for ARBCFG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ARBCFG to value 0"] impl crate::Resettable for ARBCFG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/arbpr.rs b/src/vadc_g0/arbpr.rs index 1dd4d457..363b605a 100644 --- a/src/vadc_g0/arbpr.rs +++ b/src/vadc_g0/arbpr.rs @@ -619,10 +619,10 @@ impl crate::RegisterSpec for ARBPR_SPEC { impl crate::Readable for ARBPR_SPEC {} #[doc = "`write(|w| ..)` method takes [`arbpr::W`](W) writer structure"] impl crate::Writable for ARBPR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ARBPR to value 0"] impl crate::Resettable for ARBPR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/asctrl.rs b/src/vadc_g0/asctrl.rs index 948b1dd4..3c768a0c 100644 --- a/src/vadc_g0/asctrl.rs +++ b/src/vadc_g0/asctrl.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for ASCTRL_SPEC { impl crate::Readable for ASCTRL_SPEC {} #[doc = "`write(|w| ..)` method takes [`asctrl::W`](W) writer structure"] impl crate::Writable for ASCTRL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ASCTRL to value 0"] impl crate::Resettable for ASCTRL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/asmr.rs b/src/vadc_g0/asmr.rs index 1025cef0..36b4e0e3 100644 --- a/src/vadc_g0/asmr.rs +++ b/src/vadc_g0/asmr.rs @@ -556,10 +556,10 @@ impl crate::RegisterSpec for ASMR_SPEC { impl crate::Readable for ASMR_SPEC {} #[doc = "`write(|w| ..)` method takes [`asmr::W`](W) writer structure"] impl crate::Writable for ASMR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ASMR to value 0"] impl crate::Resettable for ASMR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/aspnd.rs b/src/vadc_g0/aspnd.rs index c0b5a90e..b35e26f8 100644 --- a/src/vadc_g0/aspnd.rs +++ b/src/vadc_g0/aspnd.rs @@ -537,10 +537,10 @@ impl crate::RegisterSpec for ASPND_SPEC { impl crate::Readable for ASPND_SPEC {} #[doc = "`write(|w| ..)` method takes [`aspnd::W`](W) writer structure"] impl crate::Writable for ASPND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ASPND to value 0"] impl crate::Resettable for ASPND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/assel.rs b/src/vadc_g0/assel.rs index d4e6b163..a2c534df 100644 --- a/src/vadc_g0/assel.rs +++ b/src/vadc_g0/assel.rs @@ -537,10 +537,10 @@ impl crate::RegisterSpec for ASSEL_SPEC { impl crate::Readable for ASSEL_SPEC {} #[doc = "`write(|w| ..)` method takes [`assel::W`](W) writer structure"] impl crate::Writable for ASSEL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ASSEL to value 0"] impl crate::Resettable for ASSEL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/bfl.rs b/src/vadc_g0/bfl.rs index 43034d56..b95a1319 100644 --- a/src/vadc_g0/bfl.rs +++ b/src/vadc_g0/bfl.rs @@ -445,10 +445,10 @@ impl crate::RegisterSpec for BFL_SPEC { impl crate::Readable for BFL_SPEC {} #[doc = "`write(|w| ..)` method takes [`bfl::W`](W) writer structure"] impl crate::Writable for BFL_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BFL to value 0"] impl crate::Resettable for BFL_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/bound.rs b/src/vadc_g0/bound.rs index 523bef5d..b94b7a4f 100644 --- a/src/vadc_g0/bound.rs +++ b/src/vadc_g0/bound.rs @@ -55,10 +55,10 @@ impl crate::RegisterSpec for BOUND_SPEC { impl crate::Readable for BOUND_SPEC {} #[doc = "`write(|w| ..)` method takes [`bound::W`](W) writer structure"] impl crate::Writable for BOUND_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets BOUND to value 0"] impl crate::Resettable for BOUND_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/cefclr.rs b/src/vadc_g0/cefclr.rs index 534fc137..9ddcf77f 100644 --- a/src/vadc_g0/cefclr.rs +++ b/src/vadc_g0/cefclr.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for CEFCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`cefclr::W`](W) writer structure"] impl crate::Writable for CEFCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CEFCLR to value 0"] impl crate::Resettable for CEFCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/ceflag.rs b/src/vadc_g0/ceflag.rs index 00fde71b..396cec4a 100644 --- a/src/vadc_g0/ceflag.rs +++ b/src/vadc_g0/ceflag.rs @@ -537,10 +537,10 @@ impl crate::RegisterSpec for CEFLAG_SPEC { impl crate::Readable for CEFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`ceflag::W`](W) writer structure"] impl crate::Writable for CEFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CEFLAG to value 0"] impl crate::Resettable for CEFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/cevnp0.rs b/src/vadc_g0/cevnp0.rs index 5d0e5ea9..0e80a25c 100644 --- a/src/vadc_g0/cevnp0.rs +++ b/src/vadc_g0/cevnp0.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for CEVNP0_SPEC { impl crate::Readable for CEVNP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`cevnp0::W`](W) writer structure"] impl crate::Writable for CEVNP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CEVNP0 to value 0"] impl crate::Resettable for CEVNP0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/chass.rs b/src/vadc_g0/chass.rs index 0b134638..7d121d24 100644 --- a/src/vadc_g0/chass.rs +++ b/src/vadc_g0/chass.rs @@ -537,10 +537,10 @@ impl crate::RegisterSpec for CHASS_SPEC { impl crate::Readable for CHASS_SPEC {} #[doc = "`write(|w| ..)` method takes [`chass::W`](W) writer structure"] impl crate::Writable for CHASS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHASS to value 0"] impl crate::Resettable for CHASS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/chctr.rs b/src/vadc_g0/chctr.rs index c4e669ed..90e6cb4a 100644 --- a/src/vadc_g0/chctr.rs +++ b/src/vadc_g0/chctr.rs @@ -869,11 +869,11 @@ impl crate::RegisterSpec for CHCTR_SPEC { impl crate::Readable for CHCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`chctr::W`](W) writer structure"] impl crate::Writable for CHCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CHCTR[%s] to value 0"] impl crate::Resettable for CHCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/emuxctr.rs b/src/vadc_g0/emuxctr.rs index 2ac6b57e..fb806927 100644 --- a/src/vadc_g0/emuxctr.rs +++ b/src/vadc_g0/emuxctr.rs @@ -323,10 +323,10 @@ impl crate::RegisterSpec for EMUXCTR_SPEC { impl crate::Readable for EMUXCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`emuxctr::W`](W) writer structure"] impl crate::Writable for EMUXCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets EMUXCTR to value 0"] impl crate::Resettable for EMUXCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/iclass.rs b/src/vadc_g0/iclass.rs index 8b2652b2..7f5b7bd7 100644 --- a/src/vadc_g0/iclass.rs +++ b/src/vadc_g0/iclass.rs @@ -247,11 +247,11 @@ impl crate::RegisterSpec for ICLASS_SPEC { impl crate::Readable for ICLASS_SPEC {} #[doc = "`write(|w| ..)` method takes [`iclass::W`](W) writer structure"] impl crate::Writable for ICLASS_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets ICLASS[%s] to value 0"] impl crate::Resettable for ICLASS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/q0r0.rs b/src/vadc_g0/q0r0.rs index 32e69a06..4bdcd6a7 100644 --- a/src/vadc_g0/q0r0.rs +++ b/src/vadc_g0/q0r0.rs @@ -182,5 +182,5 @@ impl crate::RegisterSpec for Q0R0_SPEC { impl crate::Readable for Q0R0_SPEC {} #[doc = "`reset()` method sets Q0R0 to value 0"] impl crate::Resettable for Q0R0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/qbur0.rs b/src/vadc_g0/qbur0.rs index be90ae45..bcd1b382 100644 --- a/src/vadc_g0/qbur0.rs +++ b/src/vadc_g0/qbur0.rs @@ -80,5 +80,5 @@ impl crate::RegisterSpec for QBUR0_SPEC { impl crate::Readable for QBUR0_SPEC {} #[doc = "`reset()` method sets QBUR0 to value 0"] impl crate::Resettable for QBUR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/qctrl0.rs b/src/vadc_g0/qctrl0.rs index 0ec915c4..bc7df280 100644 --- a/src/vadc_g0/qctrl0.rs +++ b/src/vadc_g0/qctrl0.rs @@ -340,10 +340,10 @@ impl crate::RegisterSpec for QCTRL0_SPEC { impl crate::Readable for QCTRL0_SPEC {} #[doc = "`write(|w| ..)` method takes [`qctrl0::W`](W) writer structure"] impl crate::Writable for QCTRL0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets QCTRL0 to value 0"] impl crate::Resettable for QCTRL0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/qinr0.rs b/src/vadc_g0/qinr0.rs index 59e95a9c..bad5b764 100644 --- a/src/vadc_g0/qinr0.rs +++ b/src/vadc_g0/qinr0.rs @@ -138,10 +138,10 @@ impl crate::RegisterSpec for QINR0_SPEC { } #[doc = "`write(|w| ..)` method takes [`qinr0::W`](W) writer structure"] impl crate::Writable for QINR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets QINR0 to value 0"] impl crate::Resettable for QINR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/qmr0.rs b/src/vadc_g0/qmr0.rs index 6909b2cb..e519883d 100644 --- a/src/vadc_g0/qmr0.rs +++ b/src/vadc_g0/qmr0.rs @@ -397,10 +397,10 @@ impl crate::RegisterSpec for QMR0_SPEC { impl crate::Readable for QMR0_SPEC {} #[doc = "`write(|w| ..)` method takes [`qmr0::W`](W) writer structure"] impl crate::Writable for QMR0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets QMR0 to value 0"] impl crate::Resettable for QMR0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/qsr0.rs b/src/vadc_g0/qsr0.rs index 3113eb26..d4cc888a 100644 --- a/src/vadc_g0/qsr0.rs +++ b/src/vadc_g0/qsr0.rs @@ -196,5 +196,5 @@ impl crate::RegisterSpec for QSR0_SPEC { impl crate::Readable for QSR0_SPEC {} #[doc = "`reset()` method sets QSR0 to value 0x20"] impl crate::Resettable for QSR0_SPEC { - const RESET_VALUE: Self::Ux = 0x20; + const RESET_VALUE: u32 = 0x20; } diff --git a/src/vadc_g0/rcr.rs b/src/vadc_g0/rcr.rs index a05e08e5..f041abc3 100644 --- a/src/vadc_g0/rcr.rs +++ b/src/vadc_g0/rcr.rs @@ -321,11 +321,11 @@ impl crate::RegisterSpec for RCR_SPEC { impl crate::Readable for RCR_SPEC {} #[doc = "`write(|w| ..)` method takes [`rcr::W`](W) writer structure"] impl crate::Writable for RCR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RCR[%s] to value 0"] impl crate::Resettable for RCR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/refclr.rs b/src/vadc_g0/refclr.rs index 12d4f659..205e02ec 100644 --- a/src/vadc_g0/refclr.rs +++ b/src/vadc_g0/refclr.rs @@ -611,10 +611,10 @@ impl crate::RegisterSpec for REFCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`refclr::W`](W) writer structure"] impl crate::Writable for REFCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REFCLR to value 0"] impl crate::Resettable for REFCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/reflag.rs b/src/vadc_g0/reflag.rs index a5198267..88f4721f 100644 --- a/src/vadc_g0/reflag.rs +++ b/src/vadc_g0/reflag.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for REFLAG_SPEC { impl crate::Readable for REFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`reflag::W`](W) writer structure"] impl crate::Writable for REFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REFLAG to value 0"] impl crate::Resettable for REFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/res.rs b/src/vadc_g0/res.rs index 060d12e3..d0fb8a4a 100644 --- a/src/vadc_g0/res.rs +++ b/src/vadc_g0/res.rs @@ -197,11 +197,11 @@ impl crate::RegisterSpec for RES_SPEC { impl crate::Readable for RES_SPEC {} #[doc = "`write(|w| ..)` method takes [`res::W`](W) writer structure"] impl crate::Writable for RES_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets RES[%s] to value 0"] impl crate::Resettable for RES_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/resd.rs b/src/vadc_g0/resd.rs index 1f8bf863..5f6908d2 100644 --- a/src/vadc_g0/resd.rs +++ b/src/vadc_g0/resd.rs @@ -176,5 +176,5 @@ impl crate::Readable for RESD_SPEC {} #[doc = "`reset()` method sets RESD[%s] to value 0"] impl crate::Resettable for RESD_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/revnp0.rs b/src/vadc_g0/revnp0.rs index a823ce49..e610edcd 100644 --- a/src/vadc_g0/revnp0.rs +++ b/src/vadc_g0/revnp0.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for REVNP0_SPEC { impl crate::Readable for REVNP0_SPEC {} #[doc = "`write(|w| ..)` method takes [`revnp0::W`](W) writer structure"] impl crate::Writable for REVNP0_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REVNP0 to value 0"] impl crate::Resettable for REVNP0_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/revnp1.rs b/src/vadc_g0/revnp1.rs index 28a3e0d1..4b844686 100644 --- a/src/vadc_g0/revnp1.rs +++ b/src/vadc_g0/revnp1.rs @@ -793,10 +793,10 @@ impl crate::RegisterSpec for REVNP1_SPEC { impl crate::Readable for REVNP1_SPEC {} #[doc = "`write(|w| ..)` method takes [`revnp1::W`](W) writer structure"] impl crate::Writable for REVNP1_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets REVNP1 to value 0"] impl crate::Resettable for REVNP1_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/sefclr.rs b/src/vadc_g0/sefclr.rs index 148fa710..e0db5bb8 100644 --- a/src/vadc_g0/sefclr.rs +++ b/src/vadc_g0/sefclr.rs @@ -93,10 +93,10 @@ impl crate::RegisterSpec for SEFCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`sefclr::W`](W) writer structure"] impl crate::Writable for SEFCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SEFCLR to value 0"] impl crate::Resettable for SEFCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/seflag.rs b/src/vadc_g0/seflag.rs index 6df823fb..6baed328 100644 --- a/src/vadc_g0/seflag.rs +++ b/src/vadc_g0/seflag.rs @@ -153,10 +153,10 @@ impl crate::RegisterSpec for SEFLAG_SPEC { impl crate::Readable for SEFLAG_SPEC {} #[doc = "`write(|w| ..)` method takes [`seflag::W`](W) writer structure"] impl crate::Writable for SEFLAG_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SEFLAG to value 0"] impl crate::Resettable for SEFLAG_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/sevnp.rs b/src/vadc_g0/sevnp.rs index afce0c66..d48eb49b 100644 --- a/src/vadc_g0/sevnp.rs +++ b/src/vadc_g0/sevnp.rs @@ -217,10 +217,10 @@ impl crate::RegisterSpec for SEVNP_SPEC { impl crate::Readable for SEVNP_SPEC {} #[doc = "`write(|w| ..)` method takes [`sevnp::W`](W) writer structure"] impl crate::Writable for SEVNP_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SEVNP to value 0"] impl crate::Resettable for SEVNP_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/sract.rs b/src/vadc_g0/sract.rs index 6b8a3fd1..55a2486f 100644 --- a/src/vadc_g0/sract.rs +++ b/src/vadc_g0/sract.rs @@ -315,10 +315,10 @@ impl crate::RegisterSpec for SRACT_SPEC { } #[doc = "`write(|w| ..)` method takes [`sract::W`](W) writer structure"] impl crate::Writable for SRACT_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRACT to value 0"] impl crate::Resettable for SRACT_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/synctr.rs b/src/vadc_g0/synctr.rs index 6be42c4c..db485052 100644 --- a/src/vadc_g0/synctr.rs +++ b/src/vadc_g0/synctr.rs @@ -313,10 +313,10 @@ impl crate::RegisterSpec for SYNCTR_SPEC { impl crate::Readable for SYNCTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`synctr::W`](W) writer structure"] impl crate::Writable for SYNCTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SYNCTR to value 0"] impl crate::Resettable for SYNCTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/vadc_g0/vfr.rs b/src/vadc_g0/vfr.rs index b8300857..06476757 100644 --- a/src/vadc_g0/vfr.rs +++ b/src/vadc_g0/vfr.rs @@ -1049,10 +1049,10 @@ impl crate::RegisterSpec for VFR_SPEC { impl crate::Readable for VFR_SPEC {} #[doc = "`write(|w| ..)` method takes [`vfr::W`](W) writer structure"] impl crate::Writable for VFR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets VFR to value 0"] impl crate::Resettable for VFR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/ctr.rs b/src/wdt/ctr.rs index 048a7955..3b106525 100644 --- a/src/wdt/ctr.rs +++ b/src/wdt/ctr.rs @@ -85,10 +85,10 @@ impl crate::RegisterSpec for CTR_SPEC { impl crate::Readable for CTR_SPEC {} #[doc = "`write(|w| ..)` method takes [`ctr::W`](W) writer structure"] impl crate::Writable for CTR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets CTR to value 0"] impl crate::Resettable for CTR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/id.rs b/src/wdt/id.rs index bc458f14..aff37fe6 100644 --- a/src/wdt/id.rs +++ b/src/wdt/id.rs @@ -32,5 +32,5 @@ impl crate::RegisterSpec for ID_SPEC { impl crate::Readable for ID_SPEC {} #[doc = "`reset()` method sets ID to value 0x00ad_c000"] impl crate::Resettable for ID_SPEC { - const RESET_VALUE: Self::Ux = 0x00ad_c000; + const RESET_VALUE: u32 = 0x00ad_c000; } diff --git a/src/wdt/srv.rs b/src/wdt/srv.rs index a4cc0059..888d4090 100644 --- a/src/wdt/srv.rs +++ b/src/wdt/srv.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for SRV_SPEC { } #[doc = "`write(|w| ..)` method takes [`srv::W`](W) writer structure"] impl crate::Writable for SRV_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets SRV to value 0"] impl crate::Resettable for SRV_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/tim.rs b/src/wdt/tim.rs index 0888757c..1c2e5b06 100644 --- a/src/wdt/tim.rs +++ b/src/wdt/tim.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for TIM_SPEC { impl crate::Readable for TIM_SPEC {} #[doc = "`reset()` method sets TIM to value 0"] impl crate::Resettable for TIM_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/wdtclr.rs b/src/wdt/wdtclr.rs index 7658c29b..7fb7c53e 100644 --- a/src/wdt/wdtclr.rs +++ b/src/wdt/wdtclr.rs @@ -27,10 +27,10 @@ impl crate::RegisterSpec for WDTCLR_SPEC { } #[doc = "`write(|w| ..)` method takes [`wdtclr::W`](W) writer structure"] impl crate::Writable for WDTCLR_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets WDTCLR to value 0"] impl crate::Resettable for WDTCLR_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/wdtsts.rs b/src/wdt/wdtsts.rs index 46e3498c..99190fa2 100644 --- a/src/wdt/wdtsts.rs +++ b/src/wdt/wdtsts.rs @@ -18,5 +18,5 @@ impl crate::RegisterSpec for WDTSTS_SPEC { impl crate::Readable for WDTSTS_SPEC {} #[doc = "`reset()` method sets WDTSTS to value 0"] impl crate::Resettable for WDTSTS_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/wlb.rs b/src/wdt/wlb.rs index 2dd4aab4..c885e4f0 100644 --- a/src/wdt/wlb.rs +++ b/src/wdt/wlb.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for WLB_SPEC { impl crate::Readable for WLB_SPEC {} #[doc = "`write(|w| ..)` method takes [`wlb::W`](W) writer structure"] impl crate::Writable for WLB_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets WLB to value 0"] impl crate::Resettable for WLB_SPEC { - const RESET_VALUE: Self::Ux = 0; + const RESET_VALUE: u32 = 0; } diff --git a/src/wdt/wub.rs b/src/wdt/wub.rs index 282c19d4..f5a65192 100644 --- a/src/wdt/wub.rs +++ b/src/wdt/wub.rs @@ -40,10 +40,10 @@ impl crate::RegisterSpec for WUB_SPEC { impl crate::Readable for WUB_SPEC {} #[doc = "`write(|w| ..)` method takes [`wub::W`](W) writer structure"] impl crate::Writable for WUB_SPEC { - const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; - const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; + const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; + const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets WUB to value 0xffff_ffff"] impl crate::Resettable for WUB_SPEC { - const RESET_VALUE: Self::Ux = 0xffff_ffff; + const RESET_VALUE: u32 = 0xffff_ffff; }