diff --git a/Hardware/LPC/Chip.cs b/Hardware/LPC/Chip.cs index 54c950b..01ed064 100644 --- a/Hardware/LPC/Chip.cs +++ b/Hardware/LPC/Chip.cs @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2013 Michael Möller + Copyright (C) 2009-2015 Michael Möller */ @@ -25,6 +25,7 @@ namespace OpenHardwareMonitor.Hardware.LPC { F71889F = 0x0723, F71808E = 0x0901, + IT8620E = 0x8620, IT8705F = 0x8705, IT8712F = 0x8712, IT8716F = 0x8716, @@ -70,6 +71,7 @@ namespace OpenHardwareMonitor.Hardware.LPC { case Chip.F71889F: return "Fintek F71889F"; case Chip.F71808E: return "Fintek F71808E"; + case Chip.IT8620E: return "ITE IT8620E"; case Chip.IT8705F: return "ITE IT8705F"; case Chip.IT8712F: return "ITE IT8712F"; case Chip.IT8716F: return "ITE IT8716F"; diff --git a/Hardware/LPC/IT87XX.cs b/Hardware/LPC/IT87XX.cs index ad0990c..91709c6 100644 --- a/Hardware/LPC/IT87XX.cs +++ b/Hardware/LPC/IT87XX.cs @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2012 Michael Möller + Copyright (C) 2009-2015 Michael Möller */ @@ -143,9 +143,10 @@ namespace OpenHardwareMonitor.Hardware.LPC { fans = new float?[chip == Chip.IT8705F ? 3 : 5]; controls = new float?[3]; - // IT8721F, IT8728F and IT8772E use a 12mV resultion ADC, all others 16mV - if (chip == Chip.IT8721F || chip == Chip.IT8728F || chip == Chip.IT8771E - || chip == Chip.IT8772E) + // IT8620E, IT8721F, IT8728F and IT8772E use a 12mV resultion ADC, + // all others 16mV + if (chip == Chip.IT8620E || chip == Chip.IT8721F || chip == Chip.IT8728F + || chip == Chip.IT8771E || chip == Chip.IT8772E) { voltageGain = 0.012f; } else { @@ -173,6 +174,7 @@ namespace OpenHardwareMonitor.Hardware.LPC { case Chip.IT8721F: gpioCount = 8; break; + case Chip.IT8620E: case Chip.IT8705F: case Chip.IT8728F: case Chip.IT8771E: diff --git a/Hardware/LPC/LPCIO.cs b/Hardware/LPC/LPCIO.cs index b0fa6e4..b03ee6a 100644 --- a/Hardware/LPC/LPCIO.cs +++ b/Hardware/LPC/LPCIO.cs @@ -331,6 +331,7 @@ namespace OpenHardwareMonitor.Hardware.LPC { ushort chipID = port.ReadWord(CHIP_ID_REGISTER); Chip chip; switch (chipID) { + case 0x8620: chip = Chip.IT8620E; break; case 0x8705: chip = Chip.IT8705F; break; case 0x8712: chip = Chip.IT8712F; break; case 0x8716: chip = Chip.IT8716F; break; diff --git a/Hardware/Mainboard/SuperIOHardware.cs b/Hardware/Mainboard/SuperIOHardware.cs index ef34a01..dc67cad 100644 --- a/Hardware/Mainboard/SuperIOHardware.cs +++ b/Hardware/Mainboard/SuperIOHardware.cs @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2014 Michael Möller + Copyright (C) 2009-2015 Michael Möller */ @@ -186,6 +186,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard { ref readFan, ref postUpdate, ref mutex); break; + case Chip.IT8620E: case Chip.IT8721F: case Chip.IT8728F: case Chip.IT8771E: diff --git a/Properties/AssemblyVersion.cs b/Properties/AssemblyVersion.cs index 6881d93..d11f18a 100644 --- a/Properties/AssemblyVersion.cs +++ b/Properties/AssemblyVersion.cs @@ -10,5 +10,5 @@ using System.Reflection; -[assembly: AssemblyVersion("0.7.1.1")] -[assembly: AssemblyInformationalVersion("0.7.1.1 Alpha")] \ No newline at end of file +[assembly: AssemblyVersion("0.7.1.2")] +[assembly: AssemblyInformationalVersion("0.7.1.2 Alpha")] \ No newline at end of file