Kconfig 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # RT1050 bsp Config!
  2. menu "LPC54110 Bsp Config"
  3. menu "Select uart drivers"
  4. config BSP_USING_UART0
  5. bool "Enable UART0"
  6. default y
  7. endmenu
  8. menu "Select spi bus drivers"
  9. config BSP_USING_SPI2
  10. bool "Enable SPI2"
  11. default y
  12. endmenu
  13. menu "Select i2c bus drivers"
  14. config BSP_USING_I2C4
  15. bool "Enable I2C4"
  16. default y
  17. endmenu
  18. config BSP_USING_SDCARD
  19. bool "Enable SDCARD"
  20. select BSP_USING_SPI2
  21. default y
  22. config BSP_USING_SPIFLASH
  23. bool "Enable SPI Flash"
  24. select BSP_USING_SPI2
  25. default y
  26. config BSP_USING_PCT2075
  27. bool "Enable PCT2075"
  28. select BSP_USING_I2C4
  29. default y
  30. endmenu