Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions subsys/bluetooth/mesh/pb_gatt.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,14 @@ int bt_mesh_pb_gatt_close(struct bt_conn *conn)

static int link_accept(const struct prov_bearer_cb *cb, void *cb_data)
{
int err;

err = bt_mesh_adv_enable();
if (err) {
BT_ERR("Failed enabling advertiser");
return err;
}

(void)bt_mesh_proxy_prov_enable();
bt_mesh_adv_update();

Expand Down