aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testhal/TIVA/TM4C123x/WDG/halconf.h2
-rw-r--r--testhal/TIVA/TM4C123x/WDG/main.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/testhal/TIVA/TM4C123x/WDG/halconf.h b/testhal/TIVA/TM4C123x/WDG/halconf.h
index 05620b8..0fca7c8 100644
--- a/testhal/TIVA/TM4C123x/WDG/halconf.h
+++ b/testhal/TIVA/TM4C123x/WDG/halconf.h
@@ -105,7 +105,7 @@
* @brief Enables the SPI subsystem.
*/
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
-#define HAL_USE_SPI TRUE
+#define HAL_USE_SPI FALSE
#endif
/**
diff --git a/testhal/TIVA/TM4C123x/WDG/main.c b/testhal/TIVA/TM4C123x/WDG/main.c
index 3aa8a07..d8bb265 100644
--- a/testhal/TIVA/TM4C123x/WDG/main.c
+++ b/testhal/TIVA/TM4C123x/WDG/main.c
@@ -23,11 +23,14 @@ static bool watchdog_timeout(WDGDriver *wdgp)
palSetPad(GPIOF, GPIOF_LED_RED);
+ /* Return true to prevent a reset on the next timeout.*/
return true;
}
/*
- * Watchdog deadline set to more than one second (LSI=40000 / (64 * 1000)).
+ * Watchdog deadline set to one second.
+ * Use callback on first timeout.
+ * Stall timer if paused by debugger.
*/
static const WDGConfig wdgcfg =
{
@@ -67,6 +70,7 @@ int main(void) {
*/
while (true) {
if (palReadPad(GPIOF, GPIOF_SW1)) {
+ /* Only reset the watchdog if the button is not pressed */
wdgReset(&WDGD1);
palClearPad(GPIOF, GPIOF_LED_RED);
}