Hardware/Mainboard/SuperIOHardware.cs
changeset 170 31858ba46e9c
parent 168 7f90baeb96b0
child 174 51d62ed28ff5
     1.1 --- a/Hardware/Mainboard/SuperIOHardware.cs	Tue Aug 17 20:25:27 2010 +0000
     1.2 +++ b/Hardware/Mainboard/SuperIOHardware.cs	Tue Aug 17 21:44:02 2010 +0000
     1.3 @@ -65,7 +65,7 @@
     1.4          case Chip.IT8712F:
     1.5          case Chip.IT8716F:
     1.6          case Chip.IT8718F:
     1.7 -        case Chip.IT8720F:
     1.8 +        case Chip.IT8720F:        
     1.9          case Chip.IT8726F:
    1.10            switch (manufacturer) {
    1.11              case Manufacturer.ASUS:
    1.12 @@ -319,6 +319,22 @@
    1.13                break;
    1.14            }
    1.15            break;
    1.16 +
    1.17 +        case Chip.IT8721F:
    1.18 +          v.Add(new Voltage("Voltage #1", 0, true));
    1.19 +          v.Add(new Voltage("Voltage #2", 1, true));
    1.20 +          v.Add(new Voltage("Voltage #3", 2, true));
    1.21 +          v.Add(new Voltage("Analog +3.3V", 3, 10, 10, 0, true));
    1.22 +          v.Add(new Voltage("Voltage #5", 4, true));
    1.23 +          v.Add(new Voltage("Voltage #6", 5, true));
    1.24 +          v.Add(new Voltage("Voltage #7", 6, true));
    1.25 +          v.Add(new Voltage("Standby +3.3V", 7, 10, 10, 0, true));
    1.26 +          v.Add(new Voltage("VBat", 8, 10, 10, 0));
    1.27 +          for (int i = 0; i < superIO.Temperatures.Length; i++)
    1.28 +            t.Add(new Temperature("Temperature #" + (i + 1), i));
    1.29 +          for (int i = 0; i < superIO.Fans.Length; i++)
    1.30 +            f.Add(new Fan("Fan #" + (i + 1), i));
    1.31 +          break;
    1.32            
    1.33          case Chip.F71858:
    1.34            v.Add(new Voltage("VCC3V", 0, 150, 150, 0));