mesh-lite配置问题
Posted: Mon Sep 15, 2025 9:21 am
typedef struct {
uint8_t vendor_id[2]; /**< The VID_1, VID_2 of Mesh-Lite */
uint8_t mesh_id; /**< The Mesh_ID of Mesh-Lite */
uint8_t max_connect_number; /**< Max number of stations allowed to connect in */
uint8_t max_router_number; /**< Maximum number of trace router number */
uint8_t max_level; /**< The maximum level allowed of Mesh-Lite */
uint8_t max_node_number; /**< The maximum node number of Mesh-Lite */
bool join_mesh_ignore_router_status; /**< Join Mesh no matter whether the node is connected to router */
bool join_mesh_without_configured_wifi; /**< Join Mesh without configured with information */
bool leaf_node; /**< Whether it is a leaf node */
uint32_t ota_data_len; /**< The maximum length of an OTA data transmission */
uint16_t ota_wnd; /**< OTA data transfer window size */
const char* softap_ssid; /**< SoftAP SSID */
const char* softap_password; /**< SoftAP Password */
const char* device_category; /**< Device Category */
} esp_mesh_lite_config_t;
麻烦给说明下这些参数含义,我看有些事没有用到的,后面英文备注不是很理解,还有有办法限制一个mesh网连接路由器的根节点数量吗?现在同时上电会一窝蜂连接路由器
uint8_t vendor_id[2]; /**< The VID_1, VID_2 of Mesh-Lite */
uint8_t mesh_id; /**< The Mesh_ID of Mesh-Lite */
uint8_t max_connect_number; /**< Max number of stations allowed to connect in */
uint8_t max_router_number; /**< Maximum number of trace router number */
uint8_t max_level; /**< The maximum level allowed of Mesh-Lite */
uint8_t max_node_number; /**< The maximum node number of Mesh-Lite */
bool join_mesh_ignore_router_status; /**< Join Mesh no matter whether the node is connected to router */
bool join_mesh_without_configured_wifi; /**< Join Mesh without configured with information */
bool leaf_node; /**< Whether it is a leaf node */
uint32_t ota_data_len; /**< The maximum length of an OTA data transmission */
uint16_t ota_wnd; /**< OTA data transfer window size */
const char* softap_ssid; /**< SoftAP SSID */
const char* softap_password; /**< SoftAP Password */
const char* device_category; /**< Device Category */
} esp_mesh_lite_config_t;
麻烦给说明下这些参数含义,我看有些事没有用到的,后面英文备注不是很理解,还有有办法限制一个mesh网连接路由器的根节点数量吗?现在同时上电会一窝蜂连接路由器