111 lines
1.9 KiB
Plaintext
111 lines
1.9 KiB
Plaintext
mainmenu "RT-Thread Configuration"
|
|
|
|
|
|
config BSP_DIR
|
|
string
|
|
option env="BSP_ROOT"
|
|
default "."
|
|
|
|
config RTT_DIR
|
|
string
|
|
option env="RTT_ROOT"
|
|
default "../.."
|
|
|
|
config PKGS_DIR
|
|
string
|
|
option env="PKGS_ROOT"
|
|
default "packages"
|
|
|
|
source "$RTT_DIR/Kconfig"
|
|
source "$PKGS_DIR/Kconfig"
|
|
|
|
config RT_USING_SELF_BOOT
|
|
bool "Enable RT-Thread run without bootloader"
|
|
default n
|
|
|
|
if RT_USING_SERIAL
|
|
config RT_USING_UART2
|
|
bool "Using RT_USING_UART2"
|
|
default y
|
|
config RT_USING_UART1
|
|
bool "Using RT_USING_UART1"
|
|
default y
|
|
config RT_USING_UART3
|
|
bool "Using RT_USING_UART3"
|
|
default n
|
|
|
|
config RT_UART_RX_BUFFER_SIZE
|
|
int "The rx buffer size"
|
|
default 64 if RT_USING_SERIAL
|
|
default 64
|
|
endif
|
|
|
|
config RT_USING_GMAC_INT_MODE
|
|
bool "Using RT_USING_GMAC_INT_MODE"
|
|
default y
|
|
|
|
config RT_USING_FPU
|
|
bool "Using RT_USING_FPU"
|
|
default y
|
|
|
|
config RT_USING_SPI0
|
|
bool "Enable SPI0"
|
|
select RT_USING_SPI
|
|
default y
|
|
|
|
config RT_USING_SPI1
|
|
bool "Enable SPI1"
|
|
select RT_USING_SPI
|
|
default y
|
|
|
|
if RT_USING_I2C
|
|
config RT_USING_I2C1
|
|
bool "Enable I2C1"
|
|
default y
|
|
|
|
config RT_USING_I2C2
|
|
bool "Enable I2C2"
|
|
default y
|
|
endif
|
|
|
|
|
|
config USING_BXCAN0
|
|
bool "Enable CAN0"
|
|
select RT_USING_CAN
|
|
default y
|
|
|
|
config USING_BXCAN1
|
|
bool "Enable CAN1"
|
|
select RT_USING_CAN
|
|
default y
|
|
|
|
if RT_USING_CAN
|
|
config RT_CAN_USING_HDR
|
|
bool "Using RT_CAN_USING_HDR"
|
|
select RT_USING_CAN
|
|
default y
|
|
endif
|
|
|
|
choice
|
|
prompt "Touch format"
|
|
default NO_TOUCH
|
|
|
|
config NO_TOUCH
|
|
bool "with no touch"
|
|
|
|
if RT_USING_RTGUI
|
|
config XPT2046_USING_TOUCH
|
|
bool "with XPT2046 touch"
|
|
endif
|
|
|
|
config TINA_USING_TOUCH
|
|
bool "with TINA touch"
|
|
endchoice
|
|
|
|
if RT_USING_RTC
|
|
config RT_RTC_NAME
|
|
string "RT_RTC_NAME"
|
|
default "RTC"
|
|
endif
|
|
|
|
|