aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/TIVA
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2016-04-28 22:10:35 +0200
committermarcoveeneman <marco-veeneman@hotmail.com>2016-04-28 22:10:35 +0200
commit277989a04854b32f57c710b3c42d2ab376e838be (patch)
tree21aee1071b0a368ea9cd6465966986fa56a3ca78 /testhal/TIVA
parentd4cb8ca216bec40481eb1c4d94839db1c0c36420 (diff)
downloadChibiOS-Contrib-277989a04854b32f57c710b3c42d2ab376e838be.tar.gz
ChibiOS-Contrib-277989a04854b32f57c710b3c42d2ab376e838be.tar.bz2
ChibiOS-Contrib-277989a04854b32f57c710b3c42d2ab376e838be.zip
Tiva. WDG. Changed fixed load value to the system clock in the demo.
Diffstat (limited to 'testhal/TIVA')
-rw-r--r--testhal/TIVA/TM4C123x/WDG/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/TIVA/TM4C123x/WDG/main.c b/testhal/TIVA/TM4C123x/WDG/main.c
index 16c26dc..da08cfb 100644
--- a/testhal/TIVA/TM4C123x/WDG/main.c
+++ b/testhal/TIVA/TM4C123x/WDG/main.c
@@ -34,7 +34,7 @@ static bool watchdog_timeout(WDGDriver *wdgp)
*/
static const WDGConfig wdgcfg =
{
- 80000000,
+ TIVA_SYSCLK,
watchdog_timeout,
TEST_STALL
};