Search found 2 matches
- Sat Jun 15, 2019 3:54 am
- Forum: ESP-IDF
- Topic: How to process the data from data link layer directly
- Replies: 0
- Views: 2061
How to process the data from data link layer directly
I want to directly process the data from data link layer without calling the functions in ip or tcp layer, if it's possible to make it in ESP32 IDF ???? Thanks very much.
- Sun Jun 09, 2019 2:40 pm
- Forum: ESP-IDF 中文讨论版
- Topic: 函数 tcpip_adapter_start与函数tcpip_adapter_start_api
- Replies: 0
- Views: 2775
函数 tcpip_adapter_start与函数tcpip_adapter_start_api
#define TCPIP_ADAPTER_IPC_CALL(_if, _mac, _ip, _data, _fn) do {\ tcpip_adapter_api_msg_t msg;\ memset(&msg, 0, sizeof(msg));\ msg.tcpip_if = (_if);\ msg.mac = (uint8_t*)(_mac);\ msg.ip_info = (tcpip_adapter_ip_info_t*)(_ip);\ msg.data = (void*)(_data);\ msg.api_fn = (_fn);\ if (TCPIP_ADAPTER_IPC_REM...