board.h 531 B

1234567891011121314151617181920212223242526
  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-09-19 Quintin.Z the first version
  9. */
  10. // <<< Use Configuration Wizard in Context Menu >>>
  11. #ifndef __BOARD_H__
  12. #define __BOARD_H__
  13. #include <stdint.h>
  14. #include <stdbool.h>
  15. // <o> Internal SRAM memory size[Kbytes] <8>
  16. #define NV32_SRAM_SIZE 8
  17. #define NV32_SRAM_END (0x1FFFF800 + NV32_SRAM_SIZE * 1024)
  18. void rt_hw_board_init(void);
  19. #endif