Search found 51 matches

by ESP_Bond
Mon Aug 19, 2019 6:14 am
Forum: ESP Mesh 中文讨论版
Topic: 请教一下,安装ESP-MDF遇到的一个问题
Replies: 1
Views: 10862

Re: 请教一下,安装ESP-MDF遇到的一个问题

从你的日志看由于你的编译环境没有安装好造成的, 请运行如下命令:

Code: Select all

sudo apt-get install libncurses5-dev
by ESP_Bond
Thu Aug 15, 2019 3:41 am
Forum: ESP-MDF
Topic: ESP_ERR_MESH_ARGUMENT When sending package to root
Replies: 1
Views: 5085

Re: ESP_ERR_MESH_ARGUMENT When sending package to root

1. If you are sending a packet to the root node, you need to set `data.tos = MESH_TOS_P2P` 2. Even if you use esp_mesh_xxx directly, you can't avoid the problem of packet blocking to the root node. This is because of the ESP-MESH mechanism. ESP-MESH sends flow control to the root node, so it can onl...
by ESP_Bond
Tue Aug 06, 2019 9:32 am
Forum: ESP Mesh 中文讨论版
Topic: ESP32-S 无路由MESH组网,APP怎么连接root接口的softAP?
Replies: 3
Views: 14068

Re: ESP32-S 无路由MESH组网,APP怎么连接root接口的softAP?

请参考: mesh -> "with-router" example doesn't work with espressif IDF softAP #71 https://github.com/espressif/esp-mdf/issues/71 http://static.zybuluo.com/zzc/bkuapxfx0v2l2ucp7yfqphx9/image.png ``` tcpip_adapter_ip_info_t ip_info = { .ip.addr = ipaddr_addr("192.168.1.1"), .netmask.addr = ipaddr_addr("25...
by ESP_Bond
Mon Aug 05, 2019 4:13 am
Forum: ESP-MDF
Topic: Two roots are created after provisioning
Replies: 3
Views: 6913

Re: Two roots are created after provisioning

1. You can modify the configuration by

Code: Select all

make menuconfig
Image

2. Provide some logs of the device so that we can better analyze the cause of the problem
by ESP_Bond
Mon Jul 29, 2019 8:17 am
Forum: ESP Mesh 中文讨论版
Topic: ESP32-S 无路由MESH组网,APP怎么连接root接口的softAP?
Replies: 3
Views: 14068

Re: ESP32-S 无路由MESH组网,APP怎么连接root接口的softAP?

MESH 的 AP 不支持 非mesh 设备接入, 你可以使用一个 ESP32 作用 softap, 可以参见: mesh -> "with-router" example work with ... IDF softAP

iPhone TCP Server..................< ESP32 softAP->........WROOM ESP-MDF router sample
by ESP_Bond
Mon Jul 29, 2019 2:57 am
Forum: ESP-MDF
Topic: ESP32 Mesh with another ESP32 set as AP (no router)
Replies: 2
Views: 6153

Re: ESP32 Mesh with another ESP32 set as AP (no router)

ESP32 runs as an AP: https://github.com/espressif/esp-idf/tree/4a9f339447cd5b3143f90c2422d8e1e1da9da0a4/examples/wifi/getting_started/softAP ESP-MESH networking connection operation: https://github.com/espressif/esp-mdf/tree/master/examples/function_demo/mwifi/router At present, this scheme has prov...
by ESP_Bond
Mon Jul 22, 2019 6:31 am
Forum: ESP-MDF
Topic: "wireless debug" -- how I think it works -- wifi congestion, limitations
Replies: 3
Views: 7214

Re: "wireless debug" -- how I think it works -- wifi congestion, limitations

Under what circumstances will sniffer send failure, we hope that you can provide detailed recurring steps and complete log, if there is this problem we will fix it
by ESP_Bond
Thu Jul 18, 2019 10:33 am
Forum: ESP-MDF
Topic: problem with simple esp_mesh_send command
Replies: 6
Views: 12365

Re: problem with simple esp_mesh_send command

The reason for the error is due to the parameter type mismatch, and your usage is also wrong.
We recommend that you develop on ESP-MDF, and there are rich examples on ESP-MDF.
https://github.com/espressif/esp-mdf

Image
by ESP_Bond
Thu Jul 18, 2019 10:18 am
Forum: ESP-MDF
Topic: "wireless debug" -- how I think it works -- wifi congestion, limitations
Replies: 3
Views: 7214

Re: "wireless debug" -- how I think it works -- wifi congestion, limitations

http://static.zybuluo.com/zzc/w3ms9jwow3o1zllj1o8tyjhe/image.png 1. In the current design, the node will also send wrover / sniffer, even if worover/sniffer is offline. Note: The node will only send packets in ESP-NOW unicast mode and will not send broadcasts.   2. If the destination address of the...
by ESP_Bond
Thu Jul 18, 2019 9:33 am
Forum: ESP-MDF
Topic: OTA Problems
Replies: 6
Views: 9408

Re: OTA Problems

1. I hope to provide a complete log of the problem. https://docs.espressif.com/projects/esp-mdf/en/latest/api-guides/general-notes.html#feedback 2. Set the mupgrade log level to reduce log output           Esp_log_level_set("*", ESP_LOG_INFO);      Esp_log_level_set("mupgrade_node", ESP_LOG_INFO);  ...