From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This enables decoding of Database Out of Sync and Value Not Allowed ATT errors introduced with GATT Caching improvements. --- monitor/l2cap.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 1e6ca3492..26719ac5e 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -2132,6 +2132,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.17.2