Skip to content

Commit 2c3155c

Browse files
kevin-whisperNahal Farhi
authored and
Nahal Farhi
committed
[MFI] Supports BLE connection intervals down to 3.75ms (zephyrproject-rtos#22)
Modified BLE stack to allow for 3.75ms connection intervals which is needed by MFI when using g722 64kbps, 60 byte packet lengths
1 parent 8db558f commit 2c3155c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subsys/bluetooth/host/hci_core.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1485,9 +1485,9 @@ bool bt_le_conn_params_valid(const struct bt_le_conn_param *param)
14851485
/* All limits according to BT Core spec 5.0 [Vol 2, Part E, 7.8.12] */
14861486

14871487
// *** Whisper changed for MFI. Previous minimum interval was 6 (7.5ms) but
1488-
// this needed to be modified to allow for intervals of 4 (5ms) for MFI streaming
1488+
// this needed to be modified to allow for intervals of 3 (3.75ms) for MFI streaming
14891489
if (param->interval_min > param->interval_max ||
1490-
param->interval_min < 4 || param->interval_max > 3200) {
1490+
param->interval_min < 3 || param->interval_max > 3200) {
14911491
return false;
14921492
}
14931493

0 commit comments

Comments
 (0)