CC2538: Add WATCHDOG_CONF_ENABLE to optionally disable the watchdog timer.

This commit is contained in:
Ian Martin 2014-04-25 16:22:43 -04:00
parent 4af2661374
commit 7081440eff
3 changed files with 13 additions and 0 deletions

View file

@ -87,6 +87,7 @@ void
watchdog_reboot(void)
{
INTERRUPTS_DISABLE();
watchdog_start(); /* just in case the WDT hasn't been started yet */
while(1);
}
/**

View file

@ -50,6 +50,16 @@ typedef uint32_t rtimer_clock_t;
#endif
/** @} */
/*---------------------------------------------------------------------------*/
/**
* \name Watchdog Timer configuration
*
* @{
*/
#ifndef WATCHDOG_CONF_ENABLE
#define WATCHDOG_CONF_ENABLE 1 /**<Enable the watchdog timer */
#endif
/** @} */
/*---------------------------------------------------------------------------*/
/**
* \name USB 'core' configuration
*

View file

@ -203,7 +203,9 @@ main(void)
autostart_start(autostart_processes);
#if WATCHDOG_CONF_ENABLE
watchdog_start();
#endif
fade(LEDS_ORANGE);
while(1) {