Kconfig 586 字节
Newer Older
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
menu "Hardware Drivers"

menu "On-chip Peripheral Drivers"
    menuconfig BSP_USING_UART
        bool "Enable UART"
        default y
        select USE_SERIAL # sdk serial component
        select ENABLE_Pl011_UART # select sdk pl011 driver
        select RT_USING_SERIAL
        if BSP_USING_UART
            config RT_USING_UART1
                bool "Enable UART1"
                default y
            
            config RT_USING_UART0
                bool "Enable UART0"
                default n

        endif



endmenu

menu "Board extended module Drivers"

endmenu

endmenu