Skip to content

Commit

Permalink
Display more system info items and bump version to 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
irusanov committed Aug 6, 2020
1 parent ca7a229 commit e83840b
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 21 deletions.
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.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
[assembly: AssemblyVersion("1.2.8.0")]
[assembly: AssemblyFileVersion("1.2.8.0")]
7 changes: 7 additions & 0 deletions SMU.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ public enum CPUType : int
Renoir
};

public enum PackageType: int
{
FP6 = 0,
AM4 = 2,
SP3 = 7
}

public enum Status : byte
{
OK = 0x01,
Expand Down
156 changes: 138 additions & 18 deletions SettingsForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion SettingsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,15 @@ private void ResetSettings(SMU smuSettings)
private void DisplaySystemInfo()
{
cpuInfoLabel.Text = SI.CpuName;
extendedModelInfoLabel.Text = $"{SI.ExtendedModel:X8}";
packageTypeInfoLabel.Text = $"{SI.PackageType} ({(SMU.PackageType)SI.PackageType})";
mbVendorInfoLabel.Text = SI.MbVendor;
mbModelInfoLabel.Text = SI.MbName;
biosInfoLabel.Text = SI.BiosVersion;
smuInfoLabel.Text = SI.GetSmuVersionString();
cpuIdLabel.Text = $"{SI.GetCpuIdString()} ({cpuType.ToString()})";
firmwareInfoLabel.Text = $"{SI.PatchLevel:X8}";
cpuIdLabel.Text = $"{SI.GetCpuIdString()} ({cpuType})";
configInfoLabel.Text = $"{SI.CCDCount} CCD / {SI.CCXCount} CCX / {SI.PhysicalCoreCount} physical cores";
}

private void InitForm()
Expand Down

0 comments on commit e83840b

Please sign in to comment.