board.h 713 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * File : board.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006-2017, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2017-09-19 Quintin.Z the first version
  13. */
  14. // <<< Use Configuration Wizard in Context Menu >>>
  15. #ifndef __BOARD_H__
  16. #define __BOARD_H__
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. // <o> Internal SRAM memory size[Kbytes] <8>
  20. #define NV32_SRAM_SIZE 8
  21. #define NV32_SRAM_END (0x1FFFF800 + NV32_SRAM_SIZE * 1024)
  22. void rt_hw_board_init(void);
  23. #endif