Hardware/LPC/W836XX.cs
changeset 67 bb5696abab23
parent 63 1a7c13ac7348
child 84 05bf128434c6
     1.1 --- a/Hardware/LPC/W836XX.cs	Sun Feb 28 16:12:55 2010 +0000
     1.2 +++ b/Hardware/LPC/W836XX.cs	Mon Mar 01 22:12:29 2010 +0000
     1.3 @@ -167,6 +167,7 @@
     1.4            break;
     1.5          case Chip.W83627HF:
     1.6          case Chip.W83627THF:
     1.7 +        case Chip.W83687THF:
     1.8            fanNames = new string[] { "System", "CPU", "Auxiliary" };
     1.9            voltageGains = new float[] { 2, 1, 2, 1, 1, 1, 1, 2 };
    1.10            voltages = new Sensor[3];
    1.11 @@ -199,7 +200,9 @@
    1.12        foreach (Sensor sensor in voltages) {
    1.13          if (sensor.Index < 7) {
    1.14            // two special VCore measurement modes for W83627THF
    1.15 -          if (chip == Chip.W83627THF && sensor.Index == 0) {
    1.16 +          if ((chip == Chip.W83627HF || chip == Chip.W83627THF || 
    1.17 +            chip == Chip.W83687THF) && sensor.Index == 0) 
    1.18 +          {
    1.19              byte vrmConfiguration = ReadByte(0, 0x18);
    1.20              int value = ReadByte(0, VOLTAGE_BASE_REG);
    1.21              if ((vrmConfiguration & 0x01) == 0)