標題: warning: white space is required between the macro name& [打印本頁] 作者: heicad 時間: 2014-6-14 04:26 標題: warning: white space is required between the macro name& 程序原因如下:
#define OLED_MODE==1
.............
#else
............
#endif
剛開始沒發現,調試的時候才發現的,
因為省略的部分較長,所以遮住了“眼”,應該是:
if...else.....
改后如下:
#if OLED_MODE==1
.............
#else
............
#endif
重現編譯,0 Error(s), 0Warning(s). 正確!!