Tian Sen Wen

Results 350 comments of Tian Sen Wen

Hello, please check this [part](https://github.com/espressif/esp-idf/blob/release/v5.3/components/wifi_provisioning/src/manager.c#L1535) in IDF. Could you confirm if this line of code sets the Wi-Fi mode to station mode? Normally, when compiling the Mesh Lite example, the...

Because idf's manager.c will set the wifi mode to WIFI_MODE_STA during network configuration, the AP is invalid at this time. You can comment out the idf code or add some...

Can you provide the log? esp_mesh_lite_get_level returns 0, which means WiFi is not connected properly.

Please update mesh lite to the latest version and try again.

- JOIN_MESH_WITHOUT_CONFIGURED_WIFI_INFO 设置为 true: - 设备在上电执行 esp_mesh_lite_start 之后就会尝试加入 Mesh 网络,即使设备没有配网(没有路由器信息)。 - JOIN_MESH_WITHOUT_CONFIGURED_WIFI_INFO 设置为 false: - 设备如果已经配过网,存在路由器信息,那么设备在上电执行 esp_mesh_lite_start 之后就会尝试加入 Mesh 网络; - 如果设备没有配过网,不存在路由器信息,那么设备在上电执行 esp_mesh_lite_start 之后就不会尝试加入 Mesh 网络,除非收到配网信息之后,用户主动调用 esp_mesh_lite_set_router_config(); esp_mesh_lite_connect(); - join_mesh_ignore_router_status...

- 配网指 esp_mesh_lite_set_router_config,即让设备知道路由器信息 - 如果 JOIN_MESH_WITHOUT_CONFIGURED_WIFI_INFO 设置为 true,设备即使没有配网,其也可以找到一个 Mesh ID 匹配的父节点并连接上去。 - 在不固定根节点的场景下,如果 join_mesh_ignore_router_status 设置为 true,有可能会造成设备之前的环形连接。

- 设备上电直到拓扑稳定会经过一些过程,具体可以参考 [manage-network](https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/User_Guide.md#manage-network)。 - 50 个设备同时上电并形成稳定的拓扑可能需要花费 1-3 分钟。 - 对于一个路由器下,如果需要多个 Mesh 网络(即多个树型拓扑),那么 50 个设备作为 Mesh 网络 1,Mesh ID 设置为 10;另外 50 个设备作为 Mesh 网络 2,Mesh ID 设置为 20。这样做是正常的。但是要注意一点,如果 100 个设备都在一个房间内,两个...

选择父节点时并不会区分父节点和自己的 softap ssid 前缀是否相同。子节点判断是否加入某个父节点的条件是,匹配相同的 Mesh ID 以及匹配相同路由器信息。

1. 对 2. 类似于 TCP 的滑动窗口机制,为了增大传输效率