Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. menu "Nuvoton Packages Config"
  2. config NU_PKG_USING_UTILS
  3. bool
  4. default y
  5. config NU_PKG_USING_DEMO
  6. bool "Enable demos"
  7. default y
  8. config NU_PKG_USING_BMX055
  9. bool "BMX055 9-axis sensor."
  10. select RT_USING_I2C
  11. select RT_USING_SENSOR
  12. default n
  13. config NU_PKG_USING_MAX31875
  14. bool "MAX31875 Temperature sensor."
  15. select RT_USING_I2C
  16. select RT_USING_SENSOR
  17. default n
  18. config NU_PKG_USING_NAU88L25
  19. bool "NAU88L25 Audio Codec."
  20. select BSP_USING_I2C
  21. default n
  22. config NU_PKG_USING_ILI9341
  23. bool "ILI9341 LCD Panel"
  24. select BSP_USING_GPIO
  25. default n
  26. if NU_PKG_USING_ILI9341
  27. choice
  28. prompt "Select ili9341 interface"
  29. config NU_PKG_USING_ILI9341_SPI
  30. select BSP_USING_SPI
  31. bool "ILI9341_SPI"
  32. help
  33. Choose this option if you the ili9341 device is with SPI interface.
  34. config NU_PKG_USING_ILI9341_EBI
  35. select BSP_USING_EBI
  36. bool "ILI9341_EBI"
  37. help
  38. Choose this option if you the ili9341 device is with EBI interface.
  39. endchoice
  40. endif
  41. endmenu