0

エラーは次のとおりです。

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

それは十分に単純に思えますが、私の問題が何であるかを理解できません。

4

1 に答える 1

13

プログラムに含める必要があり<stdbool.h>ます。実際には、ヘッダー ファイルboolで定義されたマクロです。stdbool.h

于 2013-09-01T17:02:05.543 に答える