2012-09-12 20:42:07 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-09-12 20:42:07 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
config NETUTILS_DISCOVER
|
|
|
|
bool "Network Discovery Utility"
|
|
|
|
default n
|
|
|
|
depends on NET_UDP
|
2014-07-03 00:04:25 +02:00
|
|
|
select NETUTILS_NETLIB
|
2012-09-12 20:42:07 +02:00
|
|
|
---help---
|
|
|
|
Tool for discovering devices on the local network per UDP broadcast.
|
|
|
|
|
|
|
|
if NETUTILS_DISCOVER
|
|
|
|
|
2012-09-12 22:14:46 +02:00
|
|
|
config DISCOVER_STACK_SIZE
|
2012-09-12 20:42:07 +02:00
|
|
|
int "Discover Daemon Stack Size"
|
|
|
|
default 1024
|
|
|
|
|
2012-09-12 22:14:46 +02:00
|
|
|
config DISCOVER_PRIORITY
|
2012-09-12 20:42:07 +02:00
|
|
|
int "Discover Daemon Priority"
|
|
|
|
default 50
|
|
|
|
|
2012-09-12 22:14:46 +02:00
|
|
|
config DISCOVER_PORT
|
2012-09-12 20:42:07 +02:00
|
|
|
int "Discover Daemon Port Number"
|
|
|
|
default 96
|
|
|
|
|
2012-09-12 22:14:46 +02:00
|
|
|
config DISCOVER_INTERFACE
|
|
|
|
string "Network Interface Name"
|
2012-09-12 20:42:07 +02:00
|
|
|
default "eth0"
|
|
|
|
|
2012-09-12 22:14:46 +02:00
|
|
|
config DISCOVER_DEVICE_CLASS
|
2012-09-12 20:42:07 +02:00
|
|
|
hex "Network Discovery Class"
|
|
|
|
default 0xff
|
|
|
|
|
2013-04-25 23:52:00 +02:00
|
|
|
config DISCOVER_DESCR
|
2012-09-12 20:42:07 +02:00
|
|
|
string "Discoverer Description"
|
|
|
|
default "NuttX"
|
|
|
|
|
|
|
|
endif
|