49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
menu "ESP32 iperf Configuration"
|
|
|
|
config WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "myssid"
|
|
help
|
|
SSID (network name) to connect to.
|
|
|
|
config WIFI_PASSWORD
|
|
string "WiFi Password"
|
|
default "mypassword"
|
|
help
|
|
WiFi password (WPA or WPA2).
|
|
|
|
config WIFI_MAXIMUM_RETRY
|
|
int "Maximum retry"
|
|
default 5
|
|
help
|
|
Set the Maximum retry to prevent station reconnecting to the AP unlimited when the AP doesn't exist.
|
|
|
|
config USE_STATIC_IP
|
|
bool "Use static IP address"
|
|
default n
|
|
help
|
|
Enable static IP address configuration instead of DHCP.
|
|
|
|
config STATIC_IP_ADDR
|
|
string "Static IP address"
|
|
default "192.168.1.50"
|
|
depends on USE_STATIC_IP
|
|
help
|
|
Static IP address for this device.
|
|
|
|
config STATIC_GATEWAY_ADDR
|
|
string "Gateway address"
|
|
default "192.168.1.1"
|
|
depends on USE_STATIC_IP
|
|
help
|
|
Gateway IP address.
|
|
|
|
config STATIC_NETMASK_ADDR
|
|
string "Netmask"
|
|
default "255.255.255.0"
|
|
depends on USE_STATIC_IP
|
|
help
|
|
Netmask for the network.
|
|
|
|
endmenu
|