82 lines
2.4 KiB
Plaintext
82 lines
2.4 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.
|
|
|
|
menu "Device discovery (broadcast beacon)"
|
|
config BEACON_INTERVAL_SEC
|
|
int "Broadcast beacon interval (seconds)"
|
|
default 5
|
|
range 1 60
|
|
help
|
|
Interval in seconds between UDP broadcast beacons for laptop discovery.
|
|
endmenu
|
|
|
|
menu "Telemetry (fiwi-telemetry)"
|
|
config TELEMETRY_AUTO_DELETE_AFTER_DOWNLOAD
|
|
bool "Auto-delete fiwi-telemetry file after successful HTTP download"
|
|
default n
|
|
help
|
|
When enabled, the fiwi-telemetry file is automatically deleted
|
|
from the SD card after it has been successfully downloaded via HTTP.
|
|
endmenu
|
|
|
|
menu "SD Card"
|
|
config SD_CD_GPIO
|
|
int "Card Detect GPIO (-1 to disable)"
|
|
default 26 if IDF_TARGET_ESP32C5
|
|
default -1
|
|
help
|
|
GPIO for SD card detect. -1 to disable. SparkFun breakout on ESP32-C5: GPIO26.
|
|
|
|
config SD_CD_ACTIVE_LOW
|
|
bool "Card Detect: LOW = inserted"
|
|
default y
|
|
help
|
|
When set (default), LOW on CD pin means card inserted (SparkFun). When unset, HIGH means inserted.
|
|
endmenu
|
|
|
|
endmenu
|