board.h 479 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2019-07-23 tyustli first version
  9. *
  10. */
  11. #ifndef __BOARD__
  12. #define __BOARD__
  13. #include "gd32vf103.h"
  14. extern void *_end;
  15. extern void *_heap_end;
  16. #define HEAP_BEGIN &_end
  17. #define HEAP_END &_heap_end
  18. void rt_hw_board_init(void);
  19. #endif /* __BOARD__ */
  20. /******************** end of file *******************/