Giter Club home page Giter Club logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
Thx for the input.

Support for the ITE IT8712F is also required in issue 27. Some ITE IT8712F 
revisions
might need support for cases where no 16-bit fan tacho is available (which is 
the
main reason for not implementing support for it so far).

Better labels for temperatures would be good, but they seem to be very mainboard
specific (at least last time I checked about them for the ITE series).

I am not sure if I will use all suggested changes, but the ITE IT8712F will be 
added
for sure.

Original comment by moel.mich on 22 Apr 2010 at 12:25

  • Changed state: Accepted

from open-hardware-monitor.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
Regarding ITE 8712F

I'm working with an older machine and the +12v voltage appears to be reported 
incorrectly.

currently the value is calculated:
voltage = value + (value -Vf) * Ri/Rf

from the data sheet calculations should follow:
  Positive Voltage: Vs = Vin X (Ra+Rb) / Rb
  Negative Voltage: Vs = (1+Rin/Rf) X Vin – (Rin/Rf) X VREF

Is there a way to change the formula not just the parameters?

Also if you need resistor values from the main board i can supply these.

From attached report:
Version: 0.2.1.0
Sensors

|
+-+ Gigabyte GA-K8NF-9 (/mainboard)
|   |
|   +-+ ITE IT8712F (/lpc/it8712f)
|   |   +- Voltage[7] : 9.77477 : 0.816 : 10.09213 : +12V

Original comment by [email protected] on 30 Jan 2011 at 1:02

Attachments:

from open-hardware-monitor.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
The formulas you posted can be simplified as follows

Positive voltage: 

 voltage = value * (Ra + Rb) / Rb
         = value * (Ra / Rb + 1) 
         = value * (Ra / Rb) + value 
         = value + (value - 0) * Ra / Rb

 You get the same formula in the Open Hardware Monitor if you use: 

 Vf = 0, Ri = Ra, Rf = Rb.

Negative Voltage: 

 voltage = (1+Rin/Rf) * value – (Rin/Rf) * VREF
         = value + (Rin/Rf) * value – (Rin/Rf) * VREF
         = value + (Rin/Rf) * (value - VREF)
         = value + (value - VREF) * Rin/Rf

 You get the same formula in the Open Hardware Monitor if you use: 

 Vf = VREF, Ri = Rin, Rf = Rf.

This means the two formulas you posted are only special cases of the formula 
used in the Open Hardware Monitor and no change of formula is required. If you 
have correct resistor / reference voltage values for any mainboard, then these 
are always welcome.

The current collection of resistor / reference voltage valuse can be found in 
the source code: 
http://code.google.com/p/open-hardware-monitor/source/browse/trunk/Hardware/Main
board/SuperIOHardware.cs


Original comment by moel.mich on 30 Jan 2011 at 10:48

from open-hardware-monitor.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
This issue should be fixed by revision r306.

Original comment by moel.mich on 16 Apr 2011 at 2:51

  • Changed state: Fixed

from open-hardware-monitor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.