本人新手,codewarrior新建project后生成的main函数中,“EnableInterrupts;”是禁止中断的,有没有什么情况下是允许中断的?
“ _FEED_COP(); /* feeds the dog */”这行代码是什么含义?
我在看例程时,发现可以在for循环中定义变量,为什么不会报错,重复定义?
希望能够有人为我解答,谢谢!
void main(void) {
/* put your own code here */
EnableInterrupts;
for(;;) {
_FEED_COP(); /* feeds the dog */
} /* loop forever */
/* please make sure that you never leave main */
}