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 11 #ifndef __BOARD_H__ 12 #define __BOARD_H__ 13 14 #include "cmem7_includes.h" 15 //#include "cmem7_retarget.h" 16 17 #define SRAM_SIZE 64 // KB 18 #define SRAM_END (0x20000000 + SRAM_SIZE * 1024) 19 20 //#define RT_USING_UART0 21 //#define RT_USING_UART1 22 #define RT_USING_UART2 23 24 void rt_hw_board_init(void); 25 26 #endif 27 28