1# Copyright (c) 2021 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "Nordic SYSTEM_OFF demo"
5
6config APP_USE_RETAINED_MEM
7	bool "Use state retention in system off using retained_mem driver"
8	select RETAINED_MEM
9
10config GPIO_WAKEUP_ENABLE
11	bool "Use button to wake up device from system off"
12	default y
13	help
14	  Enable system off wakeup from pressing sw0 button.
15
16config GRTC_WAKEUP_ENABLE
17	bool "Use GRTC to wake up device from system off"
18	help
19	  Enable system off wakeup from GRTC.
20
21config LPCOMP_WAKEUP_ENABLE
22	bool "Use COMP to wake up device from system off"
23	help
24	  Enable system off wakeup from analog comparator.
25
26source "Kconfig.zephyr"
27