Added support for Fintek F71862, F71869, F71889.

This commit is contained in:
Michael Möller
2010-02-01 20:16:26 +00:00
parent 34d773fa90
commit 6b9a3e8cd7
5 changed files with 500 additions and 39 deletions

View File

@@ -7,12 +7,15 @@ namespace OpenHardwareMonitor.Hardware.LPC {
public enum Chip : ushort {
Unknown = 0,
IT8716F = 0x8716,
IT8718F = 0x8718,
IT8720F = 0x8720,
IT8726F = 0x8726,
IT8716 = 0x8716,
IT8718 = 0x8718,
IT8720 = 0x8720,
IT8726 = 0x8726,
W83627DHG = 0xA020,
F71882FG = 0x0541
F71862 = 0x0601,
F71869 = 0x0814,
F71882 = 0x0541,
F71889 = 0x0723
}
}