C中时间函数的奇怪问题

时间:2017-11-28 11:12:04

标签: c linux timer epoch beagleboard

我试图让我的Beaglebone Green读取某个引脚的输入,当该引脚看到1到0的转换(在pulse()中定义)时,它应该设置一个定时器。 我想让我的计时器像这样:

在空闲状态下,计时器设置为TIMER_HOLD值(900000) 要启动计时器,我将其设置为低于TIMER_HOLD的值。 然后它应该递减(使用timerupdate()函数)。 如果它达到0或更小 - 对于无符号长度高于TIMER_HOLD - 则执行触发操作。

为了测试/调试这个,我添加了:printf("timer 1: %lld \n",timer[1]); 这很完美......我看到了这个输出:

  timer 1: 900000
  timer 1: 900000
  PULSE
  timer 1: 5000
  timer 1: 4990
  timer 1: 4975
   ..........<truncated>
  timer 1: 1
  timer 1: 1
  timer 1: 1
  timer 1: 1
  timer 1: 1
  timer 1: 0
  timer 1: 0
  timer 1: 0
  timer 1: 0
  timer 1: 0
  timer 1: 0
  timer 1: -1

  TIMER TRIGGER
  timer 1: 900000
  timer 1: 900000
  timer 1: 900000
  timer 1: 900000

这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/timeb.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <assert.h>
#include <string.h>
#include "../../BBBio_lib/BBBiolib.h"
#include <linux/kernel.h>
#include <sys/sysinfo.h>

#define INPUT_LEN 65
#define TIMER_HOLD 900000 // ms

void pin2array();
void timerupdate(void);
unsigned char pulse(unsigned char chkin);
unsigned char x,y;
unsigned char input[6][INPUT_LEN];

unsigned long long timer[10];
unsigned long long skew, prevtime, currtime;


int main(void)
{

        for (x=0;x<10;x++) timer[x]=TIMER_HOLD;

        iolib_init();

    while(1)
    {
            pin2array();
            timerupdate();
            if (pulse(0))
            {
                    printf("PULSE\n");
                    timer[1]=5000;
            }
             printf("timer 1: %lld \n",timer[1]); //THIS IS THE DEBUG PRINTF !!!
            if (timer[1]>TIMER_HOLD)
            {
                    printf("\nTIMER TRIGGER\n");
                    timer[1]=TIMER_HOLD;
            //      usleep(50000);
            }
            usleep(1); // CPU savings
    }
    iolib_free();
    return(0);
}
   void timerupdate(void)
 {
    struct timeval tv;
    gettimeofday(&tv, NULL);
    unsigned long long millisecondsSinceEpoch=
            (unsigned long long)(tv.tv_sec) * 1000 +
            (unsigned long long)(tv.tv_usec) / 1000;

    currtime=millisecondsSinceEpoch;
    skew=currtime-prevtime;
    prevtime=currtime;
    for (x=0;x<10;x++)
    {
            if (timer[x]<TIMER_HOLD) timer[x]-=skew;
    }
  }
 unsigned char pulse(unsigned char chkin)
  {
    if (input[0][chkin]==0 && input[1][chkin]==1 && input[2][chkin]==1 && input[3][chkin]==1 && input[4][chkin]==1 && input[5][chkin]==1) return 1;
    else return 0;
  }

  void pin2array()
  {
    for (x=0;x<INPUT_LEN;x++) input[5][x]=input[4][x];
    for (x=0;x<INPUT_LEN;x++) input[4][x]=input[3][x];
    for (x=0;x<INPUT_LEN;x++) input[3][x]=input[2][x];
    for (x=0;x<INPUT_LEN;x++) input[2][x]=input[1][x];
    for (x=0;x<INPUT_LEN;x++) input[1][x]=input[0][x];

    input[0][0]=(is_high(8,7));
    input[0][1]=(is_high(8,8));
    input[0][2]=(is_high(8,9));
    input[0][3]=(is_high(8,10));
   }

现在奇怪的是: 当我删除printf("timer 1: %lld \n",timer[1]);时 然后我才看到 PULSE

在输出上...​​计时器永远不会触发......

知道发生了什么事吗?

系统信息:

root@beaglebone:/# uname -na
Linux beaglebone 4.4.9-ti-r25 #1 SMP Thu May 5 23:08:13 UTC 2016 armv7l GNU/Linux

root@beaglebone:/# gcc --version
gcc (Debian 4.9.2-10) 4.9.2

1 个答案:

答案 0 :(得分:0)

我通过读取/ proc / uptime来修复它,然后将它乘以10(十分之一秒的分辨率足以支持我的程序)

我认为由于舍入错误或转换浮动到int而原始的东西不起作用....不确定但是