board_base.h 504 B

12345678910111213141516171819202122232425
  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. #ifndef __BOARD_BASE_H__
  11. #define __BOARD_BASE_H__
  12. #include "rtconfig.h"
  13. #include "hal_base.h"
  14. extern uint32_t __heap_begin[];
  15. extern uint32_t __heap_end[];
  16. #define RT_HW_HEAP_BEGIN (void*)&__heap_begin
  17. #define RT_HW_HEAP_END (void*)&__heap_end
  18. void rt_hw_board_init(void);
  19. #endif