查到以下资料:
ESP-MESH-LITE 相较于 ESP-MESH 会节省出更多的内存空间,但 ESP-MESH 的自组网和自修复的特性相对来说更加完善。
ESP-MESH-LITE 跟 ESP-MESH 自动选择父节点方式不同。
ESP-MESH:在上电后所有设备处于空闲节点的时候进行竞选,根据 RSSI 选出根节点,之后根节点再连接路由器。
ESP-MESH-LITE:默认首先配网完上电的设备作为根节点,若同时有多个设备上电,设备都连到路由器上面后,所有设备开始广播路由器
RSSI,RSSI 最好的作为根节点,其余节点断开与路由器的连接,开始重新扫描发现新的父节点。
ESP-MESH ...
Search found 24 matches
- Fri Jun 16, 2023 2:09 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP-NOW和WIFI-MESH是否可以共存
- Replies: 3
- Views: 6776
- Fri Jun 16, 2023 2:02 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP-NOW和WIFI-MESH是否可以共存
- Replies: 3
- Views: 6776
Re: ESP-NOW和WIFI-MESH是否可以共存
感谢推荐,其实目前的需求,不需要联网,只要能在本地网络中,互相发送消息即可。
关于esp-mesh-lite和esp_wifi_mesh之间除了子设备可以单独联网,还有其他区别吗?
并且wifi mesh和ble mesh的传输数据量有多大的区别?
这些信息从哪里能够获取到?查阅了很多网站没有找到相关消息。
关于esp-mesh-lite和esp_wifi_mesh之间除了子设备可以单独联网,还有其他区别吗?
并且wifi mesh和ble mesh的传输数据量有多大的区别?
这些信息从哪里能够获取到?查阅了很多网站没有找到相关消息。
- Thu Jun 15, 2023 1:06 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP-NOW和WIFI-MESH是否可以共存
- Replies: 3
- Views: 6776
ESP-NOW和WIFI-MESH是否可以共存
请问ESP-NOW和WIFI-MESH能共存吗,我看WIFI-MESH的文档中提到,WIFI-MESH存在期间,如果调用wifi api可能会导致异常。
- Thu Dec 29, 2022 2:06 pm
- Forum: ESP-IDF 中文讨论版
- Topic: esp32s3不支持经典蓝牙吗?
- Replies: 1
- Views: 2802
Re: esp32s3不支持经典蓝牙吗?
是的,只有esp32支持经典蓝牙
- Tue Sep 06, 2022 6:23 pm
- Forum: ESP-IDF 中文讨论版
- Topic: esp32s3不支持经典蓝牙吗?
- Replies: 1
- Views: 2802
esp32s3不支持经典蓝牙吗?
kconfig里面经典蓝牙依赖IDF_TARGET_ESP32,只有esp32支持经典蓝牙吗?
"depends_on": "BT_BLUEDROID_ENABLED && IDF_TARGET_ESP32 && BT_BLUEDROID_ENABLED && SOC_BLUEDROID_SUPPORTED",
"help": "For now this option needs \"SMP_ENABLE\" to be set to yes",
"id": "BT_CLASSIC_ENABLED",
"name": "BT_CLASSIC_ENABLED",
"range ...
"depends_on": "BT_BLUEDROID_ENABLED && IDF_TARGET_ESP32 && BT_BLUEDROID_ENABLED && SOC_BLUEDROID_SUPPORTED",
"help": "For now this option needs \"SMP_ENABLE\" to be set to yes",
"id": "BT_CLASSIC_ENABLED",
"name": "BT_CLASSIC_ENABLED",
"range ...
- Fri Aug 12, 2022 11:23 am
- Forum: ESP-IDF 中文讨论版
- Topic: espidf是否可以使用cgi
- Replies: 0
- Views: 2120
espidf是否可以使用cgi
请教一下,espidf有cgi功能吗?
- Tue Jul 26, 2022 3:10 pm
- Forum: ESP-IDF 中文讨论版
- Topic: cdc repl编译失败
- Replies: 2
- Views: 3645
Re: cdc repl编译失败
十分感谢
- Sat Jul 09, 2022 8:21 am
- Forum: ESP-IDF 中文讨论版
- Topic: cdc repl编译失败
- Replies: 2
- Views: 3645
cdc repl编译失败
master分支,使用cdc作为console输出,增加repl功能,编译报错如下,有什么好的解决办法。
esp-idf/components/esp_system/port/soc/esp32s3/usb_console.c:69:1: error: static assertion failed: "usb_osglue_*_int is not multicore capable"
_Static_assert(SOC_CPU_CORES_NUM == 1, "usb_osglue_*_int is not multicore capable");
esp-idf/components/esp_system/port/soc/esp32s3/usb_console.c:69:1: error: static assertion failed: "usb_osglue_*_int is not multicore capable"
_Static_assert(SOC_CPU_CORES_NUM == 1, "usb_osglue_*_int is not multicore capable");
- Sat Jul 09, 2022 8:00 am
- Forum: ESP-IDF 中文讨论版
- Topic: 使用repl功能,每次打开串口都会重启一下
- Replies: 1
- Views: 3409
Re: 使用repl功能,每次打开串口都会重启一下
配置代码如下
esp_console_repl_t *repl = NULL;
esp_console_repl_config_t repl_config = ESP_CONSOLE_REPL_CONFIG_DEFAULT();
esp_console_dev_usb_serial_jtag_config_t jtag_config = ESP_CONSOLE_DEV_USB_SERIAL_JTAG_CONFIG_DEFAULT();
repl_config.prompt = "My Terminal >";
ESP_LOGW(TAG,"return code :%x",esp ...
esp_console_repl_t *repl = NULL;
esp_console_repl_config_t repl_config = ESP_CONSOLE_REPL_CONFIG_DEFAULT();
esp_console_dev_usb_serial_jtag_config_t jtag_config = ESP_CONSOLE_DEV_USB_SERIAL_JTAG_CONFIG_DEFAULT();
repl_config.prompt = "My Terminal >";
ESP_LOGW(TAG,"return code :%x",esp ...
- Thu Jul 07, 2022 5:55 pm
- Forum: ESP-IDF
- Topic: Using the repl function, it will restart every time the serial port is opened
- Replies: 1
- Views: 2682
Re: Using the repl function, it will restart every time the serial port is opened
How to understand this passage
The behavior between an actual USB-to-serial bridge chip and the USB Serial/JTAG Controller is slightly different if the ESP-IDF application does not listen for incoming bytes. An USB-to-serial bridge chip will just send the bytes to a (not listening) chip, while the ...
The behavior between an actual USB-to-serial bridge chip and the USB Serial/JTAG Controller is slightly different if the ESP-IDF application does not listen for incoming bytes. An USB-to-serial bridge chip will just send the bytes to a (not listening) chip, while the ...