esp-mdf icon indicating copy to clipboard operation
esp-mdf copied to clipboard

Espressif Mesh Development Framework, limited maintain, recommend to use https://github.com/espressif/esp-mesh-lite

Results 107 esp-mdf issues
Sort by recently updated
recently updated
newest added

我的VScode安装了IDF环境,用的framework是v5.1.3版本,编译没有任何问题; 然后又通过 ESP-IDF:install ESP-MDF 安装了MDF,但是编译时老是报错,有哪位大神可以指点一下

通过vscode 安装esp-mdf,从mdf导入例程,新建一个项目,编译报错,有遇到类似问题吗? > Executing task: ninja < ninja: error: loading 'build.ninja': 系统找不到指定的文件。 终端进程“C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command ninja ”已终止,退出代码: 1。

components/esp_http_server/include -ID:/ESP32_IDF/Espressif/frameworks/esp-idf-v4.1.4/components/app_update/include -ID:/ESP32_IDF/Espressif/frameworks/esp-idf-v4.1.4/components/bootloader_support/include -ID:/ESP32_IDF/Esp32MDF/esp-mdf/components/mconfig/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.1.4\" -DMDF_VER=\"v1.0-158-g8d0b79a\" -DESP_PLATFORM -MD -MT esp-idf/mlink/CMakeFiles/__idf_mlink.dir/mlink_handle.c.obj -MF...

## Environment - Core: ESP32-D0WD - MDF version: v1.0-beta1-129-g9212c07-dirty - IDF version: v3.3.4-371-g8ff6e2e - wifi firmware version: 1425c12 ## Problem Description 同时启用ble和wifi mesh后,程序出错,打印 Error! Should enable WiFi modem sleep when...

子节点每隔20秒发送一包给父接点,父节点再发回应答包,一段时间后,发现日志报ESP_ERR_MESH_NO_MEMORY,是不是底层mesh发送不成功,没扔掉缓存数据? D (73354263) [router_example, 2294]: Node receive: 58:cf:79:21:b1:40, size: 102 I (73354264) [router_example, 1516]: receive cmd= ping  D (73367544) [router_example, 2294]: Node receive: a0:76:4e:4d:d8:fc, size: 54 I (73367545) [router_example,...

VScode中idf版本:4.4.6(通过vscode插件安装) mdf也是通过vscode安装的为master版本 在编译到aliyun_sdk的时候报错ninja: build stopped: subcommand failed. [1091/1120] Building C object esp-idf/aliyun_sdk/CMakeFiles/__idf_aliyun_sdk.dir/coap/aliyun_coap.c.obj FAILED: esp-idf/aliyun_sdk/CMakeFiles/__idf_aliyun_sdk.dir/coap/aliyun_coap.c.obj ccache C:\vscode-esp\Tools\tools\xtensa-esp32s2-elf\esp-2021r2-patch5-8.4.0\xtensa-esp32s2-elf\bin\xtensa-esp32s2-elf-gcc.exe -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX -IC:/Users/work/Desktop/get-started/build/config -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/coap/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/message/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/mqtt/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/ota/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/platform/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/sign/include -IC:/vscode-esp/Tools/esp-mdf/components/third_party/aliyun_sdk/platform/idf -IC:/vscode-esp/esp-idf/components/newlib/platform_include -IC:/vscode-esp/esp-idf/components/freertos/include...

ESP32C6mesh数据包用的什么协议,可以使用抓包软件抓取它们之间的数据包吗

ESP32-C6 WIFI MESH组网可以通过什么方法测试MESH网络节点间的传输性能

Hello, I trying the mconfig example from https://github.com/espressif/esp-mdf/tree/master/examples/function_demo/mconfig and installed the android app esp mesh. the device log is showing this I (870) cpu_start: Starting scheduler on PRO CPU. I...

**1. 问题描述** 2年前的项目,持续到22年,均没有出现问题(期间也有更换SDK和电脑),23年使用新电脑最新release v4.4.3编译,出现mconfig_queue_read 超时问题,出现概率几乎100%,偶尔能成功接收到mconfig master的信息。 **2. 问题排查** 2.1. 因为应用层代码没有变动,而电脑和SDK均更新,因此首先排查mconfig_queue.c。 2.2. 发现超时日志代码前,仅仅创建了一个g_mconfig_queue进行接收。而创建过程没有发生错误。 2.3. 发现创建队列仅使用了1个数据长度作为队列长度, 猜想如果接收数据过程异常、数据量大、主机发送数据频繁,可能导致数据丢失问题。 2.4. 修改队列长度为5,多次测试后发现虽然超时仍然发生,但可以在重试mconfig_queue_read过程中正确接收一次。 **3. 问题解决** **请教此问题应如何调试确认问题点。**