Tiva Driver Lib
|
Functions | |
bool | WatchdogRunning (uint32_t ui32Base) |
void | WatchdogEnable (uint32_t ui32Base) |
void | WatchdogResetEnable (uint32_t ui32Base) |
void | WatchdogResetDisable (uint32_t ui32Base) |
void | WatchdogLock (uint32_t ui32Base) |
void | WatchdogUnlock (uint32_t ui32Base) |
bool | WatchdogLockState (uint32_t ui32Base) |
void | WatchdogReloadSet (uint32_t ui32Base, uint32_t ui32LoadVal) |
uint32_t | WatchdogReloadGet (uint32_t ui32Base) |
uint32_t | WatchdogValueGet (uint32_t ui32Base) |
void | WatchdogIntRegister (uint32_t ui32Base, void(*pfnHandler)(void)) |
void | WatchdogIntUnregister (uint32_t ui32Base) |
void | WatchdogIntEnable (uint32_t ui32Base) |
uint32_t | WatchdogIntStatus (uint32_t ui32Base, bool bMasked) |
void | WatchdogIntClear (uint32_t ui32Base) |
void | WatchdogIntTypeSet (uint32_t ui32Base, uint32_t ui32Type) |
void | WatchdogStallEnable (uint32_t ui32Base) |
void | WatchdogStallDisable (uint32_t ui32Base) |
void WatchdogEnable | ( | uint32_t | ui32Base | ) |
Enables the watchdog timer.
ui32Base | is the base address of the watchdog timer module. |
This function enables the watchdog timer counter and interrupt.
void WatchdogIntClear | ( | uint32_t | ui32Base | ) |
Clears the watchdog timer interrupt.
ui32Base | is the base address of the watchdog timer module. |
The watchdog timer interrupt source is cleared, so that it no longer asserts.
void WatchdogIntEnable | ( | uint32_t | ui32Base | ) |
Enables the watchdog timer interrupt.
ui32Base | is the base address of the watchdog timer module. |
This function enables the watchdog timer interrupt.
void WatchdogIntRegister | ( | uint32_t | ui32Base, |
void(*)(void) | pfnHandler | ||
) |
Registers an interrupt handler for the watchdog timer interrupt.
ui32Base | is the base address of the watchdog timer module. |
pfnHandler | is a pointer to the function to be called when the watchdog timer interrupt occurs. |
This function does the actual registering of the interrupt handler. This function also enables the global interrupt in the interrupt controller; the watchdog timer interrupt must be enabled via WatchdogEnable(). It is the interrupt handler's responsibility to clear the interrupt source via WatchdogIntClear().
uint32_t WatchdogIntStatus | ( | uint32_t | ui32Base, |
bool | bMasked | ||
) |
Gets the current watchdog timer interrupt status.
ui32Base | is the base address of the watchdog timer module. |
bMasked | is false if the raw interrupt status is required and true if the masked interrupt status is required. |
This function returns the interrupt status for the watchdog timer module. Either the raw interrupt status or the status of interrupt that is allowed to reflect to the processor can be returned.
void WatchdogIntTypeSet | ( | uint32_t | ui32Base, |
uint32_t | ui32Type | ||
) |
Sets the type of interrupt generated by the watchdog.
ui32Base | is the base address of the watchdog timer module. |
ui32Type | is the type of interrupt to generate. |
This function sets the type of interrupt that is generated if the watchdog timer expires. ui32Type can be either WATCHDOG_INT_TYPE_INT to generate a standard interrupt (the default) or WATCHDOG_INT_TYPE_NMI to generate a non-maskable interrupt (NMI).
When configured to generate an NMI, the watchdog interrupt must still be enabled with WatchdogIntEnable(), and it must still be cleared inside the NMI handler with WatchdogIntClear().
void WatchdogIntUnregister | ( | uint32_t | ui32Base | ) |
Unregisters an interrupt handler for the watchdog timer interrupt.
ui32Base | is the base address of the watchdog timer module. |
This function does the actual unregistering of the interrupt handler. This function clears the handler to be called when a watchdog timer interrupt occurs. This function also masks off the interrupt in the interrupt controller so that the interrupt handler no longer is called.
void WatchdogLock | ( | uint32_t | ui32Base | ) |
Enables the watchdog timer lock mechanism.
ui32Base | is the base address of the watchdog timer module. |
This function locks out write access to the watchdog timer configuration registers.
bool WatchdogLockState | ( | uint32_t | ui32Base | ) |
Gets the state of the watchdog timer lock mechanism.
ui32Base | is the base address of the watchdog timer module. |
This function returns the lock state of the watchdog timer registers.
uint32_t WatchdogReloadGet | ( | uint32_t | ui32Base | ) |
Gets the watchdog timer reload value.
ui32Base | is the base address of the watchdog timer module. |
This function gets the value that is loaded into the watchdog timer when the count reaches zero for the first time.
void WatchdogReloadSet | ( | uint32_t | ui32Base, |
uint32_t | ui32LoadVal | ||
) |
Sets the watchdog timer reload value.
ui32Base | is the base address of the watchdog timer module. |
ui32LoadVal | is the load value for the watchdog timer. |
This function configures the value to load into the watchdog timer when the count reaches zero for the first time; if the watchdog timer is running when this function is called, then the value is immediately loaded into the watchdog timer counter. If the ui32LoadVal parameter is 0, then an interrupt is immediately generated.
void WatchdogResetDisable | ( | uint32_t | ui32Base | ) |
Disables the watchdog timer reset.
ui32Base | is the base address of the watchdog timer module. |
This function disables the capability of the watchdog timer to issue a reset to the processor after a second timeout condition.
void WatchdogResetEnable | ( | uint32_t | ui32Base | ) |
Enables the watchdog timer reset.
ui32Base | is the base address of the watchdog timer module. |
This function enables the capability of the watchdog timer to issue a reset to the processor after a second timeout condition.
bool WatchdogRunning | ( | uint32_t | ui32Base | ) |
Determines if the watchdog timer is enabled.
ui32Base | is the base address of the watchdog timer module. |
This function checks to see if the watchdog timer is enabled.
void WatchdogStallDisable | ( | uint32_t | ui32Base | ) |
Disables stalling of the watchdog timer during debug events.
ui32Base | is the base address of the watchdog timer module. |
This function disables the debug mode stall of the watchdog timer. By doing so, the watchdog timer continues to count regardless of the processor debug state.
void WatchdogStallEnable | ( | uint32_t | ui32Base | ) |
Enables stalling of the watchdog timer during debug events.
ui32Base | is the base address of the watchdog timer module. |
This function allows the watchdog timer to stop counting when the processor is stopped by the debugger. By doing so, the watchdog is prevented from expiring (typically almost immediately from a human time perspective) and resetting the system (if reset is enabled). The watchdog instead expires after the appropriate number of processor cycles have been executed while debugging (or at the appropriate time after the processor has been restarted).
void WatchdogUnlock | ( | uint32_t | ui32Base | ) |
Disables the watchdog timer lock mechanism.
ui32Base | is the base address of the watchdog timer module. |
This function enables write access to the watchdog timer configuration registers.
uint32_t WatchdogValueGet | ( | uint32_t | ui32Base | ) |
Gets the current watchdog timer value.
ui32Base | is the base address of the watchdog timer module. |
This function reads the current value of the watchdog timer.