-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.canmv
30 lines (25 loc) · 875 Bytes
/
Kconfig.canmv
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
menuconfig SDK_ENABLE_CANMV
bool "CanMV Components Configuration"
if SDK_ENABLE_CANMV
config ENABLE_NETWORK_RT_LAN
bool "Enable Network RT-Thread Lan(eth)"
default n
config ENABLE_NETWORK_RT_WLAN
bool "Enable Network RT-Thread Wlan"
default y
choice CANMV_DEFAULT_SENSOR_CSI_NUM
bool "Default SENSOR on CSI"
default CANMV_DEFAULT_SENSOR_CSI_0
config CANMV_DEFAULT_SENSOR_CSI_0
bool "0"
config CANMV_DEFAULT_SENSOR_CSI_1
bool "1"
config CANMV_DEFAULT_SENSOR_CSI_2
bool "2"
endchoice
config MPP_SENSOR_DEFAULT_CSI
int
default 0 if CANMV_DEFAULT_SENSOR_CSI_0
default 1 if CANMV_DEFAULT_SENSOR_CSI_1
default 2 if CANMV_DEFAULT_SENSOR_CSI_2
endif