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

lightblue scanning for peripherals nrf51822

Dear nordic engineer:

    I am working on a new project with nrf51822.now I face some issues as below:

    open lightbule scanning for peripherals(see attachment).in scanning for peripherals list(not services list and characteristics list).
    LSN8003K(nordic proximity sample) show UUID.device.local Name.TX Power Level. 
    measurement(my new project) only show UUID.

   what should I do to show device.local name .TX Power Level as LSN8003K.
   how to change software.

I hope you clear my question by my poor english.
look forward to hear you reply.

kind regards

kevin

form china

IMG_0060.PNG

  • The data that's shown there is mostly the advertisement data. This is typically set up in the advertising_init() function in the main.c file of the SDK applications. To include for instance the name, you just have to make sure that the name_type is set to BLE_ADVDATA_FULL_NAME, for instance like this, from the ble_app_hrs:

    
        uint32_t      err_code;
        ble_advdata_t advdata;
        uint8_t       flags = BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE;
    
        ble_uuid_t adv_uuids[] =
        {
            {BLE_UUID_HEART_RATE_SERVICE,         BLE_UUID_TYPE_BLE},
            {BLE_UUID_BATTERY_SERVICE,            BLE_UUID_TYPE_BLE},
            {BLE_UUID_DEVICE_INFORMATION_SERVICE, BLE_UUID_TYPE_BLE}
        };
    
        // Build and set advertising data.
        memset(&advdata, 0, sizeof(advdata));
    
        advdata.name_type               = BLE_ADVDATA_FULL_NAME;
        advdata.include_appearance      = true;
        advdata.flags.size              = sizeof(flags);
        advdata.flags.p_data            = &flags;
        advdata.uuids_complete.uuid_cnt = sizeof(adv_uuids) / sizeof(adv_uuids[0]);
        advdata.uuids_complete.p_uuids  = adv_uuids;
    
        err_code = ble_advdata_set(&advdata, NULL);
        APP_ERROR_CHECK(err_code);
    
    
Related