• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1menu "Cli"
2	config CLI
3		bool "Enable BK Cli"
4		default y
5
6	config BKREG
7		depends on CLI
8		bool "Enable BK Reg read/write"
9		default y
10
11	config MAX_COMMANDS
12		depends on CLI
13		int "MAX number of commands is configured by default"
14		range 0 65535
15		default 255
16
17	config IPERF_TEST
18		depends on CLI
19		bool "Enable Iperf Test"
20		default y
21
22	config TCP_SERVER_TEST
23		depends on CLI
24		bool "Enable TCP server Test"
25		default n
26
27	config AIRKISS_TEST
28		depends on CLI
29		bool "Enable Airkiss Test"
30		default n
31
32	config WIFI_RAW_TX_TEST
33		depends on CLI
34		bool "Enable WiFi Raw TX"
35		default n
36
37	#TODO Exculsive??
38	config I2C1_TEST
39		depends on CLI
40		bool "Enable I2C1 Test"
41		default n
42
43	config I2C2_TEST
44		depends on CLI
45		bool "Enable I2C2 Test"
46		default n
47
48	config UART_TEST
49		depends on CLI
50		bool "Enable Uart Test"
51		default n
52
53	config SPI_TEST
54		depends on CLI
55		bool "Enable SPI Test"
56		default n
57
58	config PERI_TEST
59		depends on CLI
60		bool "Enable Periperal Test"
61		default n
62
63	config RF_OTA_TEST
64		depends on CLI
65		bool "Enable RF OTA Test"
66		default n
67
68	config SHELL_ASYNCLOG
69		depends on CLI
70		bool "Enable Shell and Async log optimize"
71		default n
72
73	config TOUCH
74		depends on CLI
75		bool "Enable TOUCH Test"
76		default n
77	config SBC_TEST
78		depends on CLI
79		bool "Enable SBC Test"
80		default n
81
82	config AUDIO
83		depends on CLI
84		bool "Enable AUDIO"
85		default n
86
87	config EFUSE
88		bool "Enable Efuse"
89		default y
90
91	config ICU
92		bool "Enable ICU"
93		default y
94
95	config SECURITYIP
96		bool "Enable securityIP"
97		default n
98
99	config KEYVALUE
100		bool "Enable KEYVALUE"
101		default n
102
103	config IDLE_UART_OUT_TEST
104		bool "Enable idle uart out test"
105		default n
106
107	config COMPONENTS_WPA2_ENTERPRISE
108                bool "Enable WPA2 ENTERPRISE"
109                default n
110
111        config COMPONENTS_WPA_TWT_TEST
112                bool "Enable WPA TWT TEST"
113                default n
114
115        config COMPONENTS_WFA_CA
116                bool "WFA_CA"
117                default n
118
119	config ENABLE_WIFI_DEFAULT_CONNECT
120		bool "Enable Wi-Fi Default Connect"
121		default n
122endmenu
123
124menu "DUAL_CORE"
125	config DUAL_CORE
126		bool "Dual cpu core run as master core"
127		default n
128
129	config MASTER_CORE
130		depends on DUAL_CORE
131		bool "Dual cpu core run as master core"
132		default n
133
134	config SLAVE_CORE
135		depends on DUAL_CORE
136		bool "Dual cpu core run as slave core"
137		default n
138
139	config SLAVE_CORE_OFFSET
140		depends on MASTER_CORE
141		int "Slave core offset address default 0x2e0000"
142		range 0 4194304
143		default 3014656
144
145	config SLAVE_CORE_RESET_VALUE
146		depends on MASTER_CORE
147		int "Slave core reset value"
148		range 0 1
149		default 1
150	config EFUSE
151		bool "Enable Efuse"
152		default y
153
154	config ICU
155		bool "Enable ICU"
156		default y
157endmenu
158