[PR #538] [MERGED] Added CoffeeLake, ApolloLake and Ryzen Support #1305

Closed
opened 2026-02-26 00:35:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hirschmann/nbfc/pull/538
Author: @dan-and
Created: 8/15/2018
Status: Merged
Merged: 8/20/2018
Merged by: @hirschmann

Base: masterHead: master


📝 Commits (10+)

📊 Changes

12 files changed (+624 additions, -17 deletions)

View changed files

📝 .travis.yml (+1 -1)
📝 Core/Plugins/OpenHardwareMonitor/Hardware/CPU/AMD10CPU.cs (+20 -3)
Core/Plugins/OpenHardwareMonitor/Hardware/CPU/AMD17CPU.cs (+491 -0)
📝 Core/Plugins/OpenHardwareMonitor/Hardware/CPU/CPUGroup.cs (+3 -0)
📝 Core/Plugins/OpenHardwareMonitor/Hardware/CPU/CPUID.cs (+23 -3)
📝 Core/Plugins/OpenHardwareMonitor/Hardware/CPU/IntelCPU.cs (+22 -7)
📝 Core/Plugins/OpenHardwareMonitor/Hardware/Ring0.cs (+4 -0)
📝 Core/Plugins/OpenHardwareMonitor/OpenHardwareMonitorLib.csproj (+3 -1)
Core/Plugins/OpenHardwareMonitor/Software/OperatingSystem.cs (+37 -0)
📝 Windows/Setup/NbfcSetup/Configs.wxs (+18 -0)
📝 build.ps1 (+1 -1)
📝 build.sh (+1 -1)

📄 Description

Hi,
I aligned the modifications to the Intel and AMD CPU code with the LibreHardwareMonitor project to your plugin code to support CoffeeLake, ApolloLake and (the long awaiting) AMD Ryzen Support

Fixes: Issue #484 , Issue #504 and partly #409

We double checked the Ryzen Support on a HP Envy X360 13-ag0700ng ( AMD Ryzen 2500U ). Temperature and Fanspeeds are nicely detected.
Also the NBFC Service does not crash when it is installed on a AMD Ryzen board anymore.

One Note: I have changed the Build scripts to Clean and Build instead of just building the Package. Hope that is not a problem for you.

It would be great if you could add this to your NBFC

Cheers,

Daniel


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hirschmann/nbfc/pull/538 **Author:** [@dan-and](https://github.com/dan-and) **Created:** 8/15/2018 **Status:** ✅ Merged **Merged:** 8/20/2018 **Merged by:** [@hirschmann](https://github.com/hirschmann) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`c87a1d7`](https://github.com/hirschmann/nbfc/commit/c87a1d7e0667d32ed5c4f2ff208942073a1a1c61) Added Ryzen Support - [`2aec5bb`](https://github.com/hirschmann/nbfc/commit/2aec5bb78cdd80156aec385bd1f240395c87068b) added ThreadAffinity to Ring0 - [`80c6006`](https://github.com/hirschmann/nbfc/commit/80c600677e686c15af5fa50cb317a682e0bf2ed7) build fix - [`0862f81`](https://github.com/hirschmann/nbfc/commit/0862f815978a072d6b7e27fde6580cff20a7b7ce) Merge branch 'master' of https://github.com/dan-and/nbfc - [`d4fa381`](https://github.com/hirschmann/nbfc/commit/d4fa381fe36638ceb2307fc4b1a8fc5d7a4122e4) added OperatingSystem Detection - [`d270f78`](https://github.com/hirschmann/nbfc/commit/d270f788783e53eb87bfa1a85598e57f5f567023) Merge branch 'master' of https://github.com/dan-and/nbfc - [`ac353bd`](https://github.com/hirschmann/nbfc/commit/ac353bdd563dcff8d43a3a1d0f31cfc12a7e4550) Added HP Envy 13 X360 13-ag0xxx Ryzen Silent-Fan - [`7717ab0`](https://github.com/hirschmann/nbfc/commit/7717ab0ffdc701b5d472191ec21a2ea190f99487) Update HP Envy X360 13 AMD, Add HP Envy X360 15 Intel - [`77bb5fe`](https://github.com/hirschmann/nbfc/commit/77bb5fef50f4b85a4cbe81ce3c44c9e721a9f471) Aligned travis CI - [`778a805`](https://github.com/hirschmann/nbfc/commit/778a8057c205066269e16105d0038b7dbab6e6a8) removed RdmsrTX ### 📊 Changes **12 files changed** (+624 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+1 -1) 📝 `Core/Plugins/OpenHardwareMonitor/Hardware/CPU/AMD10CPU.cs` (+20 -3) ➕ `Core/Plugins/OpenHardwareMonitor/Hardware/CPU/AMD17CPU.cs` (+491 -0) 📝 `Core/Plugins/OpenHardwareMonitor/Hardware/CPU/CPUGroup.cs` (+3 -0) 📝 `Core/Plugins/OpenHardwareMonitor/Hardware/CPU/CPUID.cs` (+23 -3) 📝 `Core/Plugins/OpenHardwareMonitor/Hardware/CPU/IntelCPU.cs` (+22 -7) 📝 `Core/Plugins/OpenHardwareMonitor/Hardware/Ring0.cs` (+4 -0) 📝 `Core/Plugins/OpenHardwareMonitor/OpenHardwareMonitorLib.csproj` (+3 -1) ➕ `Core/Plugins/OpenHardwareMonitor/Software/OperatingSystem.cs` (+37 -0) 📝 `Windows/Setup/NbfcSetup/Configs.wxs` (+18 -0) 📝 `build.ps1` (+1 -1) 📝 `build.sh` (+1 -1) </details> ### 📄 Description Hi, I aligned the modifications to the Intel and AMD CPU code with the LibreHardwareMonitor project to your plugin code to support CoffeeLake, ApolloLake and (the long awaiting) AMD Ryzen Support Fixes: Issue #484 , Issue #504 and partly #409 We double checked the Ryzen Support on a HP Envy X360 13-ag0700ng ( AMD Ryzen 2500U ). Temperature and Fanspeeds are nicely detected. Also the NBFC Service does not crash when it is installed on a AMD Ryzen board anymore. One Note: I have changed the Build scripts to Clean and Build instead of just building the Package. Hope that is not a problem for you. It would be great if you could add this to your NBFC Cheers, Daniel --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 00:35:02 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nbfc-hirschmann#1305
No description provided.