mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-30 22:05:08 +00:00
Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier.
This commit is contained in:
@@ -178,7 +178,7 @@ namespace OpenHardwareMonitor.Hardware.TBalancer {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data[1] == 255) { // bigNG
|
if (data[1] == 255 || data[1] == 88) { // bigNG
|
||||||
|
|
||||||
if (data[274] != protocolVersion)
|
if (data[274] != protocolVersion)
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user