25 lines
600 B
Plaintext
25 lines
600 B
Plaintext
# Copyright (c) Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig RETAINED_MEM
|
|
bool "Retained memory support"
|
|
help
|
|
Enables support for drivers that can retain their data whilst the
|
|
device is powered (may be lost in low power states).
|
|
|
|
if RETAINED_MEM
|
|
|
|
config RETAINED_MEM_INIT_PRIORITY
|
|
int "Retained memory devices init priority"
|
|
default 40
|
|
help
|
|
Retained memory devices initialization priority,
|
|
|
|
module = RETAINED_MEM
|
|
module-str = retained_mem
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/retained_mem/Kconfig.nrf"
|
|
|
|
endif # RETAINED_MEM
|