Skip to content

Commit 011de7e

Browse files
committed
fix(ble/bluedroid): Don't log error on 16/128-bit UUID mixed descriptors
1 parent f03dbbb commit 011de7e

File tree

1 file changed

+3
-4
lines changed
  • components/bt/host/bluedroid/stack/gatt

1 file changed

+3
-4
lines changed

components/bt/host/bluedroid/stack/gatt/gatt_sr.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ static tGATT_STATUS gatt_build_primary_service_rsp (BT_HDR *p_msg, tGATT_TCB *p_
788788
** buffer.
789789
**
790790
** Returns TRUE: if data filled successfully.
791-
** FALSE: packet full, or format mismatch.
791+
** FALSE: packet full.
792792
**
793793
*******************************************************************************/
794794
static tGATT_STATUS gatt_build_find_info_rsp(tGATT_SR_REG *p_rcb, BT_HDR *p_msg, UINT16 *p_len,
@@ -831,10 +831,9 @@ static tGATT_STATUS gatt_build_find_info_rsp(tGATT_SR_REG *p_rcb, BT_HDR *p_msg,
831831
gatt_convert_uuid32_to_uuid128(p, ((tGATT_ATTR32 *) p_attr)->uuid);
832832
p += LEN_UUID_128;
833833
} else {
834-
GATT_TRACE_ERROR("format mismatch");
835-
status = GATT_NO_RESOURCES;
834+
// UUID format mismatch in sequential attributes
835+
// A new request will be sent with the starting handle of the next attribute
836836
break;
837-
/* format mismatch */
838837
}
839838
p_msg->len += info_pair_len[p_msg->offset - 1];
840839
len -= info_pair_len[p_msg->offset - 1];

0 commit comments

Comments
 (0)