1menu "Hardware Drivers Config"
2
3config SOC_FM33LC0XX
4    bool
5    select SOC_SERIES_FM33LC0XX
6    select RT_USING_COMPONENTS_INIT
7    select RT_USING_USER_MAIN
8    default y
9
10menu "On-chip Peripheral Drivers"
11
12    menuconfig BSP_USING_GPIO
13        bool "Enable GPIO"
14        select RT_USING_PIN
15        default y
16
17    menuconfig BSP_USING_UART
18        bool "Enable UART"
19        default y
20        select RT_USING_SERIAL
21        if BSP_USING_UART
22            config BSP_USING_UART0
23                bool "Enable UART0"
24                default n
25
26            config BSP_USING_UART1
27                bool "Enable UART1"
28                default y
29
30            config BSP_USING_UART4
31                bool "Enable UART4"
32                default n
33
34            config BSP_USING_UART5
35                bool "Enable UART5"
36                default y
37
38        endif
39        endmenu
40endmenu
41
42
43
44
45