Kconfig 3.0 KB
Newer Older
V
Vincent-VG 已提交
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 30 31 32
menu "Hardware Drivers Config"

config SOC_STM32L476RG
    bool
    select SOC_SERIES_STM32L4
    default y

menu "Onboard Peripheral Drivers"

    config BSP_USING_STLINK_TO_USART
        bool "Enable STLINK TO USART (uart2)"
        select BSP_USING_UART
        select BSP_USING_UART2
        default y

endmenu

menu "On-chip Peripheral Drivers"

    config BSP_USING_GPIO
        bool "Enable GPIO"
        select RT_USING_PIN
        default y

    menuconfig BSP_USING_UART
        bool "Enable UART"
        default y
        select RT_USING_SERIAL
        if BSP_USING_UART
            config BSP_USING_UART2
                bool "Enable UART2"
                default n   
G
GW 已提交
33
                
V
Vincent-VG 已提交
34 35 36 37 38
            config BSP_UART2_RX_USING_DMA
                bool "Enable UART2 RX DMA"
                depends on BSP_USING_UART2 && RT_SERIAL_USING_DMA
                default n
        endif
G
GW 已提交
39
        
G
GW 已提交
40 41
    menuconfig BSP_USING_I2C
        bool "Enable I2C (software simulation)"
G
GW 已提交
42 43 44 45
        default n
        select RT_USING_I2C
        select RT_USING_I2C_BITOPS
        select RT_USING_PIN
G
GW 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59
        if BSP_USING_I2C
            config BSP_USING_I2C1
            bool "Enable I2C1 BUS (software simulation)"
            default n
            if BSP_USING_I2C1
                config BSP_I2C1_SCL_PIN
                    int "i2c1 scl pin number"
                    range 1 176
                    default 22
                config BSP_I2C1_SDA_PIN
                    int "I2C1 sda pin number"
                    range 1 176
                    default 23
            endif
V
Vincent-VG 已提交
60

G
GW 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73
            config BSP_USING_I2C2
            bool "Enable I2C2 BUS (software simulation)"
            default n
            if BSP_USING_I2C2
                config BSP_I2C2_SCL_PIN
                    int "i2c2 scl pin number"
                    range 1 176
                    default 26
                config BSP_I2C2_SDA_PIN
                    int "I2C2 sda pin number"
                    range 1 176
                    default 27
            endif
G
GW 已提交
74

G
GW 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87
            config BSP_USING_I2C3
            bool "Enable I2C3 BUS (software simulation)"
            default n
            if BSP_USING_I2C3
                config BSP_I2C3_SCL_PIN
                    int "i2c3 scl pin number"
                    range 1 176
                    default 32
                config BSP_I2C3_SDA_PIN
                    int "I2C3 sda pin number"
                    range 1 176
                    default 33
            endif
G
GW 已提交
88 89
        endif
        
90
    menuconfig BSP_USING_ONCHIP_RTC
G
GW 已提交
91 92
        bool "Enable RTC"
        select RT_USING_RTC
93
        select RT_USING_LIBC
G
GW 已提交
94
        default n
95 96 97 98 99 100 101 102 103 104 105 106
        if BSP_USING_ONCHIP_RTC
            choice
                prompt "Select clock source"
                default BSP_RTC_USING_LSE

                config BSP_RTC_USING_LSE
                    bool "RTC USING LSE"

                config BSP_RTC_USING_LSI
                    bool "RTC USING LSI"
            endchoice
        endif
G
GW 已提交
107
        
V
Vincent-VG 已提交
108 109 110 111 112 113 114
endmenu

menu "Board extended module Drivers"

endmenu

endmenu