board.h 504 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-06-04 BruceOu first implementation
  9. */
  10. #ifndef __BOARD__
  11. #define __BOARD__
  12. #include "gd32vf103.h"
  13. #include "drv_gpio.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 *******************/