各位好,
本人在编译AVR程序时出现如下错误:
../main.c:164: error: static declaration of '__vector_14' follows non-static declaration
../main.c:164: error: previous declaration of '__vector_14' was here
源代码如下:
ISR(ADC_vect) //一旦AD转换结束,AD中断使能 全局使能 进入中断服务子程序进行数据读取
{
uchar temp2;
temp2=SREG;
temp=ADCSRA;
temp=temp&0x10;
if(temp==0x10)
{
result=ADC;
ADCSRA|=1<<ADIF;
}
temp1=ADC; //16bits整形数据 最大
}
请高手指点1 2
|