|
为什么我明明定义了,还是要提示出错?
代码:
void readsensor(void)//读传感器
{
SEN_EN=1;
XC_EN=0;
ADDR_EN=1;
unsigned int h;
for(h=0;h<3;h++)
{
xc_buf[sen_count]=P0;
sen_count++;
}
if(sen_count>2)
{
sen_count=0;
sen_flag=1;
}
}
提示:
DIJIQUDONG.C(58): error C141: syntax error near 'unsigned'
DIJIQUDONG.C(58): error C202: 'h': undefined identifier
DIJIQUDONG.C(59): error C202: 'h': undefined identifier
|
|