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

How to get full Service UUID from given BASE UUID

Hi all

I am trying to pair nrf52840 (as a central) with ESP32 (as peripheral).

 Now I want to get the service uuid so that i can pass to advertising service in ESP32 code.How do I get the full-service UUID, I see that in the ble_lbs_c service  UUID is declared as 0x1523 characteristic  UUID as 0x1525 and LBS_UUID_BASE {0x23, 0xD1, 0xBC, 0xEA, 0x5F, 0x78, 0x23, 0x15, 0xDE, 0xEF, 0x12, 0x12, 0x00, 0x00, 0x00, 0x00}

I tried to pass the service uuid as #define SERVICE_UUID   "23151212EFDE1523785FEABCD1" on ESP32 program but that didnt work. What is the exact order of the UUID? If you need  details on esp32 code here is the example esp32 program

I am using ble_app_blinky_c example on nrf52840.

Thank you in advance

Parents
  • Hello,

    I am not sure how the ESP libraries work, or how they set up their UUID. Have you tried looking at this device using nRF Connect? Whatever the outcome of the UUID is when you set it like that, you can compare it to the scanned UUID (if the ESP advertises using it's UUID at all). You can download the app version of nRF Connect on google play store or the iOS App Store. Alternatively, you can use the nRF Connect for Desktop (which requires an extra nRF DK/dongle).

  • Hi Edvin

    Thank you for your quick response but I think there might be a misunderstanding. I am trying to find out, what the full-service UUID that will be formed by the Central(in this case Nrf52840) not ESP32.Once I get that I would use it , for advertising in ESP32 code.

    Thank you again.

  • If you look at the examples ble_app_uart and ble_app_uart_c from the SDK, these are examples that set and scan for a particular UUID. If you see in the ble_app_uart example iin the ble_nus.c the UUID is defined in NUS_BASE_UUID:

    #define NUS_BASE_UUID                  {{0x9E, 0xCA, 0xDC, 0x24, 0x0E, 0xE5, 0xA9, 0xE0, 0x93, 0xF3, 0xA3, 0xB5, 0x00, 0x00, 0x40, 0x6E}} /**< Used vendor specific UUID. */

    Note that when you scan for it, the order is byte reversed:

    Also note that the 0x00, 0x00 are changed with the 2 byte UUID for the service, which is 0x0001.

    If you look for the ble_app_uart_c example's UUID definition:

    #define NUS_BASE_UUID                   {{0x9E, 0xCA, 0xDC, 0x24, 0x0E, 0xE5, 0xA9, 0xE0, 0x93, 0xF3, 0xA3, 0xB5, 0x00, 0x00, 0x40, 0x6E}} /**< Used vendor specific UUID. */

    (identical to the ble_app_uart UUID).

    So if you look at these examples, and compare the UUID that the central (ble_app_uart_c) looks for, and how the UUID looks like in the nRF Connect for Mobile app, then you can figure out what the UUID in your central should look like if you compare it to the UUID that the device advertise with in nRF Connect.

    BR,
    Edvin

  • Hi Edvin

    Sorry for the delayed response. Thank you for your response above, I was able to track it down the service UUID (which on nrfconnect appears as 00001523-1212-EFDE-1523-785FEABCD123).So I used this service UUID  on esp32 (peripheral)  and  i can see it advertising but for some reason in the central(nrf52840) is not able to connect to it. How can I debug this in the central(nrf52840) board ?

  • What SDK version are you using? I am asking because the scanning implementation was changed somewhere around 15.0.0 and 15.3.0, so depending on which one you use, it will be a bit different.

    What you want to look for is the event BLE_GAP_EVT_ADV_REPORT which is called every time the scanner picks up an advertisement. In the older SDKs, this event is in main.c, but in the later SDKs, this is moved to a file called nrf_ble_scan.c.

    It does some checks, based on your setup, and checks for either a UUID, an advertising name, or possibly an address. What does it look like in your case?

    Typically, based on this check, it will decide whether to call sd_ble_gap_connect() or to continue to scan in the end. Does it ever call sd_ble_gap_connect() in your case?

    BR,

    Edvin

Reply
  • What SDK version are you using? I am asking because the scanning implementation was changed somewhere around 15.0.0 and 15.3.0, so depending on which one you use, it will be a bit different.

    What you want to look for is the event BLE_GAP_EVT_ADV_REPORT which is called every time the scanner picks up an advertisement. In the older SDKs, this event is in main.c, but in the later SDKs, this is moved to a file called nrf_ble_scan.c.

    It does some checks, based on your setup, and checks for either a UUID, an advertising name, or possibly an address. What does it look like in your case?

    Typically, based on this check, it will decide whether to call sd_ble_gap_connect() or to continue to scan in the end. Does it ever call sd_ble_gap_connect() in your case?

    BR,

    Edvin

Children
  • Hi Edvin

    I am using 15.3.0 and to be exact, I am using ble_app_blinky_c central example.

  • Please look at the scan_init in ble_app_uart_c, as this is looking for a specific UUID, which you can try to modify to match your UUID. Remember to also set NRF_BLE_SCAN_UUID_CNT to 1 in sdk_config.h.

    If you insert the correct UUID, does nrf_ble_scan_connect_with_target() get called inside the nrf_ble_scan_on_adv_report() in nrf_ble_scan.c?

  • Hi Edvin

    I did some digging a bit. It seems like adv_name_compare() in nrf_ble_scan.c returns false. To be specific i think ble_advdata_name_find returns false. I tried to log NRF_LOG_DEBUG("adv_data %s",p_adv_report->data.p_data) it prints out  "ESP32  #N_x...." with some strange characters after that.

    I have tried with NRF52 peripheral board which connects successfully, but the log above doesn't print anything, and ble_advdata_name_find returns true. 

    What could be the cause of returning false (in esp32 peripheral case) ?

    static bool adv_name_compare(ble_gap_evt_adv_report_t const * p_adv_report,
                                 nrf_ble_scan_t     const * const p_scan_ctx)
    {
        nrf_ble_scan_name_filter_t const * p_name_filter = &p_scan_ctx->scan_filters.name_filter;
        uint8_t                            counter       =
            p_scan_ctx->scan_filters.name_filter.name_cnt;
        uint8_t  index;
        uint16_t data_len;
    
        data_len = p_adv_report->data.len;
    
        // Compare the name found with the name filter.
        for (index = 0; index < counter; index++)
        {
            if (ble_advdata_name_find(p_adv_report->data.p_data,
                                      data_len,
                                      p_name_filter->target_name[index]))
            {
                return true;
            }
        }
    
        return false;
    }

  • Can you show me what the entire advertising pack looks like?

    for(uint i=0; i<data_len; i++)
    {
        NRF_LOG_RAW_INFO("%02x:", p_adv_report->data.p_data);
    }
     

    davidm said:
    What could be the cause of returning false (in esp32 peripheral case) ?

     The obvious answer is that ble_advdata_name_find returns false. 

    Try to print out the entire p_data, and see what it looks like, then you can analyze ble_advdata_name find, to see why it returns false. 

    But let me see the entire advertising data packet that contains "ESP32 #N_x...".

    BR,
    Edvin

  • Edvin,

    NRF_LOG_DEBUG("%s",  p_adv_report->data.p_data); prints -> ESP32
    #Ѽê_x#Þï#
    NRF_LOG_RAW_INFO("raw data %s:", p_adv_report->data.p_data);prints -> ESP32
    NRF_LOG_RAW_INFO("%02x:", p_adv_report->data.p_data); prints-> 20002C28
    By the way "ESP32" you see in the logs, is the name I configured on esp32 peripheral board to be the name of the device.
Related