Moved target dependent startup time from header file to Kconfig option to allow adding new targets with new .conf file rather that modyfing source of the test. Adjusted startup time for nRF54L09 and nRF54L20. Signed-off-by: Michał Stasiak <michal.stasiak@nordicsemi.no>
14 lines
355 B
Plaintext
14 lines
355 B
Plaintext
# Copyright (c) 2025 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config TEST_NRF_HF_STARTUP_TIME_US
|
|
int "Delay required for HF clock startup."
|
|
default 3000 if CONFIG_SOC_SERIES_NRF91X
|
|
default 500
|
|
depends on SOC_FAMILY_NORDIC_NRF
|
|
help
|
|
Delay in microseconds required for high-frequency
|
|
clock startup.
|
|
|
|
source "Kconfig.zephyr"
|