2018-11-19 09:49:32 +08:00
|
|
|
/*
|
2018-11-20 13:45:18 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2018-11-19 09:49:32 +08:00
|
|
|
*
|
2018-11-20 13:45:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2018-11-19 09:49:32 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2018-11-20 13:45:18 +08:00
|
|
|
* 2018-11-16 bluebear233 first version
|
2018-11-19 09:49:32 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BOARD_H__
|
|
|
|
#define __BOARD_H__
|
|
|
|
|
|
|
|
// <o> Internal SRAM memory size[Kbytes] <8-64>
|
|
|
|
#define SRAM_SIZE (160)
|
|
|
|
#define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
|
|
|
|
|
2019-01-20 13:43:15 +08:00
|
|
|
void rt_hw_board_init(void);
|
|
|
|
void rt_hw_cpu_reset(void);
|
2018-11-19 09:49:32 +08:00
|
|
|
|
|
|
|
#endif /* BOARD_H_ */
|