我用mc9s12xs128单片机编程,在软件上调试的时候,要进入中断程序要怎么调试啊?我用F11单步运行,当主函数运行到了 for(;;)
{
_FEED_COP(); /* feeds the dog */
} /* loop forever */
/* please make sure that you never leave main */
} 时,就一直在循环,不能进入中断程序。我不知道是因为我的程序问题还是我软件操作错了。那位大哥大姐,麻烦你们给我说一下,在调试的时候要怎么进入中断程序啊?谢谢了、、
我没有把main函数放上来,EnableInterrupts;在主函数里面有。
void main(void) {
/* put your own code here */
PLL_Init();
PWM_Init();
PIT_Init();
EnableInterrupts;
for(;;)
{
_FEED_COP(); /* feeds the dog */
} /* loop forever */
/* please make sure that you never leave main */
}
麻烦你帮我看看。我不知道怎么回事