12345678910111213141516171819202122232425262728293031323334353637 |
- # RT1050 bsp Config!
- menu "LPC54110 Bsp Config"
- menu "Select uart drivers"
- config BSP_USING_UART0
- bool "Enable UART0"
- default y
- endmenu
- menu "Select spi bus drivers"
- config BSP_USING_SPI2
- bool "Enable SPI2"
- default y
- endmenu
- menu "Select i2c bus drivers"
- config BSP_USING_I2C4
- bool "Enable I2C4"
- default y
- endmenu
- config BSP_USING_SDCARD
- bool "Enable SDCARD"
- select BSP_USING_SPI2
- default y
- config BSP_USING_SPIFLASH
- bool "Enable SPI Flash"
- select BSP_USING_SPI2
- default y
- config BSP_USING_PCT2075
- bool "Enable PCT2075"
- select BSP_USING_I2C4
- default y
- endmenu
|