diff options
| author | marcoveeneman <marco-veeneman@hotmail.com> | 2016-04-28 22:10:35 +0200 | 
|---|---|---|
| committer | marcoveeneman <marco-veeneman@hotmail.com> | 2016-04-28 22:10:35 +0200 | 
| commit | 277989a04854b32f57c710b3c42d2ab376e838be (patch) | |
| tree | 21aee1071b0a368ea9cd6465966986fa56a3ca78 | |
| parent | d4cb8ca216bec40481eb1c4d94839db1c0c36420 (diff) | |
| download | ChibiOS-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.
| -rw-r--r-- | testhal/TIVA/TM4C123x/WDG/main.c | 2 | 
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  }; | 
