pub type R = crate::R<CCRrs>;
pub type W = crate::W<CCRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum DMAREQ_ID {
None = 0,
Dmamux2ReqGen0 = 1,
Dmamux2ReqGen1 = 2,
Dmamux2ReqGen2 = 3,
Dmamux2ReqGen3 = 4,
Dmamux2ReqGen4 = 5,
Dmamux2ReqGen5 = 6,
Dmamux2ReqGen6 = 7,
Dmamux2ReqGen7 = 8,
Lpuart1RxDma = 9,
Lpuart1TxDma = 10,
Spi6RxDma = 11,
Spi6TxDma = 12,
I2c4RxDma = 13,
I2c4TxDma = 14,
Sai4ADma = 15,
Sai4BDma = 16,
Adc3Dma = 17,
}
impl From<DMAREQ_ID> for u8 {
#[inline(always)]
fn from(variant: DMAREQ_ID) -> Self {
variant as _
}
}
impl crate::FieldSpec for DMAREQ_ID {
type Ux = u8;
}
impl crate::IsEnum for DMAREQ_ID {}
pub type DMAREQ_ID_R = crate::FieldReader<DMAREQ_ID>;
impl DMAREQ_ID_R {
#[inline(always)]
pub const fn variant(&self) -> Option<DMAREQ_ID> {
match self.bits {
0 => Some(DMAREQ_ID::None),
1 => Some(DMAREQ_ID::Dmamux2ReqGen0),
2 => Some(DMAREQ_ID::Dmamux2ReqGen1),
3 => Some(DMAREQ_ID::Dmamux2ReqGen2),
4 => Some(DMAREQ_ID::Dmamux2ReqGen3),
5 => Some(DMAREQ_ID::Dmamux2ReqGen4),
6 => Some(DMAREQ_ID::Dmamux2ReqGen5),
7 => Some(DMAREQ_ID::Dmamux2ReqGen6),
8 => Some(DMAREQ_ID::Dmamux2ReqGen7),
9 => Some(DMAREQ_ID::Lpuart1RxDma),
10 => Some(DMAREQ_ID::Lpuart1TxDma),
11 => Some(DMAREQ_ID::Spi6RxDma),
12 => Some(DMAREQ_ID::Spi6TxDma),
13 => Some(DMAREQ_ID::I2c4RxDma),
14 => Some(DMAREQ_ID::I2c4TxDma),
15 => Some(DMAREQ_ID::Sai4ADma),
16 => Some(DMAREQ_ID::Sai4BDma),
17 => Some(DMAREQ_ID::Adc3Dma),
_ => None,
}
}
#[inline(always)]
pub fn is_none(&self) -> bool {
*self == DMAREQ_ID::None
}
#[inline(always)]
pub fn is_dmamux2_req_gen0(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen0
}
#[inline(always)]
pub fn is_dmamux2_req_gen1(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen1
}
#[inline(always)]
pub fn is_dmamux2_req_gen2(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen2
}
#[inline(always)]
pub fn is_dmamux2_req_gen3(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen3
}
#[inline(always)]
pub fn is_dmamux2_req_gen4(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen4
}
#[inline(always)]
pub fn is_dmamux2_req_gen5(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen5
}
#[inline(always)]
pub fn is_dmamux2_req_gen6(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen6
}
#[inline(always)]
pub fn is_dmamux2_req_gen7(&self) -> bool {
*self == DMAREQ_ID::Dmamux2ReqGen7
}
#[inline(always)]
pub fn is_lpuart1_rx_dma(&self) -> bool {
*self == DMAREQ_ID::Lpuart1RxDma
}
#[inline(always)]
pub fn is_lpuart1_tx_dma(&self) -> bool {
*self == DMAREQ_ID::Lpuart1TxDma
}
#[inline(always)]
pub fn is_spi6_rx_dma(&self) -> bool {
*self == DMAREQ_ID::Spi6RxDma
}
#[inline(always)]
pub fn is_spi6_tx_dma(&self) -> bool {
*self == DMAREQ_ID::Spi6TxDma
}
#[inline(always)]
pub fn is_i2c4_rx_dma(&self) -> bool {
*self == DMAREQ_ID::I2c4RxDma
}
#[inline(always)]
pub fn is_i2c4_tx_dma(&self) -> bool {
*self == DMAREQ_ID::I2c4TxDma
}
#[inline(always)]
pub fn is_sai4_a_dma(&self) -> bool {
*self == DMAREQ_ID::Sai4ADma
}
#[inline(always)]
pub fn is_sai4_b_dma(&self) -> bool {
*self == DMAREQ_ID::Sai4BDma
}
#[inline(always)]
pub fn is_adc3_dma(&self) -> bool {
*self == DMAREQ_ID::Adc3Dma
}
}
pub type DMAREQ_ID_W<'a, REG> = crate::FieldWriter<'a, REG, 8, DMAREQ_ID>;
impl<'a, REG> DMAREQ_ID_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn none(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::None)
}
#[inline(always)]
pub fn dmamux2_req_gen0(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen0)
}
#[inline(always)]
pub fn dmamux2_req_gen1(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen1)
}
#[inline(always)]
pub fn dmamux2_req_gen2(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen2)
}
#[inline(always)]
pub fn dmamux2_req_gen3(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen3)
}
#[inline(always)]
pub fn dmamux2_req_gen4(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen4)
}
#[inline(always)]
pub fn dmamux2_req_gen5(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen5)
}
#[inline(always)]
pub fn dmamux2_req_gen6(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen6)
}
#[inline(always)]
pub fn dmamux2_req_gen7(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Dmamux2ReqGen7)
}
#[inline(always)]
pub fn lpuart1_rx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Lpuart1RxDma)
}
#[inline(always)]
pub fn lpuart1_tx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Lpuart1TxDma)
}
#[inline(always)]
pub fn spi6_rx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Spi6RxDma)
}
#[inline(always)]
pub fn spi6_tx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Spi6TxDma)
}
#[inline(always)]
pub fn i2c4_rx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::I2c4RxDma)
}
#[inline(always)]
pub fn i2c4_tx_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::I2c4TxDma)
}
#[inline(always)]
pub fn sai4_a_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Sai4ADma)
}
#[inline(always)]
pub fn sai4_b_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Sai4BDma)
}
#[inline(always)]
pub fn adc3_dma(self) -> &'a mut crate::W<REG> {
self.variant(DMAREQ_ID::Adc3Dma)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SOIE {
Disabled = 0,
Enabled = 1,
}
impl From<SOIE> for bool {
#[inline(always)]
fn from(variant: SOIE) -> Self {
variant as u8 != 0
}
}
pub type SOIE_R = crate::BitReader<SOIE>;
impl SOIE_R {
#[inline(always)]
pub const fn variant(&self) -> SOIE {
match self.bits {
false => SOIE::Disabled,
true => SOIE::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == SOIE::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == SOIE::Enabled
}
}
pub type SOIE_W<'a, REG> = crate::BitWriter<'a, REG, SOIE>;
impl<'a, REG> SOIE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(SOIE::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(SOIE::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum EGE {
Disabled = 0,
Enabled = 1,
}
impl From<EGE> for bool {
#[inline(always)]
fn from(variant: EGE) -> Self {
variant as u8 != 0
}
}
pub type EGE_R = crate::BitReader<EGE>;
impl EGE_R {
#[inline(always)]
pub const fn variant(&self) -> EGE {
match self.bits {
false => EGE::Disabled,
true => EGE::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == EGE::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == EGE::Enabled
}
}
pub type EGE_W<'a, REG> = crate::BitWriter<'a, REG, EGE>;
impl<'a, REG> EGE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(EGE::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(EGE::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SE {
Disabled = 0,
Enabled = 1,
}
impl From<SE> for bool {
#[inline(always)]
fn from(variant: SE) -> Self {
variant as u8 != 0
}
}
pub type SE_R = crate::BitReader<SE>;
impl SE_R {
#[inline(always)]
pub const fn variant(&self) -> SE {
match self.bits {
false => SE::Disabled,
true => SE::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == SE::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == SE::Enabled
}
}
pub type SE_W<'a, REG> = crate::BitWriter<'a, REG, SE>;
impl<'a, REG> SE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(SE::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(SE::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SPOL {
NoEdge = 0,
RisingEdge = 1,
FallingEdge = 2,
BothEdges = 3,
}
impl From<SPOL> for u8 {
#[inline(always)]
fn from(variant: SPOL) -> Self {
variant as _
}
}
impl crate::FieldSpec for SPOL {
type Ux = u8;
}
impl crate::IsEnum for SPOL {}
pub type SPOL_R = crate::FieldReader<SPOL>;
impl SPOL_R {
#[inline(always)]
pub const fn variant(&self) -> SPOL {
match self.bits {
0 => SPOL::NoEdge,
1 => SPOL::RisingEdge,
2 => SPOL::FallingEdge,
3 => SPOL::BothEdges,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_no_edge(&self) -> bool {
*self == SPOL::NoEdge
}
#[inline(always)]
pub fn is_rising_edge(&self) -> bool {
*self == SPOL::RisingEdge
}
#[inline(always)]
pub fn is_falling_edge(&self) -> bool {
*self == SPOL::FallingEdge
}
#[inline(always)]
pub fn is_both_edges(&self) -> bool {
*self == SPOL::BothEdges
}
}
pub type SPOL_W<'a, REG> = crate::FieldWriter<'a, REG, 2, SPOL, crate::Safe>;
impl<'a, REG> SPOL_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn no_edge(self) -> &'a mut crate::W<REG> {
self.variant(SPOL::NoEdge)
}
#[inline(always)]
pub fn rising_edge(self) -> &'a mut crate::W<REG> {
self.variant(SPOL::RisingEdge)
}
#[inline(always)]
pub fn falling_edge(self) -> &'a mut crate::W<REG> {
self.variant(SPOL::FallingEdge)
}
#[inline(always)]
pub fn both_edges(self) -> &'a mut crate::W<REG> {
self.variant(SPOL::BothEdges)
}
}
pub type NBREQ_R = crate::FieldReader;
pub type NBREQ_W<'a, REG> = crate::FieldWriter<'a, REG, 5, u8, crate::Safe>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SYNC_ID {
Dmamux2Evt0 = 0,
Dmamux2Evt1 = 1,
Dmamux2Evt2 = 2,
Dmamux2Evt3 = 3,
Dmamux2Evt4 = 4,
Dmamux2Evt5 = 5,
Lpuart1RxWkup = 6,
Lpuart1TxWkup = 7,
Lptim2Out = 8,
Lptim3Out = 9,
I2c4Wkup = 10,
Spi6Wkup = 11,
Comp1Out = 12,
RtcWkup = 13,
SyscfgExti0Mux = 14,
SyscfgExti2Mux = 15,
}
impl From<SYNC_ID> for u8 {
#[inline(always)]
fn from(variant: SYNC_ID) -> Self {
variant as _
}
}
impl crate::FieldSpec for SYNC_ID {
type Ux = u8;
}
impl crate::IsEnum for SYNC_ID {}
pub type SYNC_ID_R = crate::FieldReader<SYNC_ID>;
impl SYNC_ID_R {
#[inline(always)]
pub const fn variant(&self) -> Option<SYNC_ID> {
match self.bits {
0 => Some(SYNC_ID::Dmamux2Evt0),
1 => Some(SYNC_ID::Dmamux2Evt1),
2 => Some(SYNC_ID::Dmamux2Evt2),
3 => Some(SYNC_ID::Dmamux2Evt3),
4 => Some(SYNC_ID::Dmamux2Evt4),
5 => Some(SYNC_ID::Dmamux2Evt5),
6 => Some(SYNC_ID::Lpuart1RxWkup),
7 => Some(SYNC_ID::Lpuart1TxWkup),
8 => Some(SYNC_ID::Lptim2Out),
9 => Some(SYNC_ID::Lptim3Out),
10 => Some(SYNC_ID::I2c4Wkup),
11 => Some(SYNC_ID::Spi6Wkup),
12 => Some(SYNC_ID::Comp1Out),
13 => Some(SYNC_ID::RtcWkup),
14 => Some(SYNC_ID::SyscfgExti0Mux),
15 => Some(SYNC_ID::SyscfgExti2Mux),
_ => None,
}
}
#[inline(always)]
pub fn is_dmamux2_evt0(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt0
}
#[inline(always)]
pub fn is_dmamux2_evt1(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt1
}
#[inline(always)]
pub fn is_dmamux2_evt2(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt2
}
#[inline(always)]
pub fn is_dmamux2_evt3(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt3
}
#[inline(always)]
pub fn is_dmamux2_evt4(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt4
}
#[inline(always)]
pub fn is_dmamux2_evt5(&self) -> bool {
*self == SYNC_ID::Dmamux2Evt5
}
#[inline(always)]
pub fn is_lpuart1_rx_wkup(&self) -> bool {
*self == SYNC_ID::Lpuart1RxWkup
}
#[inline(always)]
pub fn is_lpuart1_tx_wkup(&self) -> bool {
*self == SYNC_ID::Lpuart1TxWkup
}
#[inline(always)]
pub fn is_lptim2_out(&self) -> bool {
*self == SYNC_ID::Lptim2Out
}
#[inline(always)]
pub fn is_lptim3_out(&self) -> bool {
*self == SYNC_ID::Lptim3Out
}
#[inline(always)]
pub fn is_i2c4_wkup(&self) -> bool {
*self == SYNC_ID::I2c4Wkup
}
#[inline(always)]
pub fn is_spi6_wkup(&self) -> bool {
*self == SYNC_ID::Spi6Wkup
}
#[inline(always)]
pub fn is_comp1_out(&self) -> bool {
*self == SYNC_ID::Comp1Out
}
#[inline(always)]
pub fn is_rtc_wkup(&self) -> bool {
*self == SYNC_ID::RtcWkup
}
#[inline(always)]
pub fn is_syscfg_exti0_mux(&self) -> bool {
*self == SYNC_ID::SyscfgExti0Mux
}
#[inline(always)]
pub fn is_syscfg_exti2_mux(&self) -> bool {
*self == SYNC_ID::SyscfgExti2Mux
}
}
pub type SYNC_ID_W<'a, REG> = crate::FieldWriter<'a, REG, 5, SYNC_ID>;
impl<'a, REG> SYNC_ID_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn dmamux2_evt0(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt0)
}
#[inline(always)]
pub fn dmamux2_evt1(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt1)
}
#[inline(always)]
pub fn dmamux2_evt2(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt2)
}
#[inline(always)]
pub fn dmamux2_evt3(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt3)
}
#[inline(always)]
pub fn dmamux2_evt4(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt4)
}
#[inline(always)]
pub fn dmamux2_evt5(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Dmamux2Evt5)
}
#[inline(always)]
pub fn lpuart1_rx_wkup(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Lpuart1RxWkup)
}
#[inline(always)]
pub fn lpuart1_tx_wkup(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Lpuart1TxWkup)
}
#[inline(always)]
pub fn lptim2_out(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Lptim2Out)
}
#[inline(always)]
pub fn lptim3_out(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Lptim3Out)
}
#[inline(always)]
pub fn i2c4_wkup(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::I2c4Wkup)
}
#[inline(always)]
pub fn spi6_wkup(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Spi6Wkup)
}
#[inline(always)]
pub fn comp1_out(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::Comp1Out)
}
#[inline(always)]
pub fn rtc_wkup(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::RtcWkup)
}
#[inline(always)]
pub fn syscfg_exti0_mux(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::SyscfgExti0Mux)
}
#[inline(always)]
pub fn syscfg_exti2_mux(self) -> &'a mut crate::W<REG> {
self.variant(SYNC_ID::SyscfgExti2Mux)
}
}
impl R {
#[inline(always)]
pub fn dmareq_id(&self) -> DMAREQ_ID_R {
DMAREQ_ID_R::new((self.bits & 0xff) as u8)
}
#[inline(always)]
pub fn soie(&self) -> SOIE_R {
SOIE_R::new(((self.bits >> 8) & 1) != 0)
}
#[inline(always)]
pub fn ege(&self) -> EGE_R {
EGE_R::new(((self.bits >> 9) & 1) != 0)
}
#[inline(always)]
pub fn se(&self) -> SE_R {
SE_R::new(((self.bits >> 16) & 1) != 0)
}
#[inline(always)]
pub fn spol(&self) -> SPOL_R {
SPOL_R::new(((self.bits >> 17) & 3) as u8)
}
#[inline(always)]
pub fn nbreq(&self) -> NBREQ_R {
NBREQ_R::new(((self.bits >> 19) & 0x1f) as u8)
}
#[inline(always)]
pub fn sync_id(&self) -> SYNC_ID_R {
SYNC_ID_R::new(((self.bits >> 24) & 0x1f) as u8)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("CCR")
.field("dmareq_id", &self.dmareq_id())
.field("soie", &self.soie())
.field("ege", &self.ege())
.field("se", &self.se())
.field("spol", &self.spol())
.field("nbreq", &self.nbreq())
.field("sync_id", &self.sync_id())
.finish()
}
}
impl W {
#[inline(always)]
pub fn dmareq_id(&mut self) -> DMAREQ_ID_W<CCRrs> {
DMAREQ_ID_W::new(self, 0)
}
#[inline(always)]
pub fn soie(&mut self) -> SOIE_W<CCRrs> {
SOIE_W::new(self, 8)
}
#[inline(always)]
pub fn ege(&mut self) -> EGE_W<CCRrs> {
EGE_W::new(self, 9)
}
#[inline(always)]
pub fn se(&mut self) -> SE_W<CCRrs> {
SE_W::new(self, 16)
}
#[inline(always)]
pub fn spol(&mut self) -> SPOL_W<CCRrs> {
SPOL_W::new(self, 17)
}
#[inline(always)]
pub fn nbreq(&mut self) -> NBREQ_W<CCRrs> {
NBREQ_W::new(self, 19)
}
#[inline(always)]
pub fn sync_id(&mut self) -> SYNC_ID_W<CCRrs> {
SYNC_ID_W::new(self, 24)
}
}
pub struct CCRrs;
impl crate::RegisterSpec for CCRrs {
type Ux = u32;
}
impl crate::Readable for CCRrs {}
impl crate::Writable for CCRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for CCRrs {}