Hardware/LPC/Chip.cs
author moel.mich
Sat, 20 Feb 2010 19:51:10 +0000
changeset 56 5cb7eb5bf628
parent 34 dc276daadb2c
child 67 bb5696abab23
permissions -rw-r--r--
Improved Winbond temperature reading. Temperatures create by adding PECI Agent values (delta to TCC Activation Temperature) to a (possibly uncalibrated) TBase are not read. Direct reading temperatures from sensor report register if available. Added lower bound for temperatures on Winbond chips. Nvidia GPUs are now displayed even if they do not have any sensors.
     1 
     2 using System;
     3 using System.Collections.Generic;
     4 using System.Text;
     5 
     6 namespace OpenHardwareMonitor.Hardware.LPC {
     7 
     8   public enum Chip : ushort {
     9     Unknown = 0,
    10     IT8716F = 0x8716,
    11     IT8718F = 0x8718,
    12     IT8720F = 0x8720,
    13     IT8726F = 0x8726,
    14     W83627DHG = 0xA020,
    15     W83627DHGP = 0xB070,
    16     W83627EHF = 0x8860,    
    17     W83627HF = 0x5200,
    18     W83627THF = 0x8283,
    19     W83667HG = 0xA510,
    20     W83667HGB = 0xB350,
    21     F71862 = 0x0601, 
    22     F71869 = 0x0814,
    23     F71882 = 0x0541,
    24     F71889 = 0x0723 
    25   }
    26 
    27 }