1# nRF IPM driver channel configuration 2 3# Copyright (c) 2019 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6menu "IPM Message Channel [$(nrfx_ipc_num)] configuration" 7 8config IPM_MSG_CH_$(nrfx_ipc_num)_ENABLE 9 bool "Enable IPM Message Channel $(nrfx_ipc_num)" 10 11config IPM_MSG_CH_$(nrfx_ipc_num)_RX 12 bool "IPM Message RX Channel" 13 depends on IPM_MSG_CH_$(nrfx_ipc_num)_ENABLE 14 15config IPM_MSG_CH_$(nrfx_ipc_num)_TX 16 bool "IPM Message TX Channel" 17 depends on IPM_MSG_CH_$(nrfx_ipc_num)_ENABLE 18 default ! IPM_MSG_CH_$(nrfx_ipc_num)_RX 19 20endmenu 21