board.h 466 B

123456789101112131415161718192021
  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. * 2018-11-16 bluebear233 first version
  9. */
  10. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. // <o> Internal SRAM memory size[Kbytes] <8-64>
  13. #define SRAM_SIZE (160)
  14. #define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
  15. void rt_hw_board_init(void);
  16. void rt_hw_cpu_reset(void);
  17. #endif /* BOARD_H_ */