mirror of
https://github.com/espressif/esp-idf
synced 2025-04-02 04:40:11 -04:00
Merge branch 'bugfix/ble_mesh_proxy_client_net_resend_v4.2' into 'release/v4.2'
ble_mesh: stack: Fix proxy client may fail to resend msg (v4.2) See merge request espressif/esp-idf!12079
This commit is contained in:
commit
7c9be015aa
@ -543,7 +543,7 @@ static void ble_mesh_relay_task_post(bt_mesh_msg_t *msg, uint32_t timeout)
|
|||||||
BT_INFO("Full queue, remove the oldest relay packet");
|
BT_INFO("Full queue, remove the oldest relay packet");
|
||||||
/* Remove the oldest relay packet from queue */
|
/* Remove the oldest relay packet from queue */
|
||||||
if (xQueueReceive(relay_queue.handle, &old_msg, K_NO_WAIT) != pdTRUE) {
|
if (xQueueReceive(relay_queue.handle, &old_msg, K_NO_WAIT) != pdTRUE) {
|
||||||
BT_ERR("Failed to remove item from queue");
|
BT_ERR("Failed to remove item from relay queue");
|
||||||
bt_mesh_unref_buf(msg);
|
bt_mesh_unref_buf(msg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -828,6 +828,12 @@ int bt_mesh_net_resend(struct bt_mesh_subnet *sub, struct net_buf *buf,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (IS_ENABLED(CONFIG_BLE_MESH_GATT_PROXY_CLIENT) &&
|
||||||
|
bt_mesh_proxy_client_relay(&buf->b, dst)) {
|
||||||
|
send_cb_finalize(cb, cb_data);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
bt_mesh_adv_send(buf, cb, cb_data);
|
bt_mesh_adv_send(buf, cb, cb_data);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user