Skip to content

Commit

Permalink
Add support for GraniteRidge (Ryzen 9000 series)
Browse files Browse the repository at this point in the history
  • Loading branch information
irusanov committed Sep 20, 2024
1 parent b082d15 commit 11e2a8e
Show file tree
Hide file tree
Showing 5 changed files with 516 additions and 657 deletions.
5 changes: 3 additions & 2 deletions PowerTableMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,22 @@ private void PowerCfgTimer_Tick(object sender, EventArgs e)
public PowerTableMonitor(Cpu cpu)
{
CPU = cpu;
cpu.RefreshPowerTable();

PowerCfgTimer.Interval = 2000;
PowerCfgTimer.Tick += new EventHandler(PowerCfgTimer_Tick);

InitializeComponent();

dataGridView1.DataSource = list;

cpu.RefreshPowerTable();

FillInData(cpu.powerTable.Table);
}

private void PowerTableMonitor_FormClosing(object sender, FormClosingEventArgs e)
{
PowerCfgTimer.Stop();
//CPU.powerTable.Dispose();
}

private void PowerTableMonitor_Shown(object sender, EventArgs e)
Expand Down
Binary file modified Prebuilt/ZenStates-Core.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.36.0")]
[assembly: AssemblyFileVersion("1.36.0")]
[assembly: AssemblyVersion("1.37.0")]
[assembly: AssemblyFileVersion("1.37.0")]
Loading

0 comments on commit 11e2a8e

Please sign in to comment.