12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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"
- 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
-
|