Kconfig.projbuild 965 B

12345678910111213141516171819202122232425262728293031
  1. menu "Iperf Configuration"
  2. config IPERF_SOCKET_RX_TIMEOUT
  3. int "iperf socket TCP/UDP rx timeout in seconds"
  4. default 10
  5. help
  6. The value is used for iperf socket TCP/UDP rx timeout, iperf will be aborted
  7. and socket will be closed and shutdown.
  8. config IPERF_SOCKET_TCP_TX_TIMEOUT
  9. int "iperf socket TCP tx timeout in seconds"
  10. default 10
  11. help
  12. The value is used for iperf socket TCP tx timeout, iperf will be aborted
  13. and socket will be closed and shutdown.
  14. config IPERF_TRAFFIC_TASK_PRIORITY
  15. int "iperf traffic task priority"
  16. default 4
  17. range 1 24
  18. help
  19. The value is used for iperf traffic task priority.
  20. config IPERF_REPORT_TASK_PRIORITY
  21. int "iperf result report task priority"
  22. default 6
  23. range 1 24
  24. help
  25. The value is used for iperf result report task priority.
  26. endmenu