47 lines
993 B
C
47 lines
993 B
C
|
/*
|
||
|
* File : board.c
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
* COPYRIGHT (C) 2006, RT-Thread Develop Team
|
||
|
*
|
||
|
* The license and distribution terms for this file may be
|
||
|
* found in the file LICENSE in this distribution or at
|
||
|
* http://openlab.rt-thread.com/license/LICENSE
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2008-12-11 xuxinming first version
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <rthw.h>
|
||
|
|
||
|
#include "sys_common.h"
|
||
|
#include "system.h"
|
||
|
#include "sci.h"
|
||
|
#include "rti.h"
|
||
|
|
||
|
#include "board.h"
|
||
|
|
||
|
#define RTI_INT_VEC 6
|
||
|
|
||
|
void rt_timer_handler(int vector, void* param)
|
||
|
{
|
||
|
rtiREG1->INTFLAG = 8U; /* clear interrupt flag */
|
||
|
rt_tick_increase();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* This function will init LPC2478 board
|
||
|
*/
|
||
|
void rt_hw_board_init(void)
|
||
|
{
|
||
|
sciInit();
|
||
|
rtiInit();
|
||
|
rtiStartCounter(rtiCOUNTER_BLOCK1);
|
||
|
rtiEnableNotification(rtiNOTIFICATION_COMPARE3);
|
||
|
|
||
|
rt_hw_interrupt_install(RTI_INT_VEC, rt_timer_handler, RT_NULL, "tick");
|
||
|
rt_hw_interrupt_umask(RTI_INT_VEC);
|
||
|
}
|
||
|
|