1 /*
2  * Copyright (c) 2021 Rockchip Electronics Co., Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2021-10-12     Steven Liu   first implementation
9  */
10 
11 #ifndef __BOARD_BASE_H__
12 #define __BOARD_BASE_H__
13 
14 #include "rtconfig.h"
15 #include "hal_base.h"
16 
17 extern uint32_t __heap_begin[];
18 extern uint32_t __heap_end[];
19 
20 #define RT_HW_HEAP_BEGIN    (void*)&__heap_begin
21 #define RT_HW_HEAP_END      (void*)&__heap_end
22 
23 void rt_hw_board_init(void);
24 
25 #endif
26