Search found 2 matches

by ChangMing
Fri Mar 27, 2020 10:11 am
Forum: ESP-MDF
Topic: Allow more than one root in one network
Replies: 1
Views: 6965

Re: Allow more than one root in one network

No root conflicts resolution, so more than one root may exist in network. Other nodes will connect to the one with the best path automatically.
by ChangMing
Fri Mar 06, 2020 4:17 am
Forum: ESP-IDF
Topic: WIFI Mesh Internal communication fails with Guru mediation Error
Replies: 2
Views: 5137

Re: WIFI Mesh Internal communication fails with Guru mediation Error

esp_err_t esp_mesh_recv(mesh_addr_t *from, mesh_data_t *data, int timeout_ms, int *flag, mesh_opt_t opt[], int opt_count) The type of flag parameter is int *, So a integer pointer should be pass to it. After esp_mesh_recv() finished, the variable that the pointer linked to will be set MESH_DATA_TOD...