2015-01-28 14:28:11 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:14:53 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2015-01-28 14:28:11 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM
|
2018-09-03 09:29:56 -06:00
|
|
|
tristate "Unix domain datagram example"
|
2015-01-28 14:28:11 -06:00
|
|
|
default n
|
|
|
|
depends on NET_LOCAL
|
|
|
|
---help---
|
|
|
|
Enable the Unix domain SOCK_DGRAM test example
|
|
|
|
|
|
|
|
if EXAMPLES_UDGRAM
|
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_ADDR
|
|
|
|
string "Unix domain address"
|
2015-01-30 09:07:22 -06:00
|
|
|
default "/dev/fifo"
|
2015-01-28 14:28:11 -06:00
|
|
|
|
2015-01-29 09:33:06 -06:00
|
|
|
config EXAMPLES_UDGRAM_SERVER_STACKSIZE
|
2019-10-05 21:37:19 -06:00
|
|
|
int "Server stack size"
|
|
|
|
default 4096
|
|
|
|
---help---
|
|
|
|
This is the stack size allocated when the server task runs
|
2015-01-29 09:33:06 -06:00
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_SERVER_PRIORITY
|
2019-10-05 21:37:19 -06:00
|
|
|
int "Server task priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
This is the priority of the server task
|
2015-01-29 09:33:06 -06:00
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_SERVER_PROGNAME
|
2019-10-05 21:37:19 -06:00
|
|
|
string "Server program name"
|
|
|
|
default "server"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
server program is installed.
|
2015-01-29 09:33:06 -06:00
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_CLIENT_STACKSIZE
|
2019-10-05 21:37:19 -06:00
|
|
|
int "Client stack size"
|
|
|
|
default 4096
|
|
|
|
---help---
|
|
|
|
This is the stack size allocated when the client task runs
|
2015-01-29 09:33:06 -06:00
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_CLIENT_PRIORITY
|
2019-10-05 21:37:19 -06:00
|
|
|
int "Client task priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
This is the priority of the client task
|
2015-01-29 09:33:06 -06:00
|
|
|
|
|
|
|
config EXAMPLES_UDGRAM_CLIENT_PROGNAME
|
2019-10-05 21:37:19 -06:00
|
|
|
string "Client program name"
|
|
|
|
default "client"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
client program is installed.
|
2015-01-29 09:33:06 -06:00
|
|
|
|
2015-01-28 14:28:11 -06:00
|
|
|
endif # EXAMPLES_UDGRAM
|