0

我已经编写了这部分代码,它打开一个 txt 文件来写入 strtok 每 10 秒从缓冲区给我的结果(令牌)。此缓冲区从串行设备读取。

while(fgets(buff, sizeof(buff), fp) != NULL)
 {
    fputs(buff,stdout);
    FILE *ft = fopen("/home/pi/Desktop/data.txt","a+");
    struct tm *tp;
    time_t t;
    char s[80];
    t = time(NULL);
    tp = localtime(&t);
    strftime(s, 80, "%d/%m/%Y  %H:%M:%S", tp);
    char *pos = strchr(buff,'N');
    if (pos)
    {
         ptr = strtok(buff, "Nodo_,=:V()");
         i = 0;
       while (ptr != NULL)
         {
          if (i == 0)
             strcat(number, ptr); 
          if (i == 2)
             strcat(temp, ptr); 
          if (i == 4)
             strcat(hr, ptr); 
          if (i == 6)
             strcat(dw, ptr); 
          if (i == 8)
             strcat(vcc, ptr); 
          ptr = strtok(NULL, "Nodo_,=:V()");
          i++;
         }
      printf("Results: %s, %s, %s, %s, %s\n", number, temp, hr, dw, vcc);
char (*table1[1][5])[6] = {{&number, &temp, &hr, &dw, &vcc}};
       for(int i = 0; i<1; i++)
       {
          fprintf(ft,"%s ",s);
          for(int j = 0; j<5; j++)
          fprintf(ft,"%s ",table1[i][j]);
       }
      fprintf(ft,"\n");
      buff[sizeof(buff)-1] = '\0';
      memset(nodo, 0, sizeof(number));
      memset(temp, 0, sizeof(temp));
      memset(hr, 0, sizeof(hr));
      memset(dw, 0, sizeof(dw));
      memset(vcc, 0, sizeof(vcc));
      printf("\n");

     }
fclose(ft);
  }
close_port(fd);

我的txt中有这种结果

19/06/2013  13:16:34 7 20.83 51.79 11.05 4.85 
19/06/2013  13:16:34 10 21.83 53.79 12.05 3.85

从结果中可以看出,每个数字 7 或 10 返回 4 个数字。我想创建以下内容:如果 number=7 then

20.83 51.79 11.05 4.85 0 0 0 0 

如果数字=7 那么

 0 0 0 0 21.83 53.79 12.05 3.85

我的意思是我想要一个零数组。然后如果 number=7 将值放在位置 0-3 中,则清理数组,如果 number=10 则将值放在位置 4-7 中。有什么好主意吗?

4

1 回答 1

1

Maybe you should use calloc... have a look at this http://www.codingunit.com/c-reference-stdlib-h-function-calloc

于 2013-06-20T07:47:03.100 回答