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

nRF52 change device name

Hello everyone,

I would like to change the name of my device with sd_ble_gap_device_name_set (). But the resulted name in the nRF Connect app is always "N/A".

Here's my code :

/**@brief Function for initializing the Advertising functionality.
 *
 * @details Encodes the required advertising data and passes it to the stack.
 *          Also builds a structure to be passed to the stack when starting advertising.
 */
static void advertising_init(void)
{
    uint32_t      err_code;
    int8_t tx_power = 8;
    ble_gap_conn_sec_mode_t sec_mode;
    
    err_code = sd_ble_gap_tx_power_set(tx_power);//Set the radio's transmit power in dBm.
        
    sd_power_dcdc_mode_set(1);

    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&sec_mode);
    err_code = sd_ble_gap_device_name_set(&sec_mode,
                                          (const uint8_t *) DEVICE_NAME,
                                          strlen(DEVICE_NAME));
    APP_ERROR_CHECK(err_code);

    BLE_data[0] = 0x1E;
    BLE_data[1] = BLE_GAP_AD_TYPE_MANUFACTURER_SPECIFIC_DATA; //able to have 29 bytes for custom data
    
    err_code = sd_ble_gap_adv_data_set(BLE_data,sizeof(BLE_data),NULL,0);
    
    // Initialize advertising parameters (used when starting advertising).
    memset(&m_adv_params, 0, sizeof(m_adv_params));

    m_adv_params.type        = BLE_GAP_ADV_TYPE_ADV_NONCONN_IND;
    m_adv_params.p_peer_addr = NULL;    // Undirected advertisement.
    m_adv_params.fp          = BLE_GAP_ADV_FP_ANY;
    m_adv_params.interval    = NON_CONNECTABLE_ADV_INTERVAL;
    m_adv_params.timeout     = 0;       // Never time out.

}

/**@brief Function for starting advertising.
 */
static void advertising_start(void)
{
    ret_code_t err_code;

    err_code = sd_ble_gap_adv_start(&m_adv_params, APP_BLE_CONN_CFG_TAG);
    APP_ERROR_CHECK(err_code);

}

Edit :

If I configure the BLE packet by myself, it's working fine. The code looks like this :

    memset(&BLE_data, 0, sizeof(BLE_data));

    BLE_data[0] = 0x0B; // Short Local Name length
    BLE_data[1] = BLE_GAP_AD_TYPE_SHORT_LOCAL_NAME;// Short Local Name type
    BLE_data[2] = 'H';
    BLE_data[3] = 'E';
    BLE_data[4] = 'R';
    BLE_data[5] = 'E';
    BLE_data[6] = ''';
    BLE_data[7] = 'S';
    BLE_data[8] = 'N';
    BLE_data[9] = 'A';
    BLE_data[10] ='M';
    BLE_data[11] ='E';
    BLE_data[12] = 0x04; //Specific data length
    BLE_data[13] = BLE_GAP_AD_TYPE_MANUFACTURER_SPECIFIC_DATA; //Specific data type
    BLE_data[14] = 0xAA;
    BLE_data[15] = 0xBB;
    BLE_data[16] = 0xCC;
    
    err_code = sd_ble_gap_adv_data_set(BLE_data,sizeof(BLE_data),NULL,0);

Indeed, I don't know what does the sd_ble_gap_device_name_set function. I don't found its source code anywhere. Anyone know ?

Sincerely,

Sylvain.

Parents
  • Two quick points. 

    First: Your code appears incomplete for advertising. I'd suggest checking out one of the examples from the version SDK you are using.  Maybe check: ble_peripheral/ble_app_uart or similar.  

    Second:  When a BLE device is first seen by a device, e.g. Android or iPhone etc, the name is stored in a local database along with the mac id of the device.  BLE does not update this name unless you connect and than disconnect from the device, OR you turn off bluetooth and then turn it back on clearing the local DB.  Then on the next scan it will update the name.   This is of course, assuming it is set properly from the advertising code. 

  • 1) My code is complete. In fact, I receive packets on the nRF Connect app

    2) I don't understand why you talk about connect and disconnect. I'm in the Observer-Broadcaster scheme. So, no connection is required

  • Again, not sure which SDK version you are using and I understand there are some slight variations so maybe I am missing something.  However, I don't ever see a call to ble_advertising_init or an alternative. 

    You don't have to setup connections, but you have to tell the API what flags to set (commonly using  ble_advertising_init) before you start advertising.  Otherwise while you set the DEVICE_NAME in the API you never setup the advertising structure and initialized it before you advertised.  

    The fact that when you set the advertisement flags manually it works, only proves that point. 

    The comment on connect/disconnect or shutting off bluetooth was just to describe how the local BLE database gets updated on Android and iPhone devices, not specific to your code or your device functionality.  Just covering details as I have seen many people waste significant time around names not updating simply because of the device cache. 

Reply
  • Again, not sure which SDK version you are using and I understand there are some slight variations so maybe I am missing something.  However, I don't ever see a call to ble_advertising_init or an alternative. 

    You don't have to setup connections, but you have to tell the API what flags to set (commonly using  ble_advertising_init) before you start advertising.  Otherwise while you set the DEVICE_NAME in the API you never setup the advertising structure and initialized it before you advertised.  

    The fact that when you set the advertisement flags manually it works, only proves that point. 

    The comment on connect/disconnect or shutting off bluetooth was just to describe how the local BLE database gets updated on Android and iPhone devices, not specific to your code or your device functionality.  Just covering details as I have seen many people waste significant time around names not updating simply because of the device cache. 

Children
  • I use the SDK V14.2.0 ...


    I agree I don't need to setup connection. But I set up the advertising and then start the advertising, so it's working fine.


    I think my problem come from the fact that I don't pass the advertising data structure to the sd_ble_gap_adv_data_set () function.

    I would like to know what the sd_ble_gap_device_name_set () function does. Do you know in which C file it is implemented?

    Sylvain.

  • Hi, 

    You will get "N/A" if the name is not included or advertised. To include the name you have to set advdata.name_type to either BLE_ADVDATA_SHORT_NAME or BLE_ADVDATA_FULL_NAME in advertising_init(). and set the name by calling sd_ble_gap_device_name_set(). The sd_ble_gap_device_name_set() function will only set the GAP device name, this function is a softdevice function so you won't find the code for it.

    I suggest you to have a look at the advertising_init() in any of the ble_peripheral examples in the SDK.

  • Thanks for you answer.

    I success to change the name on keeping the advertisement structure.

    I don't understand why you say that's not possible to find the source code of the sd_ble_gap_device_name_set() function . The code should be somewhere even if it is an assembly code ...

Related