Supermicro X10QBi motherboard: compatibility feedbacks #110
Replies: 1 comment
|
Fan duty readback fixed in @samuel-emrys — while reviewing a similar problem on the X9 platform (PR #117 by @krecik), I found the same defect in the X10QBi platform implementation. The problem
return int(r.stdout, 16) # 0xFF was reported as 255%, 0x7F as 127%The fan control itself (i.e. the write path) was not affected, but The fix (released in return round(int(r.stdout, 16) * 100 / 255)The What to check with Run These values are read back from the BMC, and this is exactly what the fix changes: they must be in the 0-100% range, and they must match the Please share your feedback and test results here. |
Uh oh!
There was an error while loading. Please reload this page.
This is the place where we collect the feedbacks and compatibility statements about the newly supported Supermicro X10QBi motherboard (since
smfc 5.1.0). Original issue was reported here: issue #96 and PR #97 by @samuel-emrys.All reactions