Hardware/LPC/Chip.cs
author moel.mich
Sun, 08 Aug 2010 13:57:26 +0000
changeset 165 813d8bc3192f
parent 147 17f982ee3a46
child 167 b7cc9d09aefe
permissions -rw-r--r--
Refactored the hardware monitoring code into a library (Issue 101).
moel@1
     1

moel@1
     2
using System;
moel@1
     3
using System.Collections.Generic;
moel@1
     4
using System.Text;
moel@1
     5
moel@1
     6
namespace OpenHardwareMonitor.Hardware.LPC {
moel@1
     7
moel@165
     8
  internal enum Chip : ushort {
moel@1
     9
    Unknown = 0,
moel@93
    10
    IT8712F = 0x8712,
moel@21
    11
    IT8716F = 0x8716,
moel@21
    12
    IT8718F = 0x8718,
moel@21
    13
    IT8720F = 0x8720,
moel@21
    14
    IT8726F = 0x8726,
moel@7
    15
    W83627DHG = 0xA020,
moel@19
    16
    W83627DHGP = 0xB070,
moel@108
    17
    W83627EHF = 0x8800,    
moel@31
    18
    W83627HF = 0x5200,
moel@147
    19
    W83627THF = 0x8280,
moel@34
    20
    W83667HG = 0xA510,
moel@34
    21
    W83667HGB = 0xB350,
moel@67
    22
    W83687THF = 0x8541,
moel@68
    23
    F71858 = 0x0507,
moel@16
    24
    F71862 = 0x0601, 
moel@16
    25
    F71869 = 0x0814,
moel@16
    26
    F71882 = 0x0541,
moel@103
    27
    F71889ED = 0x0909,
moel@103
    28
    F71889F = 0x0723    
moel@1
    29
  }
moel@1
    30
moel@1
    31
}