PICC16V9.50版本编译提示的Advisory怎么消除? Clean: Deleting intermediary and output files. Clean: Deleted file "E:program finishingHFT2HFT2_1.0.0.0main.obj". Clean: Deleted file "E:program finishingHFT2HFT2_1.0.0.0main.cce". Clean: Deleted file "HTFV1.0.0.0.cof". Clean: Done. Executing: "C:Program FilesHI-TECH SoftwarePICC9.50inpicc.exe" -C -E"main.cce" "main.c" -O"main.obj" -Zg9 -O -ASMLIST -ICD -Q -MPLAB -16F677 Advisory[1207] : some of the command line options you are using are now obsolete Advisory[1208] : use --help option or refer to the user manual for option details Executing: "C:Program FilesHI-TECH SoftwarePICC9.50BINPICC.EXE" -E"HTFV1.0.0.0.lde" "E:program finishingHFT2HFT2_1.0.0.0main.obj" -O"HTFV1.0.0.0.cof" -O"HTFV1.0.0.0.hex" -ICD -Q -MPLAB -16F677 Advisory[1207] : some of the command line options you are using are now obsolete Advisory[1208] : use --help option or refer to the user manual for option details ------------------------------------------------------------------------------------------------------------------------- Q:使用的PICC16V9.50版本、PIC16F677、MPLAB8.00,程序很简单,就一个空的主函数,编译提示BUILD SUCCEEDED: Tue Sep 30 22:14:28 2008,但在上面有一些Advisory提示,在以前8.05版本从来没遇到过,看Advisory以及后面的解释,似乎是有一些OPTION使用了老版本的命令,但我见项目的时候,都是用的MPLAB项目向导一路YES点下来的,自己从来没手工改动过这些编译的命令参数。
代码就这么多。。。 //----------------------------------------------------------------------------- //filename: //Version: v1.0 //Designer: yezhen //StartTime: //EndTime: //History: //----------------------------------------------------------------------------- #include "main.h" //----------------------------------------------------------------------------- BYTEBIT flag0; //----------------------------------------------------------------------------- void main(void) { //initsys(); while(1){ // clrwdt(); // OSCset(); } } //----------------------------------------------------------------------------- void interrupt ISR(void) { } //-----------------------------------------------------------------------------
谁遇到过?这个问题如何解决? |