mirror of
https://github.com/JasonYANG170/logicanalyzer.git
synced 2024-11-23 12:06:27 +00:00
Fix Mask for 10bit I2C Parsing
* Changed mask to recognize 10bit reserved byte
This commit is contained in:
parent
ac61159575
commit
f1f9aeb17a
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user