-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathKconfig
More file actions
36 lines (30 loc) · 684 Bytes
/
Copy pathKconfig
File metadata and controls
36 lines (30 loc) · 684 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
menu "Debug Modules"
menuconfig MOD_ENABLE_CM_BACKTRACE
bool "CmBacktrace (Call Stack Trace)"
select MOD_ENABLE_UNI_IO
default n
if MOD_ENABLE_CM_BACKTRACE
source "debug/cm_backtrace/Kconfig"
endif
menuconfig MOD_ENABLE_COREMARK
bool "Coremark (Benchmark)"
select MOD_ENABLE_LOG
default n
if MOD_ENABLE_COREMARK
source "debug/coremark/Kconfig"
endif
menuconfig MOD_ENABLE_LOG
bool "Log (Single Header Logger)"
select MOD_ENABLE_MACRO
default y
if MOD_ENABLE_LOG
source "debug/log/Kconfig"
endif
menuconfig MOD_ENABLE_MINCTEST
bool "Minctest (Minimal Unit Test Framework)"
select MOD_ENABLE_LOG
default n
menuconfig MOD_ENABLE_RTT
bool "Segger RTT"
default n
endmenu