1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config MAX_IDLE_WAKES
5	int "Maximum number of spurious wakes during k_cpu_idle() test"
6	default 1 if NRF53_SYNC_RTC
7	default 0
8	help
9	  The platform may have some component running in the background while the k_cpu_idle test is
10	  running causing the CPU to awake. With this option we allow for a maximum number of wakes
11	  for each 10ms idle test, which by default should be 0.
12
13# Include Zephyr's Kconfig
14source "Kconfig"
15