How to use watchdog in linux – IBASE IB102 User Manual
Page 65

Copyright © 2013 IBASE Technology Inc. All Rights Reserved.
65
IBASE Technology Inc.
6.2.3. How to use Watchdog in Linux
#include
#include
#include
#include
int main(void)
{
int fd = open("/dev/watchdog", O_WRONLY);
int ret = 0;
if (fd == -1) {
perror("watchdog");
exit(EXIT_FAILURE);
}
while (1) {
ret = write(fd, "\0", 1);
if (ret != 1) {
ret = -1;
break;
}
puts("[WDT] Keep alive");
sleep(50);
}
close(fd);
return ret;
}