mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-03 15:55:26 +00:00
Fixed issue #909 (missing Intel 7700K core temps)
This commit is contained in:
@@ -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-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;
|
||||
tjMax = GetTjMaxFromMSR();
|
||||
break;
|
||||
case 0x8E: // Intel Core i5, i7 7xxxx (14nm)
|
||||
case 0x8E:
|
||||
case 0x9E: // Intel Core i5, i7 7xxxx (14nm)
|
||||
microarchitecture = Microarchitecture.KabyLake;
|
||||
tjMax = GetTjMaxFromMSR();
|
||||
break;
|
||||
|
@@ -10,5 +10,5 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.8.0.1")]
|
||||
[assembly: AssemblyInformationalVersion("0.8.0.1 Alpha")]
|
||||
[assembly: AssemblyVersion("0.8.0.2")]
|
||||
[assembly: AssemblyInformationalVersion("0.8.0.2 Alpha")]
|
Reference in New Issue
Block a user