Add if block and param req callback comment
This commit is contained in:
parent
cfea5cceb1
commit
370cfcc59f
1 changed files with 4 additions and 0 deletions
|
@ -76,17 +76,21 @@ static void security_changed(struct bt_conn *conn, bt_security_t level,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !IS_ENABLED(CONFIG_ZMK_SPLIT_BLE_ROLE_PERIPHERAL)
|
||||||
static bool le_param_req(struct bt_conn *conn, struct bt_le_conn_param *param) {
|
static bool le_param_req(struct bt_conn *conn, struct bt_le_conn_param *param) {
|
||||||
static struct bt_conn_info info;
|
static struct bt_conn_info info;
|
||||||
|
|
||||||
bt_conn_get_info(conn, &info);
|
bt_conn_get_info(conn, &info);
|
||||||
|
|
||||||
|
/* This captures a param change from central half of a split board connection
|
||||||
|
to stop default params from getting set over the top of our preferred ones */
|
||||||
if (info.role == BT_CONN_ROLE_MASTER && (param->interval_min != 6 || param->latency != 30)) {
|
if (info.role == BT_CONN_ROLE_MASTER && (param->interval_min != 6 || param->latency != 30)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct bt_conn_cb conn_callbacks = {
|
static struct bt_conn_cb conn_callbacks = {
|
||||||
.connected = connected,
|
.connected = connected,
|
||||||
|
|
Loading…
Reference in a new issue