Fixed issue #909 (missing Intel 7700K core temps)

This commit is contained in:
Michael Möller
2017-01-18 20:01:46 +01:00
parent da6a875bb5
commit d53db334dc
2 changed files with 5 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this 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/. file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (C) 2009-2016 Michael Möller <mmoeller@openhardwaremonitor.org> Copyright (C) 2009-2017 Michael Möller <mmoeller@openhardwaremonitor.org>
*/ */
@@ -177,7 +177,8 @@ namespace OpenHardwareMonitor.Hardware.CPU {
microarchitecture = Microarchitecture.Airmont; microarchitecture = Microarchitecture.Airmont;
tjMax = GetTjMaxFromMSR(); tjMax = GetTjMaxFromMSR();
break; break;
case 0x8E: // Intel Core i5, i7 7xxxx (14nm) case 0x8E:
case 0x9E: // Intel Core i5, i7 7xxxx (14nm)
microarchitecture = Microarchitecture.KabyLake; microarchitecture = Microarchitecture.KabyLake;
tjMax = GetTjMaxFromMSR(); tjMax = GetTjMaxFromMSR();
break; break;

View File

@@ -10,5 +10,5 @@
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("0.8.0.1")] [assembly: AssemblyVersion("0.8.0.2")]
[assembly: AssemblyInformationalVersion("0.8.0.1 Alpha")] [assembly: AssemblyInformationalVersion("0.8.0.2 Alpha")]