-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKconfig
47 lines (47 loc) · 1.44 KB
/
Kconfig
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
menu "Channel"
menuconfig CHANNEL_TEST_ENABLE
bool "Enable unit test"
default y
select CHANNEL_INTERNAL_EXPORT_SYMBOLS
if CHANNEL_TEST_ENABLE
config CHANNEL_TEST_ENABLE_INIT
bool "init"
default y
config CHANNEL_TEST_ENABLE_SETCONTEXT
bool "setContext"
default y
config CHANNEL_TEST_ENABLE_SETCALLBACK
bool "setCallback"
default y
config CHANNEL_TEST_ENABLE_REGISTER
bool "register"
default y
config CHANNEL_TEST_ENABLE_UNREGISTER
bool "unregister"
default y
config CHANNEL_TEST_ENABLE_SEND
bool "send"
default y
config CHANNEL_TEST_ENABLE_BROADCAST_INIT
bool "broadcast_init"
default y
config CHANNEL_TEST_ENABLE_BROADCAST_FINISHED
bool "broadcast_finished"
default y
config CHANNEL_TEST_ENABLE_RESETROOT
bool "resetRoot"
default y
config CHANNEL_TEST_QUEUE_CONSUMER
bool "Channel queue"
default y
config CHANNEL_TEST_QUEUE_TIMEOUT
bool "Channel queue timeout"
default y
config CHANNEL_TEST_QUEUE_LOOP
bool "Channel queue timeout"
default y
endif
config CHANNEL_INTERNAL_EXPORT_SYMBOLS
bool "Export internal functions"
default n
endmenu