rt-thread/bsp/ls1cdev/Kconfig

127 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-02-09 09:25:20 +08:00
mainmenu "RT-Thread Configuration"
2019-01-16 23:23:38 +08:00
config BSP_DIR
2018-02-09 09:25:20 +08:00
string
option env="BSP_ROOT"
default "."
2019-01-16 23:23:38 +08:00
config RTT_DIR
2018-02-09 09:25:20 +08:00
string
option env="RTT_ROOT"
2018-02-09 10:02:25 +08:00
default "../.."
2019-01-16 23:23:38 +08:00
config PKGS_DIR
2018-02-09 09:25:20 +08:00
string
option env="PKGS_ROOT"
default "packages"
source "$RTT_DIR/Kconfig"
source "$RTT_DIR/libcpu/mips/common/Kconfig"
source "$PKGS_DIR/Kconfig"
2018-02-09 09:25:20 +08:00
config SOC_1C300
bool
select RT_USING_COMPONENTS_INIT
select RT_USING_USER_MAIN
default y
choice
prompt "Board Type"
config RT_LS1C_OPENLOONGSON
bool "OpenLoongson Board"
config RT_LS1C_BAICAIBOARD
bool "Baicai Board"
endchoice
config RT_USING_SELF_BOOT
bool "Enable RT-Thread run without bootloader"
default n
if RT_USING_SELF_BOOT
config RT_SELF_BOOT_DEBUG
bool "Debug self boot code"
default n
endif
2018-03-17 19:15:47 +08:00
if RT_USING_SERIAL
2018-02-09 09:25:20 +08:00
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
2018-02-09 09:25:20 +08:00
config RT_UART_RX_BUFFER_SIZE
int "The rx buffer size"
2018-03-17 19:15:47 +08:00
default 64 if RT_USING_SERIAL
default 64
endif
2018-02-09 09:25:20 +08:00
config RT_USING_GMAC_INT_MODE
bool "Using RT_USING_GMAC_INT_MODE"
default y
2018-02-09 09:25:20 +08:00
config RT_USING_SPI0
2018-03-17 19:15:47 +08:00
bool "Enable SPI0"
2018-02-09 09:25:20 +08:00
select RT_USING_SPI
default y
2018-02-09 09:25:20 +08:00
config RT_USING_SPI1
2018-03-17 19:15:47 +08:00
bool "Enable SPI1"
2018-02-09 09:25:20 +08:00
select RT_USING_SPI
default y
2018-03-17 19:15:47 +08:00
if RT_USING_I2C
2018-02-09 09:25:20 +08:00
config RT_USING_I2C1
2018-03-17 19:15:47 +08:00
bool "Enable I2C1"
default y
2018-02-09 09:25:20 +08:00
config RT_USING_I2C2
bool "Enable I2C2"
default y
2018-03-17 19:15:47 +08:00
endif
2018-02-09 09:25:20 +08:00
2018-02-09 09:25:20 +08:00
config USING_BXCAN0
2018-03-17 19:15:47 +08:00
bool "Enable CAN0"
2018-02-09 09:25:20 +08:00
select RT_USING_CAN
default y
2018-02-09 09:25:20 +08:00
config USING_BXCAN1
2018-03-17 19:15:47 +08:00
bool "Enable CAN1"
2018-02-09 09:25:20 +08:00
select RT_USING_CAN
default y
2018-02-09 09:25:20 +08:00
2018-03-17 19:15:47 +08:00
if RT_USING_CAN
config RT_CAN_USING_HDR
bool "Using RT_CAN_USING_HDR"
select RT_USING_CAN
default y
endif
2018-02-09 09:25:20 +08:00
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