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.
WatchdogTimer.h
- Committer:
- mreda
- Date:
- 2018-02-09
- Revision:
- 0:dece639e483e
- Child:
- 2:1b576cfa3f49
File content as of revision 0:dece639e483e:
#ifndef MBED_WatchdogTimer_H #define MBED_WatchdogTimer_H class WatchdogTimer { public: void kick(); void kick(float s); }; #endif