-
Notifications
You must be signed in to change notification settings - Fork 624
Expand file tree
/
Copy pathKconfig
More file actions
60 lines (47 loc) · 953 Bytes
/
Kconfig
File metadata and controls
60 lines (47 loc) · 953 Bytes
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
52
53
54
55
56
57
58
59
60
#
#For a description of the syntax of this configuration file,
#see kconfig - language at https: //www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt
#
config CSIFW
bool "CSI Framework"
default n
select WIFI_CSI
depends on TASK_MANAGER
---help---
Enables CSI Framework.
if CSIFW
config CSI_DATA_TIMEOUT_SEC
int "CSI DATA TIMEOUT"
default 15
---help---
CSI DATA TIMEOUT
menu "CSIFW Debug Logs"
config CSIFW_LOGS
bool "CSIFW Logs"
default y
---help---
Enables CSIFW logs
if CSIFW_LOGS
config CSIFW_LOGE
bool "CSIFW Error Logs"
default y
---help---
Enables CSIFW Error Logs
config CSIFW_LOGI
bool "CSIFW Information Logs"
default n
---help---
Enables CSIFW Information Logs
config CSIFW_LOGD
bool "CSIFW Debug Logs"
default n
---help---
Enables CSIFW Debug Logs
config CSIFW_LOGV
bool "CSIFW Verbose Logs"
default n
---help---
Enables CSIFW Verbose Logs
endif #CSIFW_LOGS
endmenu
endif #if CSIFW