board.h 308 B

123456789101112131415161718
  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. */
  9. #ifndef __BOARD__
  10. #define __BOARD__
  11. extern void *_end;
  12. extern void *_heap_end;
  13. #define HEAP_BEGIN &_end
  14. #define HEAP_END &_heap_end
  15. #endif