76 lines
1.6 KiB
C
76 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2021-08-25 AisinoChip first implementation
|
|
*/
|
|
|
|
#include <rthw.h>
|
|
#include <rtthread.h>
|
|
#include "rtconfig.h"
|
|
#include "board.h"
|
|
#include <rtdevice.h>
|
|
|
|
#define SOC_SRAM_END_ADDR (SOC_SRAM_START_ADDR+SOC_SRAM_SIZE*1024)
|
|
|
|
extern int rt_application_init(void);
|
|
|
|
#if defined(__CC_ARM) || defined(__CLANG_ARM)
|
|
extern int Image$$RW_IRAM1$$ZI$$Limit;
|
|
#elif __ICCARM__
|
|
#pragma section="HEAP"
|
|
#else
|
|
extern int __bss_end;
|
|
#endif
|
|
|
|
extern void rt_hw_uart_init(void);
|
|
|
|
/**
|
|
* This is the timer interrupt service routine.
|
|
*
|
|
*/
|
|
void SysTick_Handler(void)
|
|
{
|
|
/* enter interrupt */
|
|
rt_interrupt_enter();
|
|
|
|
rt_tick_increase();
|
|
|
|
/* leave interrupt */
|
|
rt_interrupt_leave();
|
|
}
|
|
|
|
/**
|
|
* This function will initial EVB board.
|
|
*/
|
|
void rt_hw_board_init(void)
|
|
{
|
|
/* system init, clock, NVIC */
|
|
System_Init();
|
|
|
|
/* Configure the SysTick */
|
|
SysTick_Config(System_Get_SystemClock() / RT_TICK_PER_SECOND);
|
|
|
|
rt_hw_uart_init();
|
|
rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
|
|
|
|
#ifdef RT_USING_HEAP
|
|
#if defined(__CC_ARM) || defined(__CLANG_ARM)
|
|
rt_system_heap_init((void *)&Image$$RW_IRAM1$$ZI$$Limit, (void *)SOC_SRAM_END_ADDR);
|
|
#elif __ICCARM__
|
|
rt_system_heap_init(__segment_end("HEAP"), (void *)SOC_SRAM_END_ADDR);
|
|
#else
|
|
/* init memory system */
|
|
rt_system_heap_init((void *)&__bss_end, (void *)SOC_SRAM_END_ADDR);
|
|
#endif
|
|
#endif /* RT_USING_HEAP */
|
|
|
|
#ifdef RT_USING_COMPONENTS_INIT
|
|
rt_components_board_init();
|
|
#endif
|
|
}
|
|
|