I'm having an issue with some iPhone11's, where under certain conditions the iPhone11 is sending two consecutive Link Layer requests with a Control Opcode of 0xFF. The SoftDevice responds with LL_UNKNOWN_RSP and disconnects with BLE_HCI_DIFFERENT_TRANSACTION_COLLISION.
It looks like the iPhone is violating the BT spec by sending 2 of these LL requests without waiting for a response and the SD disconnects in this situation.
- iPhone8 with BT enabled, locked with screen off. Wait for about 1 minute.
- Run the ble_app_blinky peripheral example app from the nRF SDK.
- From the iPhone11, run the nRFConnect app and connect to the Nordic Blinky peripheral.
- Wake up the iPhone8 (No need to unlock, just waking up so the screen turns on is enough)
static void ble_evt_handler(ble_evt_t const * p_ble_evt, void * p_context) { ret_code_t err_code; switch (p_ble_evt->header.evt_id) { case BLE_GAP_EVT_DISCONNECTED: NRF_LOG_INFO("DISCONNECTED. BLE_HCI_STATUS_CODE=%02X", p_ble_evt->evt.gap_evt.params.disconnected.reason); ...
- ble_app_blinky example app and our own custom peripheral app.
- nRF SDK 15.3.0 + SD s132_nrf52_6.1.1 and nRF52 SDK16.0.0 + SD s132_nrf52_7.0.1
- iPhone11, A2111, iOS 13.1.3 (Purchased in USA)
- iPhone11, A2221, iOS 13.1.3 (Purchased in Australia)
-
iPhone10, A1865, iOS 13.2
-
iPhone 8, A1863, iOS 13.2
-
iPhone7+, A1661, iOS 13.1.3
-
iPhone6, A1549, iOS 12.4.2
-
iPhone6S, iOS 13.2
-
iPad Air, A1474, iOS 12.4.1
-
iPad Air2, A1566, iOS13.1
- Samsung S8
- iPhone 11, A2111, MWLG2LL/A, iOS 13.1.3 (Connected device)
- iPhone 8, A1863, MQ742LL/A, iOS 13.2 (device in proximity with BT enabled)
The issue never occurs while the iPhone8 A1863 is locked, and never occurs with the iPhone11 (A2221 model) or any of the other iPhone, only the iPhone11 (A2111 model).
If the iPhone8 is unlocked when the iPhone11 connects to a Nordic peripheral, the disconnect issue occurs randomly but typically after being connected for about 30secs.
I have tried disabling every option I could think of on the iPhone8, including all background apps, disabled WiFi, no SIM, removed all BT paired devices, etc.


- Has anyone else run into this issue or noticed random disconnects when connected to an iPhone11?
- Any ideas on why the iPhone11 is sending Link Layer requests with a Control Opcode of 0xFF, in the 'reserved' range of codes and triggered by an iPhone8 in proximity waking up?