1 /*
2  * Copyright (c) 2016 Linaro Limited
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file SoC configuration macros for the Nordic nRF51 family processors.
9  */
10 
11 #ifndef _NORDICSEMI_NRF51_SOC_H_
12 #define _NORDICSEMI_NRF51_SOC_H_
13 
14 #include <soc_nrf_common.h>
15 
16 #define NRF51_POWER_RAMON_ADDRESS              0x40000524
17 #define NRF51_POWER_RAMONB_ADDRESS             0x40000554
18 #define NRF51_POWER_RAMONx_RAMxON_ONMODE_Msk   0x3
19 
20 #define FLASH_PAGE_ERASE_MAX_TIME_US 22300UL
21 #define FLASH_PAGE_MAX_CNT 256UL
22 
23 #endif /* _NORDICSEMI_NRF51_SOC_H_ */
24