Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. config BSP_USING_AUDIO
  32. bool "Enable Audio(WM8904&SPH0641LU4H)"
  33. select RT_USING_AUDIO
  34. default n
  35. if BSP_USING_AUDIO
  36. config BSP_USING_AUDIO_REPLAY
  37. bool "Enable WM8904(only replay)"
  38. select BSP_USING_I2C4
  39. default y
  40. config BSP_USING_AUDIO_RECORD
  41. bool "Enable SPH0641LU4H"
  42. default y
  43. endif
  44. endmenu