Files
esp-idf/examples/performance/tcp_esp2ap/main/Kconfig.projbuild

52 lines
1022 B
Plaintext

menu "Example Configuration"
config WIFI_SSID
string "WiFi SSID"
default "tp_wifi_test1"
help
SSID (network name) for the example to connect to.
config WIFI_PASSWORD
string "WiFi Password"
default "1234567890"
help
WiFi password (WPA or WPA2) for the example to use.
config SEVER_PORT
int "tcp sever port"
default 4567
help
which will the tcp sever use.
config BUFF_SIZE
int "buff size"
default 1024
help
the data send&recv buff size.
choice
prompt "test mode"
default PERFORMANCE_MODE
help
This option performance mode.
- for "tcp receive" setting,it will receive data by tcp.
- for "tcp send" setting, it will send data by tcp.
# - for "udp receive" setting,it will receive data by udp.
# - for "udp send" setting,it will send data by udp.
config MODE_TCP_RECV
bool "tcp receive"
config MODE_TCP_SEND
bool "tcp send"
#config MODE_UDP_RECV
# bool "udp receive"
#config MODE_UDP_SEND
# bool "udp send"
endchoice
endmenu