board.h 498 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2009-09-22 Bernard add board.h to this bsp
  9. * 2018-09-02 xuzhuoyi modify for TMS320F28379D version
  10. */
  11. #ifndef __BOARD_H__
  12. #define __BOARD_H__
  13. #include <rtthread.h>
  14. #define C28X_SRAM_END 0x00020000
  15. #define HEAP_BEGIN 0x0000E000
  16. #define HEAP_END C28X_SRAM_END
  17. extern void rt_hw_board_init(void);
  18. #endif