Kconfig 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if ARCH_BOARD_SHENZHOU
  6. if LCD
  7. menu "LCD Controller Selection"
  8. comment "Disable Unused LCD Controllers"
  9. config STM32_ILI1505_DISABLE
  10. bool "Disable ILI1505"
  11. default n
  12. ---help---
  13. This may be defined to disable support for the ILI1505 LCD controller
  14. You might want to eliminate unused LCD controll support in order to
  15. reduce the FLASH footprint.
  16. config STM32_ILI9300_DISABLE
  17. bool "Disable ILI9300"
  18. default n
  19. ---help---
  20. This may be defined to disable support for the ILI9300 LCD controller
  21. You might want to eliminate unused LCD controll support in order to
  22. reduce the FLASH footprint.
  23. config STM32_ILI9320_DISABLE
  24. bool "Disable ILI9320"
  25. default n
  26. ---help---
  27. This may be defined to disable support for the ILI9320 LCD controller
  28. You might want to eliminate unused LCD controll support in order to
  29. reduce the FLASH footprint.
  30. config STM32_ILI9321_DISABLE
  31. bool "Disable ILI9321"
  32. default n
  33. ---help---
  34. This may be defined to disable support for the ILI9321 LCD controller
  35. You might want to eliminate unused LCD controll support in order to
  36. reduce the FLASH footprint.
  37. config STM32_ILI9325_DISABLE
  38. bool "Disable ILI9325"
  39. default n
  40. ---help---
  41. This may be defined to disable support for the ILI9325 LCD controller
  42. You might want to eliminate unused LCD controll support in order to
  43. reduce the FLASH footprint.
  44. config STM32_ILI9328_DISABLE
  45. bool "Disable ILI9328"
  46. default n
  47. ---help---
  48. This may be defined to disable support for the ILI9328 LCD controller
  49. You might want to eliminate unused LCD controll support in order to
  50. reduce the FLASH footprint.
  51. config STM32_ILI9331_DISABLE
  52. bool "Disable ILI9331"
  53. default n
  54. ---help---
  55. This may be defined to disable support for the ILI9331 LCD controller
  56. You might want to eliminate unused LCD controll support in order to
  57. reduce the FLASH footprint.
  58. config STM32_ILI9919_DISABLE
  59. bool "Disable ILI9919"
  60. default n
  61. ---help---
  62. This may be defined to disable support for the ILI9919 LCD controller
  63. You might want to eliminate unused LCD controll support in order to
  64. reduce the FLASH footprint.
  65. endmenu
  66. endif
  67. endif