错误:功能参数太多

时间:2013-02-28 01:40:09

标签: c serial-port raspberry-pi lcd

我正在开发一个使用非标准C库的项目,以在LCD屏幕上显示输出。我的代码运行良好,但我遇到了问题。

我希望此程序的目的是获取命令行文本字符串并将其转换为ASCII十进制值,然后在屏幕上显示它们。您将文本输出到屏幕的方式是调用serialPutchar函数,以便显示字母H我会将其写为serialPutchar(fd, 'H');我希望能够获得来自变量的值并输出变量中的字母。

问题在于,当我将其写为serialPutchar(fd, "%c", H);或尝试serialPutchar(fd, "%d", x);时,我收到以下错误:

testing.c: In function âmainâ:
testing.c:22:3: warning: passing argument 1 of âserialPutcharâ makes integer from pointer without a cast [enabled by default]
/usr/local/include/wiringSerial.h:30:14: note: expected âintâ but argument is of type âchar *â
testing.c:22:3: error: too many arguments to function âserialPutcharâ
/usr/local/include/wiringSerial.h:30:14: note: declared here

我猜它不能像你使用printf一样以那种方式使用,所以有替代方案或者我只是有一个我没有发现的简单错误。我包含了wiringSerial库文档的链接。同样从我的错误输出我得到错误testing.c In function main:和其他几行的奇怪字符。有办法防止这种情况吗?链接到库HERE以下是我输出HELLO的工作代码:

#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <wiringPi.h>
#include <wiringSerial.h>

int main (int argc, char *argv[])
{
  int fd ;
  if ((fd = serialOpen ("/dev/ttyAMA0", 9600)) < 0)
  {
    fprintf (stderr, "Unable to open serial device: %s\n", strerror (errno)) ;
    return 1 ;
  }

  if (wiringPiSetup () == -1)
  {
    fprintf (stdout, "Unable to start wiringPi: %s\n", strerror (errno)) ;
    return 1 ;
  }
    int H = 1;
         serialPutchar(fd, 'H');
         serialPutchar(fd, 'E');
         serialPutchar(fd, 'L');
         serialPutchar (fd, 'L');
         serialPutchar (fd, 'O');
  }

::: UPDATE :::

以下是符合我描述的工作代码:

#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <wiringPi.h>
#include <wiringSerial.h>

int main (int argc, char *argv[])
{
  int fd ;
  if ((fd = serialOpen ("/dev/ttyAMA0", 9600)) < 0)
  {
    fprintf (stderr, "Unable to open serial device: %s\n", strerror (errno)) ;
    return 1 ;
  }

  if (wiringPiSetup () == -1)
  {
    fprintf (stdout, "Unable to start wiringPi: %s\n", strerror (errno)) ;
    return 1 ;
  }
        for (int i=1; i<argc; i++){
         serialPrintf (fd, "%s",  argv[i]);
        }
  }

1 个答案:

答案 0 :(得分:2)

putChar将char作为其第二个参数。不是字符串,不是带参数的格式字符串,只是char。

如果变量x中有char,只需执行:

 serialPutchar(fd, x);