1mainmenu "RT-Thread Configuration"
2
3BSP_DIR := .
4
5RTT_DIR := ../..
6
7PKGS_DIR := packages
8
9source "$(RTT_DIR)/Kconfig"
10osource "$PKGS_DIR/Kconfig"
11
12config SOC_AT91SAM926
13    bool
14    select RT_USING_COMPONENTS_INIT
15    select RT_USING_USER_MAIN
16    select RT_USING_CACHE
17    default y
18
19config RT_USING_UART0
20    bool "Using RT_USING_UART0"
21    default n
22
23config RT_USING_UART3
24    bool "Using RT_USING_UART3"
25    default y
26
27config RT_USING_UART4
28    bool "Using RT_USING_UART4"
29    default n
30
31config RT_USING_LED
32    bool "Using RT_USING_LED"
33    default y
34    help
35        led blink demo
36