KEIL编程中错误提示解决方法

1…\USER\inc\ble_progm.h(7): error C100: unprintable character 0xA3 skipped
语句中有中文符号,去除中文符号即可。
2.MDK提示:⚠️ #1-D: last line of file ends without a newline
在c/c++的Misc Controls中添加–diag_suppress=1可消除错误提示
3.USR\pbdata.c(635): error: #2706: case label value has already appeared in this switch at line 597
在switch case语句中,case值有相同的,造成冲突所致。

你可能感兴趣的:(单片机KEIL)