bt_gatt_client terminates discovery if no primary services are found within the given range. This behavior is incorrect, as the given handle range may contain secondary services and those should be discovered regardless. --- src/shared/gatt-client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-client.c b/src/shared/gatt-client.c index d5a277b..03f6725 100644 --- a/src/shared/gatt-client.c +++ b/src/shared/gatt-client.c @@ -915,7 +915,7 @@ static void discover_primary_cb(bool success, uint8_t att_ecode, util_debug(client->debug_callback, client->debug_data, "Primary service discovery failed." " ATT ECODE: 0x%02x", att_ecode); - goto done; + goto secondary; } if (!result || !bt_gatt_iter_init(&iter, result)) { @@ -948,6 +948,7 @@ static void discover_primary_cb(bool success, uint8_t att_ecode, queue_push_tail(op->pending_svcs, attr); } +secondary: /* Discover secondary services */ if (bt_gatt_discover_secondary_services(client->att, NULL, op->start, op->end, -- 2.2.0.rc0.207.ga3a616c -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html