1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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_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
-
|