From 22152c829e25f0319ddeec0a92cb57b4cfa7801b Mon Sep 17 00:00:00 2001 From: Jakub Tyszkowski Date: Tue, 9 Dec 2014 09:51:48 +0100 Subject: [PATCH] android/gatt: Fix not confirming write commands in database App will never confirm write command as commands dont need one but we still need to confirm in databasse. We confirm immediately. --- android/gatt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/gatt.c b/android/gatt.c index 841f08c14..536a7fefb 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -4904,6 +4904,8 @@ static void write_cb(struct gatt_db_attribute *attrib, unsigned int id, if (opcode == ATT_OP_WRITE_REQ || opcode == ATT_OP_PREP_WRITE_REQ) ev->need_rsp = 0x01; + else + gatt_db_attribute_write_result(attrib, id, 0); ev->length = len; memcpy(ev->value, value, len); -- 2.47.3