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 * 2009-09-22 Bernard add board.h to this bsp 9 * 2011-03-04 lgnq add board.h to FM3 bsp 10 */ 11 12 #ifndef __BOARD_H__ 13 #define __BOARD_H__ 14 15 //Internal SRAM memory size[Kbytes] <8-64> 16 //MB9BF500 : 32 17 //MB9BF504 : 32 18 //MB9BF505 : 48 19 //MB9BF506 : 64 20 #define FM3_SRAM_SIZE 64 21 #define FM3_SRAM_END (0x1FFF8000 + FM3_SRAM_SIZE * 1024) 22 23 void rt_hw_board_init(void); 24 25 #endif 26