forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.sdp
51 lines (36 loc) · 956 Bytes
/
Kconfig.sdp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (c) 2024 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
menu "SDP"
menuconfig SDP
bool "SDP"
if SDP
config SDP_GPIO
bool "SDP GPIO application"
config SDP_MSPI
bool "SDP MSPI application"
if SDP_GPIO
choice SDP_GPIO_BACKEND
prompt "SDP GPIO backend type"
default SDP_GPIO_BACKEND_ICMSG
help
Select the backend type for SDP.
config SDP_GPIO_BACKEND_MBOX
bool "MBOX backend"
help
The MBOX version is more resource-efficient than the ICMSG backend,
but needs to have a shared structure defined as a communication channel.
config SDP_GPIO_BACKEND_ICMSG
bool "ICMSG backend"
config SDP_GPIO_BACKEND_ICBMSG
bool "ICBMSG backend"
endchoice
endif # SDP_GPIO
config SDP_IMAGE_PATH
string
default "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/gpio" if SDP_GPIO
default "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/mspi" if SDP_MSPI
help
Source directory of SDP image.
endif # SDP
endmenu