board.h 486 B

123456789101112131415161718192021222324
  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. * 2017-5-30 Bernard the first version
  9. */
  10. #ifndef _BOARD_H_
  11. #define _BOARD_H_
  12. #include <stdint.h>
  13. extern unsigned char __bss_start;
  14. extern unsigned char __bss_end;
  15. #define RT_HW_HEAP_BEGIN (void*)&__bss_end
  16. #define RT_HW_HEAP_END (void*)(0x80000000 + 32 * 1024 * 1024)
  17. void rt_hw_board_init(void);
  18. #endif