?? main.c
字號:
/* metrowerks sample code */
/*
this source illustrates code called by ISR
and #pragma directives necessary for ISR-safe code
*/
/*
main program creates a timer compare interrupt
to blink EVM LEDs; pushing IRQA/B will switch LED group.
IRQA corresponds to LED 1
IRQB corresponds to LED 3
to boot in standalone mode from flash:
1. disconnect parallel cable & power cable
2. power down
3. power on
*/
#include <stdlib.h>
#include "led.h"
#include "isr.h"
int main(void)
{
initLED ();
initIsr ();
while (1)
{
/* press IRQA/IRQB to decide LED group */
asm(nop);
asm(nop);
asm(nop);
asm(nop);
asm(nop);
asm(nop);
}
exit(0); /* Call Exit to flush all IO buffers */
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -