pub struct Config {
pub timeout: FaultControl,
pub miscompare: FaultControl,
pub sequence: FaultControl,
pub state: FaultControl,
pub address: FaultControl,
pub irq_pause: PauseControl,
pub debug_halt: PauseControl,
pub lock: LockControl,
}Expand description
CDOG (Code Watchdog) configuration structure.
Defines the behavior of the watchdog for various fault conditions and operational modes.
Fields§
§timeout: FaultControlThe timeout period after which the watchdog will trigger
miscompare: FaultControl§sequence: FaultControl§state: FaultControl§address: FaultControl§irq_pause: PauseControl§debug_halt: PauseControl§lock: LockControlTrait Implementations§
impl Copy for Config
impl Eq for Config
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more