Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. config EXAMPLES_NXTERM
  6. tristate "NxTerm example"
  7. default n
  8. depends on NXTERM
  9. select LIB_BOARDCTL
  10. ---help---
  11. Enable the NxTerm example
  12. if EXAMPLES_NXTERM
  13. config EXAMPLES_NXTERM_PROGNAME
  14. string "Program name"
  15. default "nxterm"
  16. ---help---
  17. This is the name of the program that will be used when the NSH ELF
  18. program is installed.
  19. config EXAMPLES_NXTERM_PRIORITY
  20. int "NxTerm task priority"
  21. default 100
  22. config EXAMPLES_NXTERM_STACKSIZE
  23. int "NxTerm stack size"
  24. default DEFAULT_TASK_STACKSIZE
  25. config EXAMPLES_NXTERM_LISTENERPRIO
  26. int "Listener priority"
  27. default 100
  28. config EXAMPLES_NXTERM_CLIENTPRIO
  29. int "Client priority"
  30. default 100
  31. config EXAMPLES_NXTERM_SERVERPRIO
  32. int "Server priority"
  33. default 120
  34. config EXAMPLES_NXTERM_NOTIFYSIGNO
  35. int "Notification signal"
  36. default 4
  37. range 1 31
  38. config EXAMPLES_NXTERM_BPP
  39. int "Pixel width"
  40. default 16
  41. range 1 32
  42. ---help---
  43. The only valid selections are 1, 2, 4, 8, 16, and 32. The
  44. corresponding NX disable selection (e.g., CONFIG_NX_DISABLE_16BPP),
  45. must not be set.
  46. config EXAMPLES_NXTERM_BGCOLOR
  47. hex "Background color"
  48. default 0x2211
  49. config EXAMPLES_NXTERM_WCOLOR
  50. hex "Window color"
  51. default 0xcf1f
  52. config EXAMPLES_NXTERM_TOOLBAR_HEIGHT
  53. int "Toolbar height"
  54. default 16
  55. config EXAMPLES_NXTERM_TBCOLOR
  56. hex "Toolbar color"
  57. default 0xbdf7
  58. config EXAMPLES_NXTERM_FONTID
  59. int "Font ID"
  60. default 16
  61. config EXAMPLES_NXTERM_FONTCOLOR
  62. hex "Font color"
  63. default 0x0000
  64. endif