Current Situation:
When the application is closed all controls are set to the default. E.g. If the
fan control has been set to manual it will be reset when the application is
closed.
The logic which controls this behavior can be seen in the
OpenHardwareMonitor.Hardware.Mainboard.SuperIOHardware class:
public override void Close() {
foreach (Sensor sensor in controls) {
// restore all controls back to default
superIO.SetControl(sensor.Index, null);
}
base.Close();
}
Proposal:
Add setting to control this behavior.
Thank you.
Original issue reported on code.google.com by mbercht...@gmail.com on 14 Dec 2013 at 2:32
Original issue reported on code.google.com by
mbercht...@gmail.com
on 14 Dec 2013 at 2:32