Need help to start WiFi, EThernet, BT and GSM Interfaces in parallel as per requirement
Posted: Wed Aug 08, 2018 11:22 am
Hi Espressif Systems Developer,
We are working on couple of few ESP32 Modules for our product development purpose and we need little bit help to execute WiFi + BLE, WiFi + Ethernet, BLE + Ethernet, WiFi + GSM etc as per project requirement
So, Right now, I have looked into TCP IP Adapater Init component and found following interface till now.
/* TODO: add Ethernet interface */
typedef enum {
TCPIP_ADAPTER_IF_STA = 0, /**< ESP32 station interface */
TCPIP_ADAPTER_IF_AP, /**< ESP32 soft-AP interface */
TCPIP_ADAPTER_IF_ETH, /**< ESP32 ethernet interface */
TCPIP_ADAPTER_IF_MAX
} tcpip_adapter_if_t;
So, I didn't find BLE and GSM related interface details for now. So, Do we need to include details to use BT and GSM Interface as well or not?
Also, How we can manage multiple connectivity if want to use both Interface at a time and what are the pros/cons for that? Is there any configuration required to do it?
Let me know if need any more details regarding that.
We are working on couple of few ESP32 Modules for our product development purpose and we need little bit help to execute WiFi + BLE, WiFi + Ethernet, BLE + Ethernet, WiFi + GSM etc as per project requirement
So, Right now, I have looked into TCP IP Adapater Init component and found following interface till now.
/* TODO: add Ethernet interface */
typedef enum {
TCPIP_ADAPTER_IF_STA = 0, /**< ESP32 station interface */
TCPIP_ADAPTER_IF_AP, /**< ESP32 soft-AP interface */
TCPIP_ADAPTER_IF_ETH, /**< ESP32 ethernet interface */
TCPIP_ADAPTER_IF_MAX
} tcpip_adapter_if_t;
So, I didn't find BLE and GSM related interface details for now. So, Do we need to include details to use BT and GSM Interface as well or not?
Also, How we can manage multiple connectivity if want to use both Interface at a time and what are the pros/cons for that? Is there any configuration required to do it?
Let me know if need any more details regarding that.