nuttx-apps/netutils/iperf/Kconfig

44 lines
974 B
Plaintext
Raw Normal View History

#
# 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" if DRIVERS_IEEE80211
default "wpan0" if NET_6LOWPAN
default "sl0" if NET_SLIP
default "tun0" if NET_TUN
default "can0" if NET_CAN
default "eth0" if NET_ETHERNET
default "lo" # if NET_LOOPBACK
endif