25 lines
542 B
C
25 lines
542 B
C
|
/*
|
||
|
* File : board.h
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
*
|
||
|
* 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
|
||
|
* 2017-12-12 Bluebear233 first implementation
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __BOARD_H__
|
||
|
#define __BOARD_H__
|
||
|
|
||
|
// <o> Internal SRAM memory size[Kbytes] <8-64>
|
||
|
#define SRAM_SIZE 64
|
||
|
#define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* BOARD_H_ */
|