You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
416 B
19 lines
416 B
/* |
|
* Copyright (c) 2024 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* @file SoC configuration macros for the Nordic Semiconductor NRF54L family processors. |
|
*/ |
|
|
|
#ifndef _NORDICSEMI_NRF54L_SOC_H_ |
|
#define _NORDICSEMI_NRF54L_SOC_H_ |
|
|
|
#include <soc_nrf_common.h> |
|
|
|
#define FLASH_PAGE_ERASE_MAX_TIME_US 42000UL |
|
#define FLASH_PAGE_MAX_CNT 381UL |
|
|
|
#endif /* _NORDICSEMI_NRF54L_SOC_H_ */
|
|
|