| # |
| # For a description of the syntax of this configuration file, |
| # see the file kconfig-language.txt in the NuttX tools repository. |
| # |
| |
| config EXAMPLES_TCP_IPC_SERVER |
| bool "Server for TCP IPC NuttX" |
| default n |
| select ARCH_HAVE_NET |
| select ARCH_HAVE_NETDEV_STATISTICS |
| select NET_READAHEAD |
| select NET_TCP |
| select NET |
| select NET_SOCKOPTS |
| select NET_LOOPBACK |
| select NETDEV_LATEINIT |
| select SCHED_HPWORK |
| ---help--- |
| Enable the TCP SERVER example |
| |
| config EXAMPLES_TCP_IPC_SERVER_PROGNAME |
| string "Program name" |
| default "SERVER" |
| depends on EXAMPLES_TCP_IPC_SERVER |
| ---help--- |
| This is the name of the program that will be used when the NSH ELF |
| program is installed. |
| |
| config EXAMPLES_TCP_IPC_SERVER_PRIORITY |
| int "SERVER task priority" |
| default 100 |
| depends on EXAMPLES_TCP_IPC_SERVER |
| |
| config EXAMPLES_TCP_IPC_SERVER_STACKSIZE |
| int "SERVER stack size" |
| default DEFAULT_TASK_STACKSIZE |
| depends on EXAMPLES_TCP_IPC_SERVER |