mirror of
https://github.com/JasonYANG170/logicanalyzer.git
synced 2024-11-23 12:06:27 +00:00
Merge pull request #85 from shawnferry/tenbit_i2c
Corrected 10 bit address mask
This commit is contained in:
commit
0db87d8797
|
@ -81,7 +81,7 @@ namespace I2CProtocolAnalyzer
|
|||
|
||||
segment.Value += $"\r\nOp: {((value & 1) == 1 ? "Read" : "Write")}";
|
||||
|
||||
if ((value & 0xf8) == 0xf7)
|
||||
if ((value & 0xf8) == 0xf0)
|
||||
{
|
||||
address10 = true;
|
||||
firstAddressByte = value;
|
||||
|
|
Loading…
Reference in New Issue
Block a user