PSoC 6 Peripheral Driver Library

General Description

Functions

void Cy_WDT_Init (void)
 Initializes the Watchdog timer to its default state. More...
 
__STATIC_INLINE void Cy_WDT_Enable (void)
 Enables the Watchdog timer. More...
 
__STATIC_INLINE void Cy_WDT_Disable (void)
 Disables the Watchdog timer. More...
 
void Cy_WDT_Lock (void)
 Locks out configuration changes to the Watchdog Timer register. More...
 
void Cy_WDT_Unlock (void)
 Unlocks the Watchdog Timer configuration register. More...
 
bool Cy_WDT_Locked (void)
 Returns the WDT lock state. More...
 
__STATIC_INLINE uint32_t Cy_WDT_GetCount (void)
 Reads the current WDT counter value. More...
 
void Cy_WDT_SetMatch (uint32_t match)
 Configures the WDT counter match comparison value. More...
 
__STATIC_INLINE uint32_t Cy_WDT_GetMatch (void)
 Reads the WDT counter match comparison value. More...
 
void Cy_WDT_SetIgnoreBits (uint32_t bitsNum)
 Configures the number of the most significant bits of the Watchdog timer that are not checked against the match. More...
 
__STATIC_INLINE uint32_t Cy_WDT_GetIgnoreBits (void)
 Reads the number of the most significant bits of the Watchdog timer that are not checked against the match. More...
 
__STATIC_INLINE void Cy_WDT_MaskInterrupt (void)
 After masking interrupts from the WDT, they are not passed to the CPU. More...
 
__STATIC_INLINE void Cy_WDT_UnmaskInterrupt (void)
 After unmasking interrupts from the WDT, they are passed to CPU. More...
 
void Cy_WDT_ClearInterrupt (void)
 Clears the WDT match flag which is set every time the WDT counter reaches a WDT match value. More...
 
void Cy_WDT_ClearWatchdog (void)
 Clears ("feeds") the watchdog, to prevent a XRES device reset. More...
 
__STATIC_INLINE bool Cy_WDT_IsEnabled (void)
 Reports an enable/disable state of the Watchdog timer. More...
 

Function Documentation

◆ Cy_WDT_Init()

void Cy_WDT_Init ( void  )

Initializes the Watchdog timer to its default state.

The given default setting of the WDT: The WDT is unlocked and disabled. The WDT match value is 4096. None of ignore bits are set: the whole WDT counter bits are checked against the match value.

Side Effects
This function clears the WDT interrupt.

◆ Cy_WDT_Enable()

__STATIC_INLINE void Cy_WDT_Enable ( void  )

Enables the Watchdog timer.

Side Effects
This function clears the WDT interrupt.

◆ Cy_WDT_Disable()

__STATIC_INLINE void Cy_WDT_Disable ( void  )

Disables the Watchdog timer.

The Watchdog timer should be unlocked before being disabled. Call the Cy_WDT_Unlock() API to unlock the WDT.

◆ Cy_WDT_Lock()

void Cy_WDT_Lock ( void  )

Locks out configuration changes to the Watchdog Timer register.

After this function is called, the WDT configuration cannot be changed until Cy_WDT_Unlock() is called.

Warning
The WDT lock state is not retained during system Deep Sleep. After the wakeup from system Deep Sleep the WDT is locked.

◆ Cy_WDT_Unlock()

void Cy_WDT_Unlock ( void  )

Unlocks the Watchdog Timer configuration register.

Warning
The WDT lock state is not retained during system Deep Sleep. After the wakeup from system Deep Sleep the WDT is locked.

◆ Cy_WDT_Locked()

bool Cy_WDT_Locked ( void  )

Returns the WDT lock state.

Returns
True - if WDT is locked. False - if WDT is unlocked.

◆ Cy_WDT_GetCount()

__STATIC_INLINE uint32_t Cy_WDT_GetCount ( void  )

Reads the current WDT counter value.

Returns
A live counter value.

◆ Cy_WDT_SetMatch()

void Cy_WDT_SetMatch ( uint32_t  match)

Configures the WDT counter match comparison value.

The Watchdog timer should be unlocked before changing the match value. Call the Cy_WDT_Unlock() function to unlock the WDT.

Parameters
matchThe valid valid range is [0-65535]. The value to be used to match against the counter.

◆ Cy_WDT_GetMatch()

__STATIC_INLINE uint32_t Cy_WDT_GetMatch ( void  )

Reads the WDT counter match comparison value.

Returns
The counter match value.

◆ Cy_WDT_SetIgnoreBits()

void Cy_WDT_SetIgnoreBits ( uint32_t  bitsNum)

Configures the number of the most significant bits of the Watchdog timer that are not checked against the match.

Unlock the Watchdog timer before ignoring the bits setting. Call the Cy_WDT_Unlock() API to unlock the WDT.

Parameters
bitsNumThe number of the most significant bits. The valid range is [0-15]. The bitsNum over 12 are considered as 12.

The value of bitsNum controls the time-to-reset of the Watchdog timer This happens after 3 successive matches.

Warning
This function changes the WDT interrupt period, therefore the device can go into an infinite WDT reset loop. This may happen if a WDT reset occurs faster that a device start-up.

◆ Cy_WDT_GetIgnoreBits()

__STATIC_INLINE uint32_t Cy_WDT_GetIgnoreBits ( void  )

Reads the number of the most significant bits of the Watchdog timer that are not checked against the match.

Returns
The number of the most significant bits.

◆ Cy_WDT_MaskInterrupt()

__STATIC_INLINE void Cy_WDT_MaskInterrupt ( void  )

After masking interrupts from the WDT, they are not passed to the CPU.

This function does not disable the WDT-reset generation.

◆ Cy_WDT_UnmaskInterrupt()

__STATIC_INLINE void Cy_WDT_UnmaskInterrupt ( void  )

After unmasking interrupts from the WDT, they are passed to CPU.

This function does not impact the reset generation.

◆ Cy_WDT_ClearInterrupt()

void Cy_WDT_ClearInterrupt ( void  )

Clears the WDT match flag which is set every time the WDT counter reaches a WDT match value.

Two unserviced interrupts lead to a system reset (i.e. at the third match).

◆ Cy_WDT_ClearWatchdog()

void Cy_WDT_ClearWatchdog ( void  )

Clears ("feeds") the watchdog, to prevent a XRES device reset.

This function simply call Cy_WDT_ClearInterrupt() function.

◆ Cy_WDT_IsEnabled()

__STATIC_INLINE bool Cy_WDT_IsEnabled ( void  )

Reports an enable/disable state of the Watchdog timer.

Returns
  • true - if the timer is enabled
  • false - if the timer is disabled