diff options
author | Daniel Campora <daniel@wipy.io> | 2015-06-04 10:12:03 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-06-04 10:13:55 +0200 |
commit | a3cf4ea2f69e3568944bad7ee1a017b7095efc3d (patch) | |
tree | 44a62eb829376c26f486616d31a5750dd3a1b70a /cc3200/misc/FreeRTOSHooks.c | |
parent | 71f85cc33005c30b2722c6bfdc288cb1bb6151c3 (diff) | |
download | micropython-a3cf4ea2f69e3568944bad7ee1a017b7095efc3d.tar.gz micropython-a3cf4ea2f69e3568944bad7ee1a017b7095efc3d.zip |
cc3200: Do not kick the watchdog inside the idle task.
Diffstat (limited to 'cc3200/misc/FreeRTOSHooks.c')
-rw-r--r-- | cc3200/misc/FreeRTOSHooks.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cc3200/misc/FreeRTOSHooks.c b/cc3200/misc/FreeRTOSHooks.c index 260cd84e07..a31edccf01 100644 --- a/cc3200/misc/FreeRTOSHooks.c +++ b/cc3200/misc/FreeRTOSHooks.c @@ -34,7 +34,6 @@ #include "inc/hw_memmap.h" #include "pybuart.h" #include "osi.h" -#include "pybwdt.h" #include "mperror.h" @@ -49,8 +48,6 @@ //***************************************************************************** void vApplicationIdleHook (void) { - // kick the watchdog - pybwdt_kick(); // signal that we are alive and kicking mperror_heartbeat_signal(); // gate the processor's clock to save power |