mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-30 13:57:38 +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;
|
||||
}
|
||||
|
||||
if (data[1] == 255) { // bigNG
|
||||
if (data[1] == 255 || data[1] == 88) { // bigNG
|
||||
|
||||
if (data[274] != protocolVersion)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user