5b17eeeb9b
* [stm32][nucleo-f072] add arduino gpio support * 完善stm32f401nucleo的基本配置 * 修改led引脚描述 * 潘多拉增加arduino引脚别名 * [ARDUINO]STM32L072RB 增加ADC A0-A5的引脚配置 * add pwm
129 lines
3.2 KiB
Plaintext
129 lines
3.2 KiB
Plaintext
menu "Hardware Drivers Config"
|
|
|
|
config SOC_STM32F072RB
|
|
bool
|
|
select SOC_SERIES_STM32F0
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
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
|
|
|
|
config BSP_USING_ARDUINO
|
|
bool "Support Arduino"
|
|
select RT_USING_ARDUINO
|
|
select RT_USING_PIN
|
|
select BSP_USING_ADC
|
|
select BSP_USING_ADC1
|
|
select BSP_USING_PWM
|
|
select BSP_USING_PWM2
|
|
select BSP_USING_PWM2_CH2
|
|
select BSP_USING_PWM2_CH3
|
|
select BSP_USING_PWM3
|
|
select BSP_USING_PWM3_CH1
|
|
select BSP_USING_PWM3_CH2
|
|
select BSP_USING_I2C
|
|
default n
|
|
|
|
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_UART1
|
|
bool "Enable UART1"
|
|
default n
|
|
|
|
config BSP_UART1_RX_USING_DMA
|
|
bool "Enable UART1 RX DMA"
|
|
depends on BSP_USING_UART1 && RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_USING_UART2
|
|
bool "Enable UART2"
|
|
default n
|
|
|
|
config BSP_UART2_RX_USING_DMA
|
|
bool "Enable UART2 RX DMA"
|
|
depends on BSP_USING_UART2 && RT_SERIAL_USING_DMA
|
|
default n
|
|
endif
|
|
|
|
menuconfig BSP_USING_ADC
|
|
bool "Enable ADC"
|
|
default n
|
|
select RT_USING_ADC
|
|
if BSP_USING_ADC
|
|
config BSP_USING_ADC1
|
|
bool "Enable ADC1"
|
|
default n
|
|
endif
|
|
|
|
menuconfig BSP_USING_PWM
|
|
bool "Enable pwm"
|
|
default n
|
|
select RT_USING_PWM
|
|
|
|
if BSP_USING_PWM
|
|
menuconfig BSP_USING_PWM2
|
|
bool "Enable timer2 output pwm"
|
|
default n
|
|
if BSP_USING_PWM2
|
|
config BSP_USING_PWM2_CH2
|
|
bool "Enable PWM2 channel2"
|
|
default n
|
|
|
|
config BSP_USING_PWM2_CH3
|
|
bool "Enable PWM2 channel3"
|
|
default n
|
|
endif
|
|
|
|
menuconfig BSP_USING_PWM3
|
|
bool "Enable timer3 output pwm"
|
|
default n
|
|
if BSP_USING_PWM3
|
|
config BSP_USING_PWM3_CH1
|
|
bool "Enable PWM3 channel1"
|
|
default n
|
|
|
|
config BSP_USING_PWM3_CH2
|
|
bool "Enable PWM3 channel2"
|
|
default n
|
|
endif
|
|
endif
|
|
|
|
menuconfig BSP_USING_I2C
|
|
bool "Enable I2C BUS"
|
|
default n
|
|
select RT_USING_I2C
|
|
select RT_USING_I2C_BITOPS
|
|
select RT_USING_PIN
|
|
|
|
if BSP_USING_I2C
|
|
|
|
endif
|
|
|
|
source "../libraries/HAL_Drivers/Kconfig"
|
|
|
|
endmenu
|
|
|
|
menu "Board extended module Drivers"
|
|
|
|
endmenu
|
|
|
|
endmenu
|