AVR中斷處理問(wèn)題
l很早以前版本的該開(kāi)發(fā)環(huán)境有:
void ADC_vect(void) __attribute__((interrupt));
void ADC_vect(void)
{
中斷處理代碼
}
void ADC_vect(void)
{
}
可以中斷嵌套,
還有一種不可以中斷嵌套的:
)
現(xiàn)在都是采用:
ISR(vector, [attributes]) //其中attributes為可選擇參數(shù)有:ISR_BLOCK(阻塞,即不中斷嵌套), ISR_NOBLOCK(可中斷嵌套), ISR_NAKED ()and ISR_ALIASOF這4個(gè)參數(shù),
評(píng)論