1 /* 2 * Copyright (c) 2021, Shenzhen Academy of Aerospace Technology 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2021-11-16 Dystopia the first version 9 */ 10 11 #ifndef __BOARD_H__ 12 #define __BOARD_H__ 13 14 #define RT_HW_HEAP_BEGIN (void*)0x0C000000 15 #define RT_HW_HEAP_END (void*)0x0C100000 16 17 void rt_hw_board_init(void); 18 19 #endif /* __BOARD_H__ */ 20 21