善良钢笔

文章
3
资源
0
加入时间
3年0月10天

Linux-看门狗应用程序watchdogLinux 看门应用程序书写

Linux 看门应用程序书写编写步骤1、open设备(/dev/watchdog)fd = open("/dev/watchdog", O_RDWR);2、start watchdogioctl(fd, WDIOC_SETOPTIONS, WDIOS_ENABLECARD);3、set outtimeint timeout = 60;ioctl(fd, WDIOC_SETTIMEOUT, &timeout);4、喂够在循环体while(1)内喂(1)、writ