Tian Sen Wen
Tian Sen Wen
https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/include/esp_mesh_lite_core.h#L931-L984 https://github.com/espressif/esp-mesh-lite/blob/master/examples/rainmaker/led_light/components/app_rainmaker/app_rainmaker_ota_topic.c#L161-L184
Has this device obtained an IP address normally?
Could you please upload the log file from the moment of power-on? We need more information to troubleshoot this issue.
 Comparing the two logs, the right log is missing the "mesh lite internal got IP" event (highlighted in green box). Did you implement any blocking operations in your application-layer...
If this issue is easily reproducible, you can verify it by: 1. Adding debug logs before ip_event_sta_got_ip_handler exits 2. Inserting additional debug logs inside the mqtt_app_start API
When you want to reconfigure the network, you only need to call the following interfaces again without reinitializing: - `esp_mesh_lite_disconnect` - `esp_mesh_lite_set_router_config` - `esp_mesh_lite_connect`
The esp_mesh_lite_get_nodes_list functionality is part of our application demo code, which was specifically created to demonstrate the usage patterns of internal communication interfaces. For reference, see: https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/src/esp_mesh_lite.c The current mesh...
https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/include/esp_mesh_lite.h#L46-L56 The esp_mesh_lite.c file contains open-source application code that you can modify directly if needed. For parent node information, you can use the esp_wifi_sta_get_ap_info(&ap_info) interface to retrieve it.
Currently, the mesh-lite internally has preliminarily implemented the functionality to obtain the entire mesh tree topology, but it is still in the final testing phase. Since updates on GitHub have...
Hi @RubenKelevra, As mentioned in this post: https://github.com/espressif/esp-mesh-lite/issues/186#issue-3283635312, the ESP-Mesh-Lite open-source repository will enter Maintenance Mode, during which only essential security patches and critical bug fixes will be provided. Therefore,...