2014-01-02 18:30:13 +08:00
|
|
|
/*
|
2018-10-22 11:02:14 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2014-01-02 18:30:13 +08:00
|
|
|
*
|
2018-10-22 11:02:14 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2014-01-02 18:30:13 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard first implementation
|
|
|
|
*/
|
|
|
|
|
2019-03-08 15:02:46 +08:00
|
|
|
#include <board.h>
|
2014-01-02 18:30:13 +08:00
|
|
|
|
2019-03-08 15:02:46 +08:00
|
|
|
#if defined(BSP_USING_SDRAM) && defined(RT_USING_MEMHEAP_AS_HEAP)
|
|
|
|
#include "drv_sdram.h"
|
|
|
|
extern void rt_hw_sdram_init(void);
|
|
|
|
static struct rt_memheap system_heap;
|
2014-01-02 18:30:13 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SysTick_Handler(void)
|
|
|
|
{
|
|
|
|
/* enter interrupt */
|
|
|
|
rt_interrupt_enter();
|
|
|
|
|
|
|
|
rt_tick_increase();
|
|
|
|
|
|
|
|
/* leave interrupt */
|
|
|
|
rt_interrupt_leave();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will initial LPC40xx board.
|
|
|
|
*/
|
|
|
|
void rt_hw_board_init()
|
|
|
|
{
|
|
|
|
/* NVIC Configuration */
|
|
|
|
#define NVIC_VTOR_MASK 0x3FFFFF80
|
|
|
|
#ifdef VECT_TAB_RAM
|
|
|
|
/* Set the Vector Table base location at 0x10000000 */
|
|
|
|
SCB->VTOR = (0x10000000 & NVIC_VTOR_MASK);
|
|
|
|
#else /* VECT_TAB_FLASH */
|
|
|
|
/* Set the Vector Table base location at 0x00000000 */
|
|
|
|
SCB->VTOR = (0x00000000 & NVIC_VTOR_MASK);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* init systick */
|
2015-10-15 23:14:27 +08:00
|
|
|
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND - 1);
|
2014-01-02 18:30:13 +08:00
|
|
|
/* set pend exception priority */
|
|
|
|
NVIC_SetPriority(PendSV_IRQn, (1 << __NVIC_PRIO_BITS) - 1);
|
2015-10-15 23:14:27 +08:00
|
|
|
|
2019-03-08 15:02:46 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2014-01-02 18:30:13 +08:00
|
|
|
|
2019-03-08 15:02:46 +08:00
|
|
|
#if defined(BSP_USING_SDRAM) && defined(RT_USING_MEMHEAP_AS_HEAP)
|
|
|
|
rt_hw_sdram_init();
|
|
|
|
rt_system_heap_init((void *)EXT_SDRAM_BEGIN, (void *)EXT_SDRAM_END);
|
|
|
|
rt_memheap_init(&system_heap, "sdram", (void *)HEAP_BEGIN, ((rt_uint32_t)HEAP_END - (rt_uint32_t)HEAP_BEGIN));
|
|
|
|
#else
|
|
|
|
rt_system_heap_init((void *)HEAP_BEGIN, (void *)HEAP_END);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* RT_USING_HEAP */
|
|
|
|
|
|
|
|
#ifdef RT_USING_COMPONENTS_INIT
|
|
|
|
rt_components_board_init();
|
|
|
|
#endif
|
|
|
|
#ifdef RT_USING_CONSOLE
|
|
|
|
rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
|
2014-01-02 18:30:13 +08:00
|
|
|
#endif
|
|
|
|
}
|