fix(ble): Restore manual connection params

This commit is contained in:
Nick Winans 2022-04-15 11:10:59 -05:00 committed by Pete Johanson
parent c7a6836735
commit d08463e483
1 changed files with 5 additions and 0 deletions

View File

@ -398,6 +398,11 @@ static void connected(struct bt_conn *conn, uint8_t err) {
LOG_DBG("Connected %s", log_strdup(addr));
err = bt_conn_le_param_update(conn, BT_LE_CONN_PARAM(0x0006, 0x000c, 30, 400));
if (err) {
LOG_WRN("Failed to update LE parameters (err %d)", err);
}
#if IS_SPLIT_PERIPHERAL
bt_conn_le_phy_update(conn, BT_CONN_LE_PHY_PARAM_2M);
#endif