main()
{
unsigned long i,count=80000;
unsigned char x=0;
Init_Clock();
Init_GPIO();
while (1)
{
if(GPIO_ReadInputPin(GPIOG, GPIO_PIN_2)==0x04)
x=0;
else if(x==0)
{
x=1;
if(count==80000)count=20000;
else count=80000;
}
GPIO_WriteReverse(GPIOI, GPIO_PIN_0);
for(i=0;i<count;i++);
}
}
此帖出自
小平头技术问答
main()
{
还是
unsigned long i,count=80000;
unsigned char x=0;
这个提问方式让想帮你的人都无从下手。
第一个前两行是main函数体的实现语法,第二个前两行是变量i,count和x的声明及count和x的初始化
一周热门 更多>