Prevent BT LE Mtu exchange from triggering RSSI read
The commit introdocing RSSI read for Androidbc6e4e2860seems to miss a 'break' statement when checking BT LE (central) job type, causing MTU exchange to also perform an RSSI read. Pick-to: 6.7 6.5 Change-Id: I6746148b39dc11af6527efd8b41d25940a93ca49 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit86b957da94) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
3f51ff83ca
commit
dd8ff89a1b
|
|
@ -1543,6 +1543,7 @@ class QtBluetoothLE {
|
|||
break;
|
||||
case Mtu:
|
||||
skip = executeMtuExchange();
|
||||
break;
|
||||
case Rssi:
|
||||
skip = executeRemoteRssiRead();
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue