Diff between aa95d467b85f49a58d00c41e533bae1dd58a3403 and 8eb06368f69f95d95439bb0dae8d50afae05ce55
Changed Files
| File | Additions | Deletions | Status |
| android/gatt.c | +5 | -0 | modified |
Full Patch
diff --git a/android/gatt.c b/android/gatt.c
index a19fe5c..943704a 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -3674,6 +3674,11 @@ static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
case ATT_OP_EXEC_WRITE_REQ:
length = enc_exec_write_req(u2, pdu, mtu);
break;
+ case ATT_OP_SIGNED_WRITE_CMD:
+ if (signed_write_cmd(dev, u2, (uint8_t *) &u3, sizeof(u3)))
+ return HAL_STATUS_SUCCESS;
+ else
+ return HAL_STATUS_FAILED;
default:
error("gatt: Unknown operation type");