nuttx-apps/examples/mld/Kconfig
YAMAMOTO Takashi e7156be066 Change the defaults of stack size configs to DEFAULT_TASK_STACKSIZE
This commit changes only ones with the default 2048 and
leaves the others.
E.g. this leaves SYSTEM_RAMTEST_STACKSIZE, whose default is 1024.
I guess those need to be inspected one-by-one.
2020-03-27 02:43:11 -05:00

82 lines
1.9 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_MLD
tristate "MLD example"
default n
depends on NET_UDP && NET_MLD
---help---
Enable the MLD example
if EXAMPLES_MLD
config EXAMPLES_MLD_PROGNAME
string "Program name"
default "mld"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config EXAMPLES_MLD_PRIORITY
int "MLD example task priority"
default 100
config EXAMPLES_MLD_STACKSIZE
int "MLD example stack size"
default DEFAULT_TASK_STACKSIZE
config EXAMPLES_MLD_INIT
bool "Initialize network"
default n if NSH_NETINIT
default y if !NSH_NETINIT
---help---
Include logic to initialize the network. This should not be done if
the network is already initialized when nettest runs. This is
usually the case, for example, when nettest is run as an NSH built-
in task.
if EXAMPLES_MLD_INIT
config EXAMPLES_MLD_IPADDR
hex "Target Link-Local address"
default 0x00000002
range 0x0 0xffff
---help---
Last 16-bits of the target link-local, unicast in host order. Given
CONFIG_EXAMPLES_MLD_IPADDR=0xXXXX
the full IPv6 link local address will be fe80::00ff:fe00:XXXX (host order)
config EXAMPLES_MLD_DRIPADDR
hex "Default Router IP address (Gateway)"
default 0x00000001
range 0x0 0xffff
---help---
Last 16-bits of the default link-local, unicast in host order. Given
CONFIG_EXAMPLES_MLD_DRIPADDR=0xXXXX
the full IPv6 link local address will be fe80::00ff:fe00:XXXX (host order)
config EXAMPLES_MLD_NOMAC
bool "Use Canned MAC Address"
default n
endif # EXAMPLES_MLD_INIT
config EXAMPLES_MLD_GRPADDR
hex "Group address"
default 0xE0000181
range 0x0 0xffff
---help---
Last 16-bits of the group link-local, multicast address in host order. Given
CONFIG_EXAMPLES_MLD_GRPADDR=0xXXXX
the full IPv6 link local address will be ff02::0000:0000:XXXX (host order)
endif