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
|
| menu "Debug function"
|
| comment "debug printk function"
|
| config DEBUGGER_PRINTF
| bool "debugger printf support"
| default n
|
| if DEBUGGER_PRINTF
|
| config DEBUG_ERR
| bool "err debug support"
| default n
|
| config DEBUG_LOG
| bool "log debug support"
| default n
|
| config DEBUG_WRN
| bool "warn debug support"
| default n
|
| config DEBUG_INF
| bool "inf debug support"
| default n
| endif
|
| comment "shell function"
|
| config SHELL_USED
| def_bool n
| prompt "shell cmd support"
| select DEBUGGER_PRINTF
|
| comment "system debug function"
|
| config SYSTEM_DEBUG
| def_bool n
| prompt "system debug"
|
| endmenu
|
|