Diff between 008093fc1c05fab0a6194f5405de879569997641 and 9702e6b290b2aeae883e5112b7428ea01d2d7ab0
Changed Files
| File | Additions | Deletions | Status |
| src/shared/att.c | +3 | -0 | modified |
Full Patch
diff --git a/src/shared/att.c b/src/shared/att.c
index 3071b51..494b10d 100644
--- a/src/shared/att.c
+++ b/src/shared/att.c
@@ -148,6 +148,9 @@ static enum att_op_type get_op_type(uint8_t opcode)
return att_opcode_type_table[i].type;
}
+ if (opcode & ATT_OP_CMD_MASK)
+ return ATT_OP_CMD_MASK;
+
return ATT_OP_TYPE_UNKNOWN;
}