157 WDT_TORR = ((0xF & time1) << 4) | (0xF & time2);
#define SYSCTL_SYS_CFG_1_WDT
#define SYSCTL_SYS_CFG_1
TIMERSE0, TIMERSE1, and WDT enable.
void wdt_reset(void)
Reset the WDT's counter.
void wdt_mode(enum wdt_modes mode)
Sets the WDT's mode of operation.
void wdt_set_time(uint8_t time1, uint8_t time2)
Sets the WDT's initial counter values.
uint32_t wdt_get_value(void)
Gets the current WDT counter value.
void wdt_clear_int(void)
Clears the WDT's interrupt.
void wdt_enable(bool en)
Enables the WDT.
bool wdt_int_status(void)
Gets the WDT's interrupt status.
void wdt_clock_enable(bool en)
Enables the WDT's clock.
void wdt_setup(enum wdt_modes mode, uint8_t time1, uint8_t time2)
Sets up the WDT before the call to wdt_enable().
@ WDT_MODE_INT
On timeout, generate an interrupt.