1menu "Hardware Drivers Config"
2
3config SOC_Core_V_MCU
4    bool
5    select SOC_RISCV_SERIES_Core_V
6    select RT_USING_COMPONENTS_INIT
7    select RT_USING_USER_MAIN
8    default y
9
10menu "On-chip Peripheral Drivers"
11    config BSP_USING_GPIO
12        bool "Enable GPIO"
13        select RT_USING_PIN
14        default y
15
16    menuconfig BSP_USING_UART
17        bool "Enable UART"
18        select RT_USING_SERIAL
19        default y
20
21        if BSP_USING_UART
22           config BSP_USING_UART1
23               bool "Enable UART1"
24               default y
25        endif
26
27endmenu
28
29menu "Onboard Peripheral Drivers"
30
31endmenu
32
33menu "Board extended module Drivers"
34
35endmenu
36
37menu "Onboard System Settings"
38    config DEFAULT_SYSTEM_CLOCK
39        int "IDEFAULT_SYSTEM_CLOCK"
40        range 1 10000000
41        default 5000000u
42
43endmenu
44
45endmenu
46