s3c2440 看门狗设置使用例程

发布者:SereneHeart最新更新时间:2024-06-14 来源: elecfans关键字:s3c2440  看门狗设置  测试例程 手机看文章 扫描二维码
随时随地手机看文章

在嵌入式工控领域,为保障程序的持续运行,使用看门狗是必须的。
调狐上网,发现详细介绍s3c2440 Watchdog的资料真不多。于是就对着linux kernel里的代码自己研究吧。

偶写的测试例程如下所示:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

time_t  backTime;
struct tm *pBackTime;
int wt_fd;

static void sigAlarm(int sig)
{
    char flag = '0';
    (void)time(&backTime);
    pBackTime= localtime(&backTime);
    printf('day: %d; hour: %d; min: %d; sec: %dn', pBackTime->tm_mday, pBackTime->tm_hour, pBackTime->tm_min, pBackTime->tm_sec);

    write(wt_fd, &flag, 1); //Reset Watchdog
    alarm(2);
    return;
}


int main()
{
       char flag = 'V';
       int ret;
       int timeout = 42;
      
       if(SIG_ERR == signal(SIGALRM, sigAlarm))
       {
           perror('signal (SIGALARM) error');
       }

       wt_fd = open('/dev/watchdog', O_RDWR);
       if(wt_fd <= 0)
       {
           printf('Fail to open watchdog  device!n');
       }
       else
       {
           write(wt_fd,NULL,0);
           printf('Turn on Watch Dogn');
           ret = ioctl(wt_fd, WDIOC_SETTIMEOUT, &timeout);
           if(EINVAL == ret)
           {
                printf('EINVAL Returnedn');
           }
           else if(EFAULT == ret)
           {
                printf('EFAULT Returnedn');
           }
           else if(0 == ret)
           {
                printf('Set timeout %d secs successn', timeout);
           }
           else
           {
                printf('Ret %dn', ret);
           }
       }

       alarm(3);

       while(1);

       write(wt_fd, &flag, 1);
       printf('Turned off Watch Dogn');
       close(wt_fd);
       return 0;
}


本代码实现了启用看门狗,设置看门狗超时时间,定时喂狗,关闭看门狗还没有修正。
经实践发现,42秒是s3c2440最长的超时时间。


关键字:s3c2440  看门狗设置  测试例程 引用地址:s3c2440 看门狗设置使用例程

上一篇:S3C2440上LCD驱动(FrameBuffer)实例开发讲解
下一篇:移植u-boot-2010.12.tar.bz2版本到s3c2440过程

小广播
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

电子工程世界版权所有 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved