Return-Path: From: Jakub Tyszkowski To: linux-bluetooth@vger.kernel.org Cc: Jakub Tyszkowski Subject: [PATCH 5/6] android/gatt: Support read by group in test commands Date: Thu, 29 May 2014 12:34:07 +0200 Message-Id: <1401359648-576-5-git-send-email-jakub.tyszkowski@tieto.com> In-Reply-To: <1401359648-576-1-git-send-email-jakub.tyszkowski@tieto.com> References: <1401359648-576-1-git-send-email-jakub.tyszkowski@tieto.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: 'u2' command parameter is used as start handle, 'u3' as end handle and uuid as group type. --- android/gatt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/gatt.c b/android/gatt.c index 40325bc..801c6c1 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -3470,6 +3470,8 @@ static uint8_t handle_test_command_read(bdaddr_t *bdaddr, bt_uuid_t *uuid, length = enc_read_blob_req(u2, u3, pdu, mtu); break; case ATT_OP_READ_BY_GROUP_REQ: + length = enc_read_by_grp_req(u2, u3, uuid, pdu, mtu); + break; case ATT_OP_READ_MULTI_REQ: default: error("gatt: Unknown read type"); -- 1.9.3