EE445M RTOS
Taken at the University of Texas Spring 2015
|
#include <stdbool.h>
#include <stdint.h>
#include "inc/hw_ints.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "inc/hw_watchdog.h"
#include "driverlib/debug.h"
#include "driverlib/interrupt.h"
#include "driverlib/watchdog.h"
Go to the source code of this file.
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) |