This commit adds a test that checks if disconnecting and restarting the IPC session works correctly. The test is also focused on the "unbound" callback. Signed-off-by: Dominik Kilian <Dominik.Kilian@nordicsemi.no> Co-authored-by: Radoslaw Koppel <radoslaw.koppel@nordicsemi.no>
30 lines
664 B
Plaintext
30 lines
664 B
Plaintext
#
|
|
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config IPC_SERVICE_BACKEND_ICMSG
|
|
default n if IPC_SERVICE_BACKEND_ICMSG_V1
|
|
|
|
config IPC_SERVICE_ICMSG
|
|
default n if IPC_SERVICE_ICMSG_V1
|
|
|
|
config IPC_SERVICE_BACKEND_ICMSG_V1
|
|
bool "ICMSG backend with SPSC packet buffer (old implementation)"
|
|
depends on MBOX
|
|
select IPC_SERVICE_ICMSG_V1
|
|
help
|
|
Chosing this backend results in single endpoint implementation based
|
|
on circular packet buffer.
|
|
|
|
menuconfig IPC_SERVICE_ICMSG_V1
|
|
bool "icmsg IPC library (old implementation)"
|
|
select PBUF_V1
|
|
help
|
|
Icmsg library
|
|
|
|
if IPC_SERVICE_ICMSG_V1
|
|
rsource "Kconfig.icmsg_v1"
|
|
endif
|