ESP32/main/Kconfig.projbuild

64 lines
1.7 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 "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