Fix Mask for 10bit I2C Parsing

* Changed mask to recognize 10bit reserved byte
This commit is contained in:
Shawn Ferry 2023-10-11 22:45:10 -04:00
parent ac61159575
commit f1f9aeb17a
No known key found for this signature in database

View File

@ -81,7 +81,7 @@ namespace I2CProtocolAnalyzer
segment.Value += $"\r\nOp: {((value & 1) == 1 ? "Read" : "Write")}"; segment.Value += $"\r\nOp: {((value & 1) == 1 ? "Read" : "Write")}";
if ((value & 0xf8) == 0xf7) if ((value & 0xf8) == 0xf0)
{ {
address10 = true; address10 = true;
firstAddressByte = value; firstAddressByte = value;