1 #ifndef _BOARD_H_ 2 #define _BOARD_H_ 3 4 #include <rtthread.h> 5 6 #include "nrf.h" 7 8 #define CHIP_SRAM_END (0x20000000 + 64*1024) 9 10 void rt_hw_board_init(void); 11 12 #endif 13 14