Kconfig.backends 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. # Shell backends configuration options
  2. # Copyright (c) 2018 Nordic Semiconductor ASA
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig SHELL_BACKENDS
  5. bool "Enable shell backends"
  6. default y
  7. help
  8. Enable shell backends.
  9. if SHELL_BACKENDS
  10. # Workaround for not being able to have commas in macro arguments
  11. DT_CHOSEN_Z_SHELL_UART := zephyr,shell-uart
  12. config SHELL_BACKEND_SERIAL
  13. bool "Enable serial backend"
  14. default "$(dt_chosen_enabled,$(DT_CHOSEN_Z_SHELL_UART))" if HAS_DTS
  15. default y if !HAS_DTS
  16. select SERIAL
  17. select RING_BUFFER
  18. help
  19. Enable serial backend.
  20. if SHELL_BACKEND_SERIAL
  21. config SHELL_BACKEND_SERIAL_INIT_PRIORITY
  22. int "Initialization priority"
  23. default 0
  24. range 0 99
  25. help
  26. Initialization priority for UART backend. This must be bigger than
  27. the initialization priority of the used serial device.
  28. config SHELL_PROMPT_UART
  29. string "Displayed prompt name"
  30. default "uart:~$ "
  31. help
  32. Displayed prompt name for UART backend.
  33. # Workaround for not being able to have commas in macro arguments
  34. DT_CHOSEN_Z_SHELL_UART := zephyr,shell-uart
  35. config UART_SHELL_ON_DEV_NAME
  36. string "Device Name of UART Device for SHELL_BACKEND_SERIAL"
  37. default "$(dt_chosen_label,$(DT_CHOSEN_Z_SHELL_UART))" if HAS_DTS
  38. default "UART_0"
  39. help
  40. This option specifies the name of UART device to be used for the
  41. SHELL UART backend.
  42. In case when DTS is enabled (HAS_DTS), the default value is
  43. set from DTS chosen node 'zephyr,shell-uart' but can be overridden
  44. here.
  45. # Internal config to enable UART interrupts if supported.
  46. config SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
  47. bool "Interrupt driven"
  48. default y
  49. depends on SERIAL_SUPPORT_INTERRUPT
  50. select UART_INTERRUPT_DRIVEN
  51. config SHELL_BACKEND_SERIAL_TX_RING_BUFFER_SIZE
  52. int "Set TX ring buffer size"
  53. default 8
  54. depends on SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
  55. help
  56. If UART is utilizing DMA transfers then increasing ring buffer size
  57. increases transfers length and reduces number of interrupts.
  58. config SHELL_BACKEND_SERIAL_RX_RING_BUFFER_SIZE
  59. int "Set RX ring buffer size"
  60. default 64
  61. help
  62. RX ring buffer size impacts accepted latency of handling incoming
  63. bytes by shell. If shell input is coming from the keyboard then it is
  64. usually enough if ring buffer is few bytes (more than one due to
  65. escape sequences). However, if bulk data is transferred it may be
  66. required to increase it.
  67. config SHELL_BACKEND_SERIAL_RX_POLL_PERIOD
  68. int "RX polling period (in milliseconds)"
  69. default 10
  70. depends on !SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
  71. help
  72. Determines how often UART is polled for RX byte.
  73. config SHELL_BACKEND_SERIAL_CHECK_DTR
  74. bool "Check DTR signal before TX"
  75. default y if USB_UART_CONSOLE
  76. depends on UART_LINE_CTRL
  77. help
  78. Check DTR signal before TX.
  79. module = SHELL_BACKEND_SERIAL
  80. default-timeout = 100
  81. source "subsys/shell/Kconfig.template.shell_log_queue_timeout"
  82. default-size = 10
  83. source "subsys/shell/Kconfig.template.shell_log_queue_size"
  84. choice
  85. prompt "Initial log level limit"
  86. default SHELL_BACKEND_SERIAL_LOG_LEVEL_DEFAULT
  87. config SHELL_BACKEND_SERIAL_LOG_LEVEL_DEFAULT
  88. bool "System limit (LOG_MAX_LEVEL)"
  89. config SHELL_BACKEND_SERIAL_LOG_LEVEL_DBG
  90. bool "Debug"
  91. config SHELL_BACKEND_SERIAL_LOG_LEVEL_INF
  92. bool "Info"
  93. config SHELL_BACKEND_SERIAL_LOG_LEVEL_WRN
  94. bool "Warning"
  95. config SHELL_BACKEND_SERIAL_LOG_LEVEL_ERR
  96. bool "Error"
  97. config SHELL_BACKEND_SERIAL_LOG_LEVEL_NONE
  98. bool "None"
  99. endchoice
  100. config SHELL_BACKEND_SERIAL_LOG_LEVEL
  101. int
  102. default 0 if SHELL_BACKEND_SERIAL_LOG_LEVEL_NONE
  103. default 1 if SHELL_BACKEND_SERIAL_LOG_LEVEL_ERR
  104. default 2 if SHELL_BACKEND_SERIAL_LOG_LEVEL_WRN
  105. default 3 if SHELL_BACKEND_SERIAL_LOG_LEVEL_INF
  106. default 4 if SHELL_BACKEND_SERIAL_LOG_LEVEL_DBG
  107. default 5 if SHELL_BACKEND_SERIAL_LOG_LEVEL_DEFAULT
  108. endif # SHELL_BACKEND_SERIAL
  109. config SHELL_BACKEND_RTT
  110. bool "Enable RTT backend"
  111. select CONSOLE
  112. select RTT_CONSOLE
  113. depends on USE_SEGGER_RTT
  114. help
  115. Enable RTT backend.
  116. if SHELL_BACKEND_RTT
  117. config SHELL_PROMPT_RTT
  118. string "Displayed prompt name"
  119. default "rtt:~$ "
  120. help
  121. Displayed prompt name for RTT backend.
  122. config SHELL_RTT_RX_POLL_PERIOD
  123. int "RX polling period (in milliseconds)"
  124. default 10
  125. help
  126. Determines how often RTT is polled for RX byte.
  127. module = SHELL_BACKEND_RTT
  128. default-timeout = 100
  129. source "subsys/shell/Kconfig.template.shell_log_queue_timeout"
  130. default-size = 10
  131. source "subsys/shell/Kconfig.template.shell_log_queue_size"
  132. choice
  133. prompt "Initial log level limit"
  134. default SHELL_RTT_INIT_LOG_LEVEL_DEFAULT
  135. config SHELL_RTT_INIT_LOG_LEVEL_DEFAULT
  136. bool "System limit (LOG_MAX_LEVEL)"
  137. config SHELL_RTT_INIT_LOG_LEVEL_DBG
  138. bool "Debug"
  139. config SHELL_RTT_INIT_LOG_LEVEL_INF
  140. bool "Info"
  141. config SHELL_RTT_INIT_LOG_LEVEL_WRN
  142. bool "Warning"
  143. config SHELL_RTT_INIT_LOG_LEVEL_ERR
  144. bool "Error"
  145. config SHELL_RTT_INIT_LOG_LEVEL_NONE
  146. bool "None"
  147. endchoice
  148. config SHELL_RTT_INIT_LOG_LEVEL
  149. int
  150. default 0 if SHELL_RTT_INIT_LOG_LEVEL_NONE
  151. default 1 if SHELL_RTT_INIT_LOG_LEVEL_ERR
  152. default 2 if SHELL_RTT_INIT_LOG_LEVEL_WRN
  153. default 3 if SHELL_RTT_INIT_LOG_LEVEL_INF
  154. default 4 if SHELL_RTT_INIT_LOG_LEVEL_DBG
  155. default 5 if SHELL_RTT_INIT_LOG_LEVEL_DEFAULT
  156. module = SHELL_RTT
  157. module-str = RTT shell backend
  158. source "subsys/logging/Kconfig.template.log_config"
  159. endif # SHELL_BACKEND_RTT
  160. config SHELL_BACKEND_TELNET
  161. bool "Enable TELNET backend."
  162. depends on NET_TCP
  163. depends on NET_IPV4 || NET_IPV6
  164. help
  165. Enable TELNET backend.
  166. if SHELL_BACKEND_TELNET
  167. config SHELL_PROMPT_TELNET
  168. string "Displayed prompt name"
  169. default "~$ "
  170. help
  171. Displayed prompt name for TELNET backend.
  172. config SHELL_TELNET_PORT
  173. int "Telnet port number"
  174. default 23
  175. help
  176. This option is used to configure on which port telnet is going
  177. to be bound.
  178. config SHELL_TELNET_LINE_BUF_SIZE
  179. int "Telnet line buffer size"
  180. default 80
  181. help
  182. This option can be used to modify the size of the buffer storing
  183. shell output line, prior to sending it through the network.
  184. Of course an output line can be longer than such size, it just
  185. means sending it will start as soon as it reaches this size.
  186. It really depends on what type of output is expected.
  187. A lot of short lines: better reduce this value. On the contrary,
  188. raise it.
  189. config SHELL_TELNET_SEND_TIMEOUT
  190. int "Telnet line send timeout"
  191. default 100
  192. help
  193. This option can be used to modify the duration of the timer that kick
  194. in when a line buffer is not empty but did not yet meet the line feed.
  195. config SHELL_TELNET_SUPPORT_COMMAND
  196. bool "Add support for telnet commands (IAC) [Experimental]"
  197. help
  198. Current support is so limited it's not interesting to enable it.
  199. However, if proven to be needed at some point, it will be possible
  200. to extend such support.
  201. module = SHELL_TELNET
  202. default-timeout = 100
  203. source "subsys/shell/Kconfig.template.shell_log_queue_timeout"
  204. default-size = 10
  205. source "subsys/shell/Kconfig.template.shell_log_queue_size"
  206. choice
  207. prompt "Initial log level limit"
  208. default SHELL_TELNET_INIT_LOG_LEVEL_DEFAULT
  209. config SHELL_TELNET_INIT_LOG_LEVEL_DEFAULT
  210. bool "System limit (LOG_MAX_LEVEL)"
  211. config SHELL_TELNET_INIT_LOG_LEVEL_DBG
  212. bool "Debug"
  213. config SHELL_TELNET_INIT_LOG_LEVEL_INF
  214. bool "Info"
  215. config SHELL_TELNET_INIT_LOG_LEVEL_WRN
  216. bool "Warning"
  217. config SHELL_TELNET_INIT_LOG_LEVEL_ERR
  218. bool "Error"
  219. config SHELL_TELNET_INIT_LOG_LEVEL_NONE
  220. bool "None"
  221. endchoice
  222. config SHELL_TELNET_INIT_LOG_LEVEL
  223. int
  224. default 0 if SHELL_TELNET_INIT_LOG_LEVEL_NONE
  225. default 1 if SHELL_TELNET_INIT_LOG_LEVEL_ERR
  226. default 2 if SHELL_TELNET_INIT_LOG_LEVEL_WRN
  227. default 3 if SHELL_TELNET_INIT_LOG_LEVEL_INF
  228. default 4 if SHELL_TELNET_INIT_LOG_LEVEL_DBG
  229. default 5 if SHELL_TELNET_INIT_LOG_LEVEL_DEFAULT
  230. module = SHELL_TELNET
  231. module-str = TELNET shell backend
  232. source "subsys/logging/Kconfig.template.log_config"
  233. endif # SHELL_TELNET_BACKEND
  234. config SHELL_BACKEND_DUMMY
  235. bool "Enable dummy backend."
  236. help
  237. Enable dummy backend which can be used to execute commands with no
  238. need for physical transport interface.
  239. if SHELL_BACKEND_DUMMY
  240. config SHELL_PROMPT_DUMMY
  241. string "Displayed prompt name"
  242. default "~$ "
  243. help
  244. Displayed prompt name for DUMMY backend.
  245. config SHELL_BACKEND_DUMMY_BUF_SIZE
  246. int "Size of dummy buffer size"
  247. default 300
  248. help
  249. This is size of output buffer that will be used by dummy backend, this limits number of
  250. characters that will be captured from command output.
  251. endif # SHELL_BACKEND_DUMMY
  252. endif # SHELL_BACKENDS