Kconfig 801 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # LPC54110 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_ROMFS
  19. bool "Enable ROMFS"
  20. select RT_USING_DFS
  21. select RT_USING_DFS_ROMFS
  22. default y
  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. endmenu