Tian Sen Wen

Results 350 comments of Tian Sen Wen

```c if ( time_us > list->messages[i].time + ( 5 * 1000000 ) ) { printf ( "#######ERR: msg id:%ld timeout##########\n" , list->messages[i].msgid ); ``` 看代码跟 mesh-lite 逻辑以及发送接口没有关系,只是你这里的判断导致走到了 ERR,你可以再检查下你的应用层代码。

```c esp_bridge_wifi_set_config ( WIFI_IF_AP, &wifi_config ); #if IS_ROOT esp_wifi_set_protocol ( WIFI_IF_AP, WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N | WIFI_PROTOCOL_LR ); #else // esp_wifi_set_protocol ( WIFI_IF_AP, WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N |...

Can you provide a topology diagram with icons representing the ESP32, PC, and wirelessly connected devices, and indicate which device the Web Server is on and which other device wants...

No, coexistence of SoftAP and BLE may cause interference and potential instability.

Hello, you need to enable the BRIDGE_DATA_FORWARDING_NETIF_ETHERNET configuration item in menuconfig to enable Ethernet netif.

Which ETH PHY are you using? Have you tested it with the ethernet/basic example below from idf?

https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32/esp32-ethernet-kit/index.html I can successfully assign IP regardless of whether I use ESP32+IP101 or SPI Ethernet modules such as W5500, DM9051, etc. At first, I suspected that it was a hardware...

You can enable BRIDGE_DATA_FORWARDING_NETIF_SOFTAP, and the ESP32 will be able to work as an access point.

The primary purpose of the `dev_change_proto_down_generic` API is to control the **down** or **up** state of a network interface. You can check if there is a similar API in the...