This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How can I enable Bluetooth 5 PHY feature using nrf-connect-ble?

Hi,

I have 2 devices: one nrf52832 and one nrf52840 dongle. After enabling PHY feature (see the following code) in nrf52832, I tried to connect it using the dongle in the tool nrf-Connect-ble. However, the RTT prints: 

PHY Update procedure failed! (HCI Error Code: 0x1A)

        case BLE_GAP_EVT_PHY_UPDATE:
            if (p_ble_evt->evt.gap_evt.params.phy_update.status == BLE_HCI_STATUS_CODE_SUCCESS)
            {
                NRF_LOG_INFO("PHY Update: TX = %s, RX = %s",
                             m_coms_ble_phy_speed(p_ble_evt->evt.gap_evt.params.phy_update.tx_phy),
                             m_coms_ble_phy_speed(p_ble_evt->evt.gap_evt.params.phy_update.rx_phy));
            }
            else
            {
                NRF_LOG_WARNING("PHY Update procedure failed! (HCI Error Code: 0x%02X)",
                                p_ble_evt->evt.gap_evt.params.phy_update.status);
            }
            break;

I guess the dongle currently does not support PHY feature, right? Is there any plan to support it? Thanks.

Vincent

Related