main.c

来自「包含了NXP众多的MCU的例子程序」· C语言 代码 · 共 27 行

C
27
字号
//This is a LPC2124 or LPC2129 timer interupt demonstration code -LED toggling is done inside hardware.c
/*-------------------------------------------------------------------------------------------------------------------------------*/

#include <iolpc2129.h> //Needed by Macros only usually
#include "hardware.h"  //Supplies Hardware specific macros (e.g. S_BUT1)

/*-------------------------------------------------------------------------------------------------------------------------------*/
void main(void)
{
  CPUinit();
  __disable_interrupt();
  INTERRUPTSinit();
  __enable_interrupt();
  TIMER0initstart();

  A_LED1_OFF;
  A_LED2_OFF;
  while(1)
  {
    //Force LEDs on by pushing Buttons 1,2
    if (S_BUT1==DOWN) A_LED1_ON;
    if (S_BUT2==DOWN) A_LED2_ON;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?