board.h 761 字节
Newer Older
B
bernard.xiong@gmail.com 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * File      : board.h
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2009, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE
 *
 * Change Logs:
 * Date           Author       Notes
 * 2009-09-22     Bernard      add board.h to this bsp
13
 * 2011-03-04     lgnq         add board.h to FM3 bsp
B
bernard.xiong@gmail.com 已提交
14 15 16 17 18
 */

#ifndef __BOARD_H__
#define __BOARD_H__

19 20 21 22 23 24
//Internal SRAM memory size[Kbytes] <8-64>
//MB9BF500 : 32
//MB9BF504 : 32
//MB9BF505 : 48
//MB9BF506 : 64
#define FM3_SRAM_SIZE         32
25
#define FM3_SRAM_END          (0x1FFFC000 + FM3_SRAM_SIZE * 1024)
26

B
bernard.xiong@gmail.com 已提交
27 28 29
void rt_hw_board_init(void);

#endif