#include<pic.h>
#define uchar unsigned char
#define uint unsigned int
__CONFIG(HS&WDTDIS&LVPDIS);
/********以下是延时程序********/
void Delay_ms(uint xms)
{
int i,j;
for(i=0;i<xms;i++)
{ for(j=0;j<71;j++) ; }
}
/********以下是主程序********/
void main (void)
{
TRISD=0x00;//RD口设置为输出
while(1)
{
PORTD=0xFE; //点亮第一个LED灯
Delay_ms(500); //延时
PORTD=0xFD; //点亮第二个LED灯
Delay_ms(500);
PORTD=0xFB; //点亮第三个LED灯
Delay_ms(500);
PORTD=0xF7; //点亮第四个LED灯
Delay_ms(500);
PORTD=0xEF; //点亮第五个LED灯
Delay_ms(500);
PORTD=0xDF; //点亮第六个LED灯
Delay_ms(500);
PORTD=0xBF; //点亮第七个LED灯
Delay_ms(500);
PORTD=0x7F; //点亮第八个LED灯
Delay_ms(500);
}
}
程序如上,
编译结果
清除: 正在删除中间文件和输出文件.
清除: 删除的文件 "E:\ch1\ch1_1\ch1_1.cce".清除: 删除的文件 "E:\ch1\ch1_1\ch1_1.mcs".清除: 完成.
Executing: "C:\Program Files\HI-TECH Software\PICC\9.82\bin\picc.exe" -C -E"ch1_1.cce" "ch1_1.c" -O"ch1_1.obj" -Zg9 -O -Q -MPLAB -16F877A
(924) missing argument to "-O" option
Skipping link step. Not all sources built successfully.
BUILD
这是什么问题呢?该如何解决,本人弄两三天了 还是没有头绪。 |