Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier.
authormoel.mich
Sat, 06 Mar 2010 21:50:22 +0000
changeset 738296f0ba87b1
parent 72 c4dfd596a6c3
child 74 20c1378e0ede
Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier.
Hardware/TBalancer/TBalancer.cs
     1.1 --- a/Hardware/TBalancer/TBalancer.cs	Thu Mar 04 20:26:56 2010 +0000
     1.2 +++ b/Hardware/TBalancer/TBalancer.cs	Sat Mar 06 21:50:22 2010 +0000
     1.3 @@ -178,7 +178,7 @@
     1.4          return;
     1.5        }
     1.6  
     1.7 -      if (data[1] == 255) { // bigNG
     1.8 +      if (data[1] == 255 || data[1] == 88) { // bigNG
     1.9  
    1.10          if (data[274] != protocolVersion) 
    1.11            return;