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

how to do migration of advertising init in 14.2 sdk to sdk 15.3

Hello All,

I have developed advertising init in 14.2 sdk (in segger ide).

(working on nrf52810 board)

I wanted to migrate same functionality to 15.3 sdk so how i can do it.

What is the modification is required in 15.3 SDK?

How to pass parameters to the "sd_ble_gap_adv_set_configure "   as like 14.2 sdk?

Anyone having code for this...? please assist on this.

I have attached advt init function below  please check.

This is working properly in 14.2 SDK

Please help me out on this issue..

Waiting for your response.

Regards,

Rohit

  • Take a look at the main.c file of the examples/ble_peripheral/ble_app_blinky example, which shows how to set the complete device name (BLE_ADVDATA_FULL_NAME):

    This will gett the device name through ble_advdata_encode()→name_encode()→sd_ble_gap_device_name_get(), and then set it.
    As mentioned by Mttrinh in this ticket, you can change the device name through the SVCALL sd_ble_gap_device_name_set(). Do it before calling ble_advdata_encode().
    Best regards,
    Simon
  • Hi Simon,

    Thanks for your valuable response.

    I have implemented as per your suggestion , now it is working.

    And addition to this i have followed below link also to implement advt init

    https://devzone.nordicsemi.com/f/nordic-q-a/44513/changing-device-name-dynamically

    Thanks And Regards,

    Rohit