diff --git a/monitor/l2cap.c b/monitor/l2cap.c
index fc565b1..55efa54 100644
--- a/monitor/l2cap.c
+++ b/monitor/l2cap.c
case 0x11:
str = "Insufficient Resources";
break;
+ case 0xfd:
+ str = "CCC Improperly Configured";
+ break;
+ case 0xfe:
+ str = "Procedure Already in Progress";
+ break;
+ case 0xff:
+ str = "Out of Range";
+ break;
default:
str = "Reserved";
break;
diff --git a/tools/btgatt-client.c b/tools/btgatt-client.c
index fbc01db..7c964bd 100644
--- a/tools/btgatt-client.c
+++ b/tools/btgatt-client.c
return "Group type Not Supported";
case BT_ATT_ERROR_INSUFFICIENT_RESOURCES:
return "Insufficient Resources";
+ case BT_ERROR_CCC_IMPROPERLY_CONFIGURED:
+ return "CCC Improperly Configured";
+ case BT_ERROR_ALREADY_IN_PROGRESS:
+ return "Procedure Already in Progress";
+ case BT_ERROR_OUT_OF_RANGE:
+ return "Out of Range";
default:
return "Unknown error type";
}