PMSM3-4例程中,主程序最后一句和主中断程序第一句分别是
// IDLE loop. Just sit and loop forever:
for(;;) BackTicker++;
}
interrupt void MainISR(void)
{
// Verifying the ISR
IsrTicker++;
这两句话分别是什么含义? BackTicker和IsrTicker是什么含义?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
PMSM3-4例程中,主程序最后一句和主中断程序第一句分别是
// IDLE loop. Just sit and loop forever:
for(;;) BackTicker++;
}
interrupt void MainISR(void)
{
// Verifying the ISR
IsrTicker++;
这两句话分别是什么含义? BackTicker和IsrTicker是什么含义?