Kconfig 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. menu "Select spi bus drivers"
  19. config BSP_USING_SPI2
  20. bool "Enable SPI2"
  21. default y
  22. endmenu
  23. config BSP_USING_SDCARD
  24. bool "Enable SDCARD"
  25. select BSP_USING_SPI2
  26. default y
  27. config BSP_USING_SPIFLASH
  28. bool "Enable SPI Flash"
  29. select BSP_USING_SPI2
  30. default y
  31. config BSP_USING_PCT2075
  32. bool "Enable PCT2075"
  33. select BSP_USING_I2C4
  34. default y
  35. endmenu