nuttx-apps/netutils/iperf/Kconfig
Petro Karashchenko 672b5ffbc1 netutils/iperf: fix string for iperf test interface option
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
2022-08-05 13:57:28 +08:00

38 lines
775 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NETUTILS_IPERF
bool "iperf example"
default n
depends on NET
select NETUTILS_NETLIB
select LIBC_FLOATINGPOINT
select SYSTEM_ARGTABLE3
---help---
Enable the \"iperf example\"
if NETUTILS_IPERF
config NETUTILS_IPERF_PROGNAME
string "Program name"
default "iperf"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config NETUTILS_IPERF_PRIORITY
int "iperf task priority"
default 100
config NETUTILS_IPERF_STACKSIZE
int "iperf stack size"
default DEFAULT_TASK_STACKSIZE
config NETUTILS_IPERFTEST_DEVNAME
string "iperf Network device"
default "wlan0"
endif