Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: A_CANAdapter LeonardoMbos AVC_2012 RT_CAN ... more
Homepage
Using this Watchdog Class
#include "Watchdog.h"
Watchdog wd;
...
void main() {
if (wd.WatchdogCausedReset())
pc.printf("Watchdog caused reset.\r\n");
wd.Configure(3.0); // sets the timeout interval
for (;;) {
wd.Service(); // kick the dog before the timeout
// do other work
}
}