Kconfig 1.1 KB
Newer Older
B
bernard 已提交
1 2
menu "RT-Thread Components"

B
bernard 已提交
3 4 5 6 7 8 9 10
config RT_USING_COMPONENTS_INIT
    bool "Use components automatically initialization"
    default y

if RT_USING_COMPONENTS_INIT
    config RT_USING_USER_MAIN
        bool "The main() function as user entry function"
        default y
11 12 13 14 15

    if RT_USING_USER_MAIN
        config RT_MAIN_THREAD_STACK_SIZE
            int "Set main thread stack size"
            default 2048
16 17 18 19 20
        config RT_MAIN_THREAD_PRIORITY
            int "Set main thread priority" 
            default 4  if RT_THREAD_PRIORITY_8
            default 10  if RT_THREAD_PRIORITY_32
            default 85  if RT_THREAD_PRIORITY_256
21
    endif
B
bernard 已提交
22 23
endif

24
source "$RTT_DIR/components/cplusplus/Kconfig"
B
bernard 已提交
25

26
source "$RTT_DIR/components/finsh/Kconfig"
B
bernard 已提交
27

28
source "$RTT_DIR/components/dfs/Kconfig"
B
bernard 已提交
29

30
source "$RTT_DIR/components/drivers/Kconfig"
B
bernard 已提交
31

32
source "$RTT_DIR/components/libc/Kconfig"
B
bernard 已提交
33

34
source "$RTT_DIR/components/net/Kconfig"
B
bernard 已提交
35

B
bernard 已提交
36 37
source "$RTT_DIR/components/vbus/Kconfig"

armink_ztl's avatar
armink_ztl 已提交
38 39
source "$RTT_DIR/components/utilities/Kconfig"

B
Bernard Xiong 已提交
40 41
source "$RTT_DIR/components/CMSIS/Kconfig"

S
shaojinchun 已提交
42 43
source "$RTT_DIR/components/lwp/Kconfig"

B
bernard 已提交
44
endmenu