Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs

On the simultaneous use of broadcast response packet and Long Range mode.

Hi,

I had some difficulties in testing Long-Range mode and broadcast response package.

There is no problem in setting the Long-Range mode . But I also need to use the broadcast response package.

m_adv_params.primary_phy        = BLE_GAP_PHY_CODED; 
m_adv_params.secondary_phy        = BLE_GAP_PHY_CODED; 
m_adv_params.properties.type = BLE_GAP_ADV_TYPE_EXTENDED_CONNECTABLE_NONSCANNABLE_UNDIRECTED;
srdata.p_manuf_specific_data = NULL;

My master and slave devices are all 52840DK. I need to use  Long-Range mode to scan the response function.

I modified the broadcast expansion package. The following error occurred.

srdata.p_manuf_specific_data = &manuf_specific_sr_data;
//sd_ble_gap_adv_set_configure()ERROR 7 [NRF_ERROR_INVALID_PARAM]

I want to know how to use Long-Range mode and broadcast response at the same time.

Related