1# Copyright (c) 2022 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4if IPC_SERVICE_BACKEND_ICMSG_ME_INITIATOR || IPC_SERVICE_BACKEND_ICMSG_ME_FOLLOWER
5
6config IPC_SERVICE_BACKEND_ICMSG_ME_SEND_BUF_SIZE
7	int "Size of sending buffer size"
8	range 1 65535
9	default 255
10	help
11	  Size of a static buffer used for preparring data to send in sending
12	  function. If you are sure that your application never sends data
13	  data bigger than some size, you can safely change this option to
14	  reduce RAM consumption in your application.
15
16config IPC_SERVICE_BACKEND_ICMSG_ME_NUM_EP
17	int "Endpoints number"
18	range 1 254
19	default 2
20	help
21	  Number of endpoints supported by the multi endpoint ICMSG library.
22
23config IPC_SERVICE_BACKEND_ICMSG_ME_EP_NAME_LEN
24	int "Endpoint name length"
25	range 1 252
26	default 32
27	help
28	  Maximal length of a string used to discover endpoints between the
29	  initiator and the follower.
30
31endif # IPC_SERVICE_BACKEND_ICMSG_ME_INITIATOR || IPC_SERVICE_BACKEND_ICMSG_ME_FOLLOWER
32