📄 timer_test.c
字号:
#include "LPC2468.h" /* LPC24xx definitions */
#include "type.h"
#include "irq.h"
#include "target.h"
#include "timer.h"
#include "fio.h"
extern volatile DWORD timer0_counter;
/*****************************************************************************
** Main Function main()
******************************************************************************/
int main (void)
{
DWORD counter=0;
TargetResetInit();
/* GPIOInit() need to be carefully called if you want to run some
other peripherals, it will set the PINSEL to default value and change
the direction of IOs. */
GPIOInit( 3, FAST_PORT, DIR_OUT );
/* Initialize port for LED display, the LEDs on Keil MCB2300 is Port 2.0~2.7 */
LedsInit();
init_timer( 0, Fpclk/2); /* 每0.5秒产生一个timer0中断 */
enable_timer( 0 ); /* 使能定时器0 */
while( 1 )
{
counter = timer0_counter / 2;
(timer0_counter == 2*counter)?LedOn(counter):LedOff(counter); /* 轮流亮灭 */
}
}
/*****************************************************************************
** End Of File
*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -