prepka-six15
prepka-six15
I see. Thanks for the response. How should I verify that these changes have been made? I suppose I could ask for the MTU last, and assume that once that...
I did some more tests. It's not that MTU works and the others don't. It simply seems like requesting a PHY change breaks everything. `peripheral.setPreferredPhy(PhyType.LE_2M, PhyType.LE_2M, PhyOptions.NO_PREFERRED);` Anything I do...
I see the library uses connectGatt with a transport value. Maybe you also need a phy value now? https://developer.android.com/reference/android/bluetooth/BluetoothDevice#connectGatt(android.content.Context,%20boolean,%20android.bluetooth.BluetoothGattCallback)
The workaround works great! Even though the callback doesn't happen my device is switching to `PhyType.LE_2M` and I'm getting the expected speedup. For my own app, I added a simulated...