acassis commented on code in PR #1349: URL: https://github.com/apache/incubator-nuttx-apps/pull/1349#discussion_r997027810
########## examples/tcp_ipc_client/Kconfig: ########## @@ -0,0 +1,31 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +config EXAMPLES_CLIENT + bool "Client TCP Nuttx" + default n + depends on NET_TCP + depends on NET_SOCKOPTS + select NET_LOOPBACK + ---help--- + Enable the TCP client example + +config EXAMPLES_CLIENT_PROGNAME + string "Program name" + default "CLIENT" + depends on EXAMPLES_CLIENT + ---help--- + This is the name of the program that will be used when the NSH ELF + program is installed. + +config EXAMPLES_CLIENT_PRIORITY + int "CLIENT task priority" + default 100 + depends on EXAMPLES_CLIENT + +config EXAMPLES_CLIENT_STACKSIZE + int "CLIENT stack size" + default 8192 + depends on EXAMPLES_CLIENT Review Comment: Argg, I missed these, please use: EXAMPLES_TCP_IPC_CLIENT and "Client for TCP IPC NuttX" -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org