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

S132 V5 advertising extensions

Hi,

Is there any API in Softdevice S132 v5 production to set up advertising extension?

In migration notes of SoftDevice S140 v5 alpha3 I can find annotation:

A new configuration option, BLE_GAP_CFG_ADV, has been added to the sd_ble_cfg_set() . This option can be used to configure
advertising sets. Currently this option is not used as this alpha release only supports one advertising set with 31 bytes of advertising or scan
response data.

And ble_gap_adv_params_t is definied as:

typedef struct
{
  ble_gap_addr_t const    *p_peer_addr;
  ble_gap_adv_properties_t properties;
  uint32_t                 interval;
  uint16_t                 duration;
  uint8_t                  max_ext_adv;
  ble_gap_adv_ch_mask_t    channel_mask;
  uint8_t                  fp;
  uint8_t                  primary_phy;
  uint8_t                  secondary_phy;
  uint8_t                  secondary_max_skip;
  uint8_t                  advertising_sid:7;
  uint8_t                  scan_req_notification:1;
  uint8_t                  adv_fragmentation_len;
} ble_gap_adv_params_t;

In ble_gap_adv_params_t from S132 v5 I cannot see fields primary_phy, secondary_phy, secondary_max_skip, advertising_sid, adv_fragmentation_len.

Is there any support for this feature in S132?

Best regards.

Related