1、设置IAR软件Tab键缩进字符个数
办法:Tools-Options-Editor-Tab Size,按习气改后边数字.
2、Error[e46]: Undefined external “LcdInit” referred in main( E:\MSP430
\UDP\Debug\Obj\main.r43 )
原因:工程中有多个.c文件,但不在工程中.
处理:把.c文件加到工程里。
3、Error[e27]: Entry “ReadingData” in module DS1302 ( E:\MSP430
\Module\DS1302\Debug\Obj\DS1302.r43 ) redefined in module main
原因:我把界说的数组unsigned char ReadingData[7];放在.h的文件中编译呈现
这样的过错
处理:把unsigned char ReadingData[7];放在.c文件中
4、An error has occured.See the log file C\…\workspace_v5_1\.metadata\.log
处理:装置目录CCS5.1\CCS5.1.1.00031_win32\baserepo下的vcredist_x86_2005
5、Error[Pe127]: expected a statement E:\MSP430\Module\TFT\SD.c 95
Error[Pe018]: expected a “)” E:\MSP430\Module\TFT\SD.c 132
处理:仔细查看下程序,看有没有一些语法上的过错。比方:
#define SPI_DO_H P1OUT |= BIT0; //P1.0
#define SPI_DO_L P1OUT &= ~BIT0;
多加的“;”就会使程序呈现上述过错。
6、The target setup(MSP430G2xx3) does not match the actual target tpe
(MSP430G2xx2)
处理:查看方针板上芯片型与CCS工程设置芯片型是否共同。大部分是匹配不共同的
问题。
7、Warning[Pa093]:implicit conversion from floating point to integer。
处理:运用强制转化句子,把float数据转化成integer类型数据。这样避免数据犯错。