board.h 522 B

123456789101112131415161718192021222324252627
  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. * 2014-08-03 aozima first implementation
  9. */
  10. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #include "cmem7_includes.h"
  13. //#include "cmem7_retarget.h"
  14. #define SRAM_SIZE 64 // KB
  15. #define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
  16. //#define RT_USING_UART0
  17. //#define RT_USING_UART1
  18. #define RT_USING_UART2
  19. void rt_hw_board_init(void);
  20. #endif