Hardware/LPC/Chip.cs
author moel.mich
Mon, 05 Apr 2010 15:31:19 +0000
changeset 87 ecdc3bcef083
parent 67 bb5696abab23
child 93 99fbbbf50357
permissions -rw-r--r--
Rewritten the T-Balancer code to use the FTDI D2XX drivers directly instead of the System.IO.Ports.SerialPort class. The SerialPort class has some ugly problems like http://connect.microsoft.com/VisualStudio/feedback/details/140018/serialport-crashes-after-disconnect-of-usb-com-port or http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/8a1825d2-c84b-4620-91e7-3934a4d47330 for which no real solution seems to exist. And Microsoft doesn't feel like it needs to be fixed for years now.
     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     W83687THF = 0x8541,
    22     F71858 = 0x0507,
    23     F71862 = 0x0601, 
    24     F71869 = 0x0814,
    25     F71882 = 0x0541,
    26     F71889 = 0x0723 
    27   }
    28 
    29 }