ble_ll_hci_vs: find conn function name fix

Wrong function call. Function doesn't exist and the build fails.
This commit is contained in:
jrotkiewicz
2022-05-16 17:28:57 +02:00
committed by Szymon Janc
parent 1e63bdb310
commit d11ceccfdc
+1 -1
View File
@@ -220,7 +220,7 @@ ble_ll_hci_vs_css_set_conn_slot(const uint8_t *cmdbuf, uint8_t cmdlen,
}
conn_handle = le16toh(cmd->conn_handle);
connsm = ble_ll_conn_find_active_conn(conn_handle);
connsm = ble_ll_conn_find_by_handle(conn_handle);
if (!connsm) {
return BLE_ERR_UNK_CONN_ID;
}