错误:在function_name之前预期'=',',',';','asm'或'__attribute__'

时间:2013-09-01 17:00:15

标签: c gcc msp430

这是错误:

msp430-gcc -mmcu=msp430g2553 -Os   -c -o gpio_test.o gpio_test.c
In file included from msp430_lib.h:9:0,
                 from gpio_test.c:4:
gpio_api.h:20:6: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gpio_init’
gpio_api.h:27:6: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gpio_ioctl_pull_en’
gpio_api.h:35:6: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gpio_write’
make: *** [gpio_test.o] Error 1

这是错误来源的头文件(行号不匹配,因为我从文件中删除了所有注释以缩短它):

/* gpio_api.h - General Purpose Input/Output API
*/

#ifndef MSP_GPIO_API_H
#define MSP_GPIO_API_H

#include  <msp430g2553.h>

#define INPUT   0
#define OUTPUT  1
#define DOWN    0
#define UP      1

bool gpio_init(int port, int pin, int direction);

bool gpio_ioctl_pull_en(int port, int pin, int direction);

bool gpio_write(int port, int pin, int value);

int  gpio_read (int port, int pin);

#endif

看起来很简单,但我无法弄清楚我的问题是什么。

1 个答案:

答案 0 :(得分:13)

您必须在计划中加入<stdbool.h>bool实际上是stdbool.h头文件中定义的宏。