Skip to content

Commit

Permalink
1.7.3 (added K4G80325FC memory and 6FDF device)
Browse files Browse the repository at this point in the history
added K4G80325FC
AMD Radeon RX 580 2048SP - 6FDF
  • Loading branch information
IndeedMiners committed Jun 16, 2020
1 parent bf52730 commit 586b0df
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
28 changes: 25 additions & 3 deletions PolarisBiosEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public partial class PolarisBiosEditor : Form

/* DATA */

string version = "1.7.2";
string version = "1.7.3";
string programTitle = "PolarisBiosEditor";


Expand All @@ -28,7 +28,7 @@ public partial class PolarisBiosEditor : Form
"MICRON"
};

string[] supportedDeviceID = new string[] { "67DF", "67EF", "1002", "67FF", "699F" };
string[] supportedDeviceID = new string[] { "67DF", "67EF", "1002", "67FF", "699F", "6FDF" };

string[] timings = new string[]
{
Expand Down Expand Up @@ -61,7 +61,10 @@ public partial class PolarisBiosEditor : Form
// Universal Hynix
"777000000000000022AA1C00B56A6D46C0551017BE8E060C006006000C081420EA8900AB030000001B162C31C0313F17",
//Hynix 4
"999000000000000022559D0031626C46905F1015BC0D060C004004007D0714204A8900A0020071241B12312CC02D3C17" //new, please test
"999000000000000022559D0031626C46905F1015BC0D060C004004007D0714204A8900A0020071241B12312CC02D3C17", //new, please test
//Samsung K4G80325FC
"777000000000000022CC1C00106A5D4DD0571016B90D060C0060070014051420FA8900A0030000001011333DC0303A17",
"777000000000000022CC1C00106A6D4DD0571016B90D060C0060070014051420FA8900A0030000001B11333DC0303A17"
};

Dictionary<string, string> rc = new Dictionary<string, string>();
Expand Down Expand Up @@ -528,6 +531,7 @@ public PolarisBiosEditor()
rc.Add("K4G41325FE", "SAMSUNG");
rc.Add("K4G41325FC", "SAMSUNG");
rc.Add("K4G41325FS", "SAMSUNG");
rc.Add("K4G80325FC", "SAMSUNG_2");

save.Enabled = false;
boxROM.Enabled = false;
Expand Down Expand Up @@ -1452,6 +1456,7 @@ private void apply_timings1(int vendor_index, int timing_index)
private void button1_Click(object sender, EventArgs e)
{
int samsung_index = -1;
int samsung_2_index = -1;
int micron_index = -1;
int elpida_index = -1;
int hynix_1_index = -1;
Expand Down Expand Up @@ -1479,6 +1484,9 @@ private void button1_Click(object sender, EventArgs e)
case "SAMSUNG":
samsung_index = i;
break;
case "SAMSUNG_2":
samsung_2_index = i;
break;
case "MICRON":
micron_index = i;
break;
Expand Down Expand Up @@ -1517,6 +1525,20 @@ private void button1_Click(object sender, EventArgs e)
}
}

if (samsung_2_index != -1)
{
if (MessageBox.Show("Do you want faster timing?", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
int num = (int)MessageBox.Show("Samsung Memory found at index #" + (object)samsung_index + ", now applying faster timings to 1750+ strap(s)");
this.apply_timings1(samsung_2_index, 10);
}
else
{
int num = (int)MessageBox.Show("Samsung Memory found at index #" + (object)samsung_index + ", now applying slower timings to 1750+ strap(s)");
this.apply_timings1(samsung_2_index, 11);
}
}

if (hynix_3_index != -1)
{
if (MessageBox.Show("Do you want Universal Hynix Timing?", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
Expand Down

0 comments on commit 586b0df

Please sign in to comment.