2021-06-09 21:59:47 +08:00
|
|
|
# Copyright (c) 2021 Nordic Semiconductor (ASA)
|
2021-06-09 21:22:38 +08:00
|
|
|
# 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
|
|
|
|
|
2021-09-06 23:26:02 +08:00
|
|
|
rsource "backends/Kconfig"
|
2021-06-09 21:59:47 +08:00
|
|
|
|
2021-06-09 21:22:38 +08:00
|
|
|
module = IPC_SERVICE
|
|
|
|
module-str = IPC service and backend
|
|
|
|
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2021-06-09 21:59:47 +08:00
|
|
|
endif # IPC_SERVICE
|