| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- menu "Hardware Drivers Config"
- config SOC_STM32F427II
- bool
- select SOC_SERIES_STM32F4
- default y
- menu "Onboard Peripheral Drivers"
- 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_UART6
- bool "Enable UART6 (debug usart)"
- default y
- config BSP_UART6_RX_USING_DMA
- bool "Enable UART6 RX DMA"
- depends on BSP_USING_UART6 && RT_SERIAL_USING_DMA
- default n
- config BSP_USING_UART3
- bool "Enable UART3"
- default n
- config BSP_UART3_RX_USING_DMA
- bool "Enable UART3 RX DMA"
- depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA
- default n
- endif
- menuconfig BSP_USING_CAN
- bool "Enable CAN"
- default n
- select RT_USING_CAN
- if BSP_USING_CAN
- config BSP_USING_CAN1
- bool "using CAN1"
- default n
- config BSP_USING_CAN2
- bool "using CAN2"
- default n
- endif
- source "../libraries/HAL_Drivers/Kconfig"
- endmenu
- menu "Board extended module Drivers"
- endmenu
- endmenu
|