Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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_NAU8822
  23. bool "NAU8822 Audio Codec."
  24. select BSP_USING_I2C
  25. default n
  26. config NU_PKG_USING_ILI9341
  27. bool "ILI9341 LCD Panel"
  28. select BSP_USING_GPIO
  29. default n
  30. if NU_PKG_USING_ILI9341
  31. choice
  32. prompt "Select ili9341 interface"
  33. config NU_PKG_USING_ILI9341_SPI
  34. select BSP_USING_SPI
  35. bool "ILI9341_SPI"
  36. help
  37. Choose this option if you the ili9341 device is with SPI interface.
  38. config NU_PKG_USING_ILI9341_EBI
  39. select BSP_USING_EBI
  40. bool "ILI9341_EBI"
  41. help
  42. Choose this option if you the ili9341 device is with EBI interface.
  43. endchoice
  44. config NU_PKG_ILI9341_WITH_OFFSCREEN_FRAMEBUFFER
  45. bool "Create an offscreen framebuffer."
  46. default n
  47. config NU_PKG_ILI9341_HORIZONTAL
  48. bool "Set horizontal view. (320x240)"
  49. default n
  50. endif
  51. config NU_PKG_USING_SPINAND
  52. bool "SPI NAND flash."
  53. select BSP_USING_QSPI
  54. select RT_USING_MTD_NAND
  55. default n
  56. endmenu