board.h 409 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2021, Shenzhen Academy of Aerospace Technology
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-11-16 Dystopia the first version
  9. */
  10. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #define RT_HW_HEAP_BEGIN (void*)0x0C000000
  13. #define RT_HW_HEAP_END (void*)0x0C100000
  14. void rt_hw_board_init(void);
  15. #endif /* __BOARD_H__ */