2024-04-10 18:51:26 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
#include "eppp_link.h"
|
|
|
|
|
2024-04-11 15:44:47 +02:00
|
|
|
__attribute__((weak)) esp_netif_t *wifi_remote_eppp_init(eppp_type_t role)
|
2024-04-10 18:51:26 +02:00
|
|
|
{
|
|
|
|
uint32_t our_ip = role == EPPP_SERVER ? EPPP_DEFAULT_SERVER_IP() : EPPP_DEFAULT_CLIENT_IP();
|
|
|
|
uint32_t their_ip = role == EPPP_SERVER ? EPPP_DEFAULT_CLIENT_IP() : EPPP_DEFAULT_SERVER_IP();
|
|
|
|
eppp_config_t config = EPPP_DEFAULT_CONFIG(our_ip, their_ip);
|
2024-04-11 15:44:47 +02:00
|
|
|
// We currently support only UART transport
|
2024-04-10 18:51:26 +02:00
|
|
|
config.transport = EPPP_TRANSPORT_UART;
|
|
|
|
config.uart.tx_io = CONFIG_ESP_WIFI_REMOTE_EPPP_UART_TX_PIN;
|
|
|
|
config.uart.rx_io = CONFIG_ESP_WIFI_REMOTE_EPPP_UART_RX_PIN;
|
2024-05-28 12:46:40 +02:00
|
|
|
config.ppp.netif_description = CONFIG_ESP_WIFI_REMOTE_EPPP_NETIF_DESCRIPTION;
|
|
|
|
config.ppp.netif_prio = CONFIG_ESP_WIFI_REMOTE_EPPP_NETIF_PRIORITY;
|
2024-04-10 18:51:26 +02:00
|
|
|
return eppp_open(role, &config, portMAX_DELAY);
|
|
|
|
}
|