2020-12-04 09:16:12 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
2023-02-25 19:12:10 +01:00
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
config NETUTILS_IPERF
|
2020-12-04 09:16:12 +01:00
|
|
|
bool "iperf example"
|
|
|
|
default n
|
|
|
|
depends on NET
|
|
|
|
select NETUTILS_NETLIB
|
|
|
|
select LIBC_FLOATINGPOINT
|
|
|
|
select SYSTEM_ARGTABLE3
|
|
|
|
---help---
|
|
|
|
Enable the \"iperf example\"
|
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
if NETUTILS_IPERF
|
2023-02-25 19:12:10 +01:00
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
config NETUTILS_IPERF_PROGNAME
|
2020-12-04 09:16:12 +01:00
|
|
|
string "Program name"
|
|
|
|
default "iperf"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
config NETUTILS_IPERF_PRIORITY
|
2020-12-04 09:16:12 +01:00
|
|
|
int "iperf task priority"
|
|
|
|
default 100
|
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
config NETUTILS_IPERF_STACKSIZE
|
2020-12-04 09:16:12 +01:00
|
|
|
int "iperf stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
2021-04-21 15:27:02 +02:00
|
|
|
config NETUTILS_IPERFTEST_DEVNAME
|
2022-08-04 18:28:53 +02:00
|
|
|
string "iperf Network device"
|
2022-11-20 10:27:13 +01:00
|
|
|
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
|
2020-12-04 09:16:12 +01:00
|
|
|
|
|
|
|
endif
|