From 5a327431cf74ba3e3674eab9312000b51627c84a Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 6 Mar 2018 17:56:13 +0200 Subject: [PATCH] monitor: Decode GATT Caching errors This enables decoding of Database Out of Sync and Value Not Allowed ATT errors introduced with GATT Caching improvements. Change-Id: Ia130b26716745691b3cf72e81d2b9aac643657b5 Signed-off-by: himanshu --- monitor/l2cap.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index f667335..00d8fce 100755 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -2151,6 +2151,12 @@ static void att_error_response(const struct l2cap_frame *frame) case 0x11: str = "Insufficient Resources"; break; + case 0x12: + str = "Database Out of Sync"; + break; + case 0x13: + str = "Value Not Allowed"; + break; case 0xfd: str = "CCC Improperly Configured"; break; -- 2.7.4