我正在使用 avr-gcc 在命令行上编译
我正在使用的其中一项包含以下几行:
#ifndef F_CPU
#warning No CPU speed specified - assuming Axon is running at 16MHz
#define F_CPU 16000000
#endif
#if F_CPU != 16000000
#warning "AxonII normally runs at 16MHz but you have defined a different value"
#endif
当我运行 make 我得到:
In file included from main.c:7:
../webbotavrclib/sys/axon2.h:86:11: error: operator '!=' has no left operand
第 86 行在#if F_CPU != 16000000
上面。我不确定为什么会收到错误消息。