board.h 701 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * File : board.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2009-2014, 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. * 2014-08-03 aozima first implementation
  13. */
  14. #ifndef __BOARD_H__
  15. #define __BOARD_H__
  16. #include "cmem7_includes.h"
  17. //#include "cmem7_retarget.h"
  18. #define SRAM_SIZE 64 // KB
  19. #define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
  20. //#define RT_USING_UART0
  21. //#define RT_USING_UART1
  22. #define RT_USING_UART2
  23. void rt_hw_board_init(void);
  24. #endif