#include <stdio.h>
#include <reg52.h>
#include <intrins.h>
#define uint unsigned int
sbit LED = P1^5; //指示灯
void Delay(uint n); // Delay 100us
void main(void)
{
// while(1)
{
LED =1;
Delay(20);
LED = 0;
Delay(20);
while(1);;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;//这里加一句
}
}
void Delay(uint m)
{
uint i;
while(m--)
for(i=0;i<100;i++);
}
看还会不会,如果不会的话,你用的是AT还是stc的?AT的会自动重新扫描程序 |