/*
DISCLAIMER
This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products.
No other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all
applicable laws, including copyright laws.
THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED
OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY
LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE FOR ANY DIRECT,
INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR
ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability
of this software. By using this software, you agree to the additional terms and conditions found by accessing the
following link:
http://www.renesas.com/disclaimer
*/
// Generated from SVD 1.2, with svd2pac 0.6.0 on Thu, 24 Jul 2025 04:45:45 +0000
#![allow(clippy::identity_op)]
#![allow(clippy::module_inception)]
#![allow(clippy::derivable_impls)]
#[allow(unused_imports)]
use crate::common::sealed;
#[allow(unused_imports)]
use crate::common::*;
#[doc = r"SYS_WDOG registers"]
unsafe impl ::core::marker::Send for super::SysWdog {}
unsafe impl ::core::marker::Sync for super::SysWdog {}
impl super::SysWdog {
#[allow(unused)]
#[inline(always)]
pub(crate) const fn _svd2pac_as_ptr(&self) -> *mut u8 {
self.ptr
}
#[doc = "Watchdog control register."]
#[inline(always)]
pub const fn watchdog_ctrl_reg(
&self,
) -> &'static crate::common::Reg<self::WatchdogCtrlReg_SPEC, crate::common::RW> {
unsafe {
crate::common::Reg::<self::WatchdogCtrlReg_SPEC, crate::common::RW>::from_ptr(
self._svd2pac_as_ptr().add(4usize),
)
}
}
#[doc = "Watchdog timer register."]
#[inline(always)]
pub const fn watchdog_reg(
&self,
) -> &'static crate::common::Reg<self::WatchdogReg_SPEC, crate::common::RW> {
unsafe {
crate::common::Reg::<self::WatchdogReg_SPEC, crate::common::RW>::from_ptr(
self._svd2pac_as_ptr().add(0usize),
)
}
}
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct WatchdogCtrlReg_SPEC;
impl crate::sealed::RegSpec for WatchdogCtrlReg_SPEC {
type DataType = u32;
}
#[doc = "Watchdog control register."]
pub type WatchdogCtrlReg = crate::RegValueT<WatchdogCtrlReg_SPEC>;
impl WatchdogCtrlReg {
#[doc = "0 = A new WATCHDOG_REG\\[WDOG_VAL\\] can be written.\n1 = No new WATCHDOG_REG\\[WDOG_VAL\\] can be written.\nNote: It takes some time before the programmed WDOG_VAL is updated in the (independent) Watchdog timer. During this time it is not possible to write a new value to WATCHDOG_REG\\[WDOG_VAL\\]."]
#[inline(always)]
pub fn write_busy(
self,
) -> crate::common::RegisterFieldBool<3, 1, 0, WatchdogCtrlReg_SPEC, crate::common::R> {
crate::common::RegisterFieldBool::<3,1,0,WatchdogCtrlReg_SPEC,crate::common::R>::from_register(self,0)
}
#[doc = "0 = Watchdog timer can not be frozen when NMI_RST=0.\n1 = Watchdog timer can be frozen/resumed using\nSET_FREEZE_REG\\[FRZ_WDOG\\]/\nRESET_FREEZE_REG\\[FRZ_WDOG\\] when NMI_RST=0."]
#[inline(always)]
pub fn wdog_freeze_en(
self,
) -> crate::common::RegisterFieldBool<2, 1, 0, WatchdogCtrlReg_SPEC, crate::common::RW> {
crate::common::RegisterFieldBool::<2,1,0,WatchdogCtrlReg_SPEC,crate::common::RW>::from_register(self,0)
}
#[doc = "0 = Watchdog timer generates NMI at value 0, and WDOG (SYS) reset at <= -16. Timer can be frozen/resumed using\nSET_FREEZE_REG\\[FRZ_WDOG\\]/\nRESET_FREEZE_REG\\[FRZ_WDOG\\].\n1 = Watchdog timer generates a WDOG (SYS) reset at value 0 and can not be frozen by Software.\nNote that this bit can only be set to 1 by SW and only be reset with a WDOG (SYS) reset or SW reset.\nThe watchdog is always frozen when the Cortex-M33 is halted in DEBUG State."]
#[inline(always)]
pub fn nmi_rst(
self,
) -> crate::common::RegisterFieldBool<0, 1, 0, WatchdogCtrlReg_SPEC, crate::common::RW> {
crate::common::RegisterFieldBool::<0,1,0,WatchdogCtrlReg_SPEC,crate::common::RW>::from_register(self,0)
}
}
impl ::core::default::Default for WatchdogCtrlReg {
#[inline(always)]
fn default() -> WatchdogCtrlReg {
<crate::RegValueT<WatchdogCtrlReg_SPEC> as RegisterValue<_>>::new(6)
}
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct WatchdogReg_SPEC;
impl crate::sealed::RegSpec for WatchdogReg_SPEC {
type DataType = u32;
}
#[doc = "Watchdog timer register."]
pub type WatchdogReg = crate::RegValueT<WatchdogReg_SPEC>;
impl WatchdogReg {
#[doc = "Bit \\[31:14\\] = 0 = Write enable for Watchdog timer\nelse Write disable. This filter prevents unintentional presetting the watchdog with a SW run-away."]
#[inline(always)]
pub fn wdog_wen(
self,
) -> crate::common::RegisterField<14, 0x3ffff, 1, 0, u32, u32, WatchdogReg_SPEC, crate::common::W>
{
crate::common::RegisterField::<
14,
0x3ffff,
1,
0,
u32,
u32,
WatchdogReg_SPEC,
crate::common::W,
>::from_register(self, 0)
}
#[doc = "0 = Watchdog timer value is positive.\n1 = Watchdog timer value is negative."]
#[inline(always)]
pub fn wdog_val_neg(
self,
) -> crate::common::RegisterFieldBool<13, 1, 0, WatchdogReg_SPEC, crate::common::RW> {
crate::common::RegisterFieldBool::<13,1,0,WatchdogReg_SPEC,crate::common::RW>::from_register(self,0)
}
#[doc = "Write: Watchdog timer reload value. Note that all bits \\[31-14\\] must be 0 to reload this register.\nRead: Actual Watchdog timer value. Decremented by 1 every ~10 msec (RC32K) or ~29 msec(RCX).\nBit 13 indicates a negative counter value. 2, 1, 0, 3FFF16, 3FFE16 etc. An NMI or WDOG (SYS) reset is generated under the following conditions:\nIf WATCHDOG_CTRL_REG\\[NMI_RST\\] = 0 then\n If WDOG_VAL = 0 -> NMI (Non Maskable Interrupt)\n if WDOG_VAL =3FF016 -> WDOG reset -> reload 1FFF16\nIf WATCHDOG_CTRL_REG\\[NMI_RST\\] = 1 then\n if WDOG_VAL <= 0 -> WDOG reset -> reload 1FFF16\nNote 1: The programmed value WDOG_VAL is updated in the (independent) Watchdog timer at the 2nd next RC32K or RCX clock tick.\nNote 2: Select RC32K or RCX with CLK_RCX_REG\\[RCX_ENABLE\\]. The RC32K is selected by default."]
#[inline(always)]
pub fn wdog_val(
self,
) -> crate::common::RegisterField<0, 0x1fff, 1, 0, u16, u16, WatchdogReg_SPEC, crate::common::RW>
{
crate::common::RegisterField::<0,0x1fff,1,0,u16,u16,WatchdogReg_SPEC,crate::common::RW>::from_register(self,0)
}
}
impl ::core::default::Default for WatchdogReg {
#[inline(always)]
fn default() -> WatchdogReg {
<crate::RegValueT<WatchdogReg_SPEC> as RegisterValue<_>>::new(8191)
}
}