void TIMED(unsigned int x );
main()
{
unsigned int clac = 0xff;
while(1)
{
P0 = clac;
clac--;
TIMED(300);
本文引用地址:
https://www.eepw.com.cn/article/201611/321467.htm}
}
void TIMED( unsigned int x)
{
unsigned int y,i;
for(i = x; i > 0; i--)
for(y = 110; y > 0; y--);
}
评论