https://os.mbed.com/cookbook/WatchDog-Timer This link has demonstrated a way to implement Watchdog Timer on Mbed. This library is the library version of that code.

Committer:
mreda
Date:
Fri Feb 09 11:13:11 2018 +0000
Revision:
0:dece639e483e
Child:
2:1b576cfa3f49
WatchdogTimer_LPC1768_version_1.01

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mreda 0:dece639e483e 1 #ifndef MBED_WatchdogTimer_H
mreda 0:dece639e483e 2 #define MBED_WatchdogTimer_H
mreda 0:dece639e483e 3
mreda 0:dece639e483e 4 class WatchdogTimer {
mreda 0:dece639e483e 5 public:
mreda 0:dece639e483e 6 void kick();
mreda 0:dece639e483e 7 void kick(float s);
mreda 0:dece639e483e 8
mreda 0:dece639e483e 9 };
mreda 0:dece639e483e 10
mreda 0:dece639e483e 11 #endif