Separate ipc_service libraries Kconfig entries from ipc_service backend entries. IPC_SERVICE_BACKEND_ICMSG_BOND_NOTIFY_REPEAT_TO_MS is renamed to drop BACKEND part, because this entry applies to a library, not to one backend. Icmsg related entries are grouped now in a menuconfig for cleaner presentation in configuration editors. Signed-off-by: Hubert Miś <hubert.mis@nordicsemi.no>
22 lines
561 B
Plaintext
22 lines
561 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor (ASA)
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig IPC_SERVICE
|
|
bool "IPC service support multiple backends"
|
|
help
|
|
Enables support for a service that can be shared by multiple
|
|
users. Ability to work in different backends. The backend
|
|
should be registered before application starts using
|
|
the IPC Service.
|
|
|
|
if IPC_SERVICE
|
|
|
|
rsource "backends/Kconfig"
|
|
rsource "lib/Kconfig"
|
|
|
|
module = IPC_SERVICE
|
|
module-str = IPC service and backend
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif # IPC_SERVICE
|