2016-05-07 21:05:38 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-05-07 21:05:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file SoC configuration macros for the Nordic Semiconductor nRF52 family processors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NORDICSEMI_NRF52_SOC_H_
|
|
|
|
#define _NORDICSEMI_NRF52_SOC_H_
|
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
|
2018-03-19 21:10:26 +08:00
|
|
|
#include <nrf_common.h>
|
2016-08-15 17:36:57 +08:00
|
|
|
#include <nrf.h>
|
2018-06-29 05:16:17 +08:00
|
|
|
|
2018-06-20 23:54:34 +08:00
|
|
|
/* Add include for DTS generated information */
|
|
|
|
#include <generated_dts_board.h>
|
2016-05-07 21:05:38 +08:00
|
|
|
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
|
2017-09-20 10:08:33 +08:00
|
|
|
#define FLASH_PAGE_ERASE_MAX_TIME_US 89700UL
|
|
|
|
#define FLASH_PAGE_MAX_CNT 256UL
|
|
|
|
|
2016-05-07 21:05:38 +08:00
|
|
|
#endif /* _NORDICSEMI_NRF52_SOC_H_ */
|