1source "$(BSP_DIR)/../common/drivers/Kconfig"
2
3menu "RT-Thread rockchip RK2108 drivers"
4
5config RT_USING_CRU
6    bool "Enable CRU"
7    default n
8
9menu "Enable UART"
10    config RT_USING_UART
11        bool "Enable UART"
12        default y
13
14    if RT_USING_UART
15    config RT_USING_UART0
16        bool "Enable UART0"
17        default n
18
19    config RT_USING_UART1
20        bool "Enable UART1"
21        default n
22
23    config RT_USING_UART2
24        bool "Enable UART2"
25        default y
26    endif
27endmenu
28
29config RT_USING_SYSTICK
30     bool "Enable SYSTICK"
31     default n
32
33endmenu
34