board.h 462 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2024, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024/01/11 flyingcys The first version
  9. */
  10. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #include <rtconfig.h>
  13. extern rt_uint8_t HeapBase;
  14. extern rt_uint8_t HeapLimit;
  15. #define RT_HW_HEAP_BEGIN (void *)&HeapBase
  16. #define RT_HW_HEAP_END (void *)&HeapLimit
  17. void rt_hw_board_init(void);
  18. #endif