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

Central / Client DB Discovery

Hi,

I'm trying to discovery the content of a vendor specific GATT service. So far I'm receiving the BLE_DB_DISCOVERY_COMPLETE event and I'm able to see that I got 4 entries. All characteristics have a different UUID (in more bytes, not only 12/13).

     for (i = 0; i < p_evt->params.discovered_db.char_count; i++)
  {
     ble_gatt_db_char_t * p_characteristic;
              
     p_characteristic = &(p_evt->params.discovered_db.charateristics[i]);

     //ble_gatt_char_props_t props = p_characteristic->characteristic.char_props;
     //p_characteristic->characteristic.handle_decl
     //p_characteristic->characteristic.handle_value
     //p_characteristic->characteristic.uuid.type
     //p_characteristic->characteristic.uuid.uuid
     
     // UartPutChar(p_characteristic->cccd_handle);
 }

Each characteristic seem to have a proper handle for the declaration and value. On the other hand, the uuid struct is showing only zeros in both, type & uuid. The CCCD handle is also set to 0. In the sniffer I see the Response to the "Read by type" request, with the 'valid' UUID content.

image description

There is something 'special' to be performed in case of a discover over 'different' UUIDs ?

Kind regards Giona

Related