mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-24 07:47:30 +02:00
74 lines
2.4 KiB
Plaintext
74 lines
2.4 KiB
Plaintext
![]() |
choice ESP_WIFI_REMOTE_LIBRARY
|
||
|
prompt "Choose WiFi-remote implementation"
|
||
|
default ESP_WIFI_REMOTE_LIBRARY_EPPP
|
||
|
help
|
||
|
Select type of WiFi Remote implementation
|
||
|
|
||
|
ESP-HOSTED is the default and most versatile option.
|
||
|
It's also possible to use EPPP, which uses PPPoS link between micros and NAPT, so it's slower
|
||
|
and less universal.
|
||
|
|
||
|
config ESP_WIFI_REMOTE_LIBRARY_HOSTED
|
||
|
bool "ESP-HOSTED"
|
||
|
config ESP_WIFI_REMOTE_LIBRARY_EPPP
|
||
|
bool "EPPP"
|
||
|
endchoice
|
||
|
|
||
|
if ESP_WIFI_REMOTE_LIBRARY_EPPP
|
||
|
menu "WiFi remote by EPPP"
|
||
|
|
||
|
choice ESP_WIFI_REMOTE_EPPP_TRANSPORT
|
||
|
prompt "Choose EPPP transport"
|
||
|
default ESP_WIFI_REMOTE_EPPP_TRANSPORT_UART
|
||
|
help
|
||
|
Select type of EPPP transport
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_TRANSPORT_UART
|
||
|
bool "UART"
|
||
|
config ESP_WIFI_REMOTE_EPPP_TRANSPORT_SPI
|
||
|
bool "SPI"
|
||
|
endchoice
|
||
|
|
||
|
if ESP_WIFI_REMOTE_EPPP_TRANSPORT_UART
|
||
|
config ESP_WIFI_REMOTE_EPPP_UART_TX_PIN
|
||
|
int "TXD Pin Number"
|
||
|
default 10
|
||
|
range 0 31
|
||
|
help
|
||
|
Pin number of UART TX.
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_UART_RX_PIN
|
||
|
int "RXD Pin Number"
|
||
|
default 11
|
||
|
range 0 31
|
||
|
help
|
||
|
Pin number of UART RX.
|
||
|
endif
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_SERVER_CA
|
||
|
string "Servers CA certificate"
|
||
|
default "--- Please copy content of the CA certificate ---"
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_CLIENT_CRT
|
||
|
string "Client certificate"
|
||
|
default "--- Please copy content of the Client certificate ---"
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_CLIENT_KEY
|
||
|
string "Client key"
|
||
|
default "--- Please copy content of the Client key ---"
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_CLIENT_CA
|
||
|
string "Clients CA certificate"
|
||
|
default "--- Please copy content of the CA certificate ---"
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_SERVER_CRT
|
||
|
string "Server certificate"
|
||
|
default "--- Please copy content of the Client certificate ---"
|
||
|
|
||
|
config ESP_WIFI_REMOTE_EPPP_SERVER_KEY
|
||
|
string "Server key"
|
||
|
default "--- Please copy content of the Client key ---"
|
||
|
endmenu
|
||
|
|
||
|
endif
|