2015-04-06 13:46:14 +08:00
|
|
|
/*
|
2021-04-09 10:52:34 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2015-04-06 13:46:14 +08:00
|
|
|
*
|
2021-04-09 10:52:34 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-06 13:46:14 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BOARD_H__
|
|
|
|
#define __BOARD_H__
|
|
|
|
|
2015-11-13 20:39:40 +08:00
|
|
|
// <o> Internal SRAM memory size[Kbytes] <16 or 32>
|
|
|
|
// <i>Default: 16
|
2021-03-14 15:18:33 +08:00
|
|
|
#define NRF_SRAM_BEGIN (0x20000000)
|
|
|
|
#define NRF_SRAM_SIZE (16 * 1024)
|
|
|
|
#define NRF_SRAM_END (NRF_SRAM_BEGIN + NRF_SRAM_SIZE)
|
2015-11-13 20:39:40 +08:00
|
|
|
//#endif
|
2015-04-06 13:46:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
void rt_hw_board_init(void);
|
|
|
|
|
|
|
|
#endif
|