125 lines
2.7 KiB
Plaintext
125 lines
2.7 KiB
Plaintext
|
menu "Hardware Drivers Config"
|
||
|
|
||
|
config SOC_STM32F767IG
|
||
|
bool
|
||
|
select SOC_SERIES_STM32F7
|
||
|
default y
|
||
|
|
||
|
menu "Onboard Peripheral Drivers"
|
||
|
|
||
|
config BSP_USING_USB_TO_USART
|
||
|
bool "Enable USB TO USART (uart1)"
|
||
|
select BSP_USING_UART1
|
||
|
default y
|
||
|
|
||
|
config BSP_USING_RS232
|
||
|
bool "Enable RS232 (uart2 pin conflict with Ethernet)"
|
||
|
select BSP_USING_UART2
|
||
|
default n
|
||
|
|
||
|
endmenu
|
||
|
|
||
|
menu "On-chip Peripheral Drivers"
|
||
|
|
||
|
config BSP_USING_GPIO
|
||
|
bool "Enable GPIO"
|
||
|
select RT_USING_PIN
|
||
|
default y
|
||
|
|
||
|
config BSP_USING_UART1
|
||
|
bool "Enable UART1"
|
||
|
select RT_USING_SERIAL
|
||
|
default y
|
||
|
|
||
|
config BSP_USING_UART2
|
||
|
bool "Enable UART2"
|
||
|
select RT_USING_SERIAL
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_UART3
|
||
|
bool "Enable UART3"
|
||
|
select RT_USING_SERIAL
|
||
|
default n
|
||
|
|
||
|
config BSP_UART_USING_DMA_RX
|
||
|
bool "Enable UART RX DMA support"
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_ON_CHIP_FLASH
|
||
|
bool "Enable on-chip FLASH"
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_SPI1
|
||
|
bool "Enable SPI1 BUS"
|
||
|
select RT_USING_SPI
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_SPI2
|
||
|
bool "Enable SPI2 BUS"
|
||
|
select RT_USING_SPI
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_SPI5
|
||
|
bool "Enable SPI5 BUS"
|
||
|
select RT_USING_SPI
|
||
|
default n
|
||
|
|
||
|
config BSP_SPI_USING_DMA
|
||
|
bool "Enable SPI DMA support"
|
||
|
default n
|
||
|
|
||
|
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
|
||
|
|
||
|
config BSP_USING_ADC2
|
||
|
bool "Enable ADC2"
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_ADC3
|
||
|
bool "Enable ADC3"
|
||
|
default n
|
||
|
endif
|
||
|
|
||
|
menuconfig BSP_USING_I2C1
|
||
|
bool "Enable I2C1 BUS (software simulation)"
|
||
|
default n
|
||
|
select RT_USING_I2C
|
||
|
select RT_USING_I2C_BITOPS
|
||
|
select RT_USING_PIN
|
||
|
if BSP_USING_I2C1
|
||
|
comment "Notice: PB6 --> 22; PB7 --> 23"
|
||
|
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
|
||
|
|
||
|
config BSP_USING_ONCHIP_RTC
|
||
|
bool "Enable RTC"
|
||
|
select RT_USING_RTC
|
||
|
select RT_USING_LIBC
|
||
|
default n
|
||
|
|
||
|
config BSP_USING_WDT
|
||
|
bool "Enable Watchdog Timer"
|
||
|
select RT_USING_WDT
|
||
|
default n
|
||
|
|
||
|
endmenu
|
||
|
|
||
|
menu "Board extended module Drivers"
|
||
|
|
||
|
endmenu
|
||
|
|
||
|
endmenu
|