mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-01 06:45:12 +00:00
Added a mainboard specific configuration for the ASUS P9X79 (detailed fan and control configuration still missing).
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
The Initial Developer of the Original Code is
|
The Initial Developer of the Original Code is
|
||||||
Michael Möller <m.moeller@gmx.ch>.
|
Michael Möller <m.moeller@gmx.ch>.
|
||||||
Portions created by the Initial Developer are Copyright (C) 2009-2011
|
Portions created by the Initial Developer are Copyright (C) 2009-2012
|
||||||
the Initial Developer. All Rights Reserved.
|
the Initial Developer. All Rights Reserved.
|
||||||
|
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
@@ -53,6 +53,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
P8P67_EVO,
|
P8P67_EVO,
|
||||||
P8P67_PRO,
|
P8P67_PRO,
|
||||||
P8P67_M_PRO,
|
P8P67_M_PRO,
|
||||||
|
P9X79,
|
||||||
Rampage_Extreme,
|
Rampage_Extreme,
|
||||||
Rampage_II_GENE,
|
Rampage_II_GENE,
|
||||||
|
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
The Initial Developer of the Original Code is
|
The Initial Developer of the Original Code is
|
||||||
Michael Möller <m.moeller@gmx.ch>.
|
Michael Möller <m.moeller@gmx.ch>.
|
||||||
Portions created by the Initial Developer are Copyright (C) 2009-2011
|
Portions created by the Initial Developer are Copyright (C) 2009-2012
|
||||||
the Initial Developer. All Rights Reserved.
|
the Initial Developer. All Rights Reserved.
|
||||||
|
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
@@ -343,6 +343,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
case "ASRock":
|
case "ASRock":
|
||||||
return Manufacturer.ASRock;
|
return Manufacturer.ASRock;
|
||||||
case "ASUSTeK Computer INC.":
|
case "ASUSTeK Computer INC.":
|
||||||
|
case "ASUSTeK COMPUTER INC.":
|
||||||
return Manufacturer.ASUS;
|
return Manufacturer.ASUS;
|
||||||
case "Dell Inc.":
|
case "Dell Inc.":
|
||||||
return Manufacturer.Dell;
|
return Manufacturer.Dell;
|
||||||
@@ -420,6 +421,8 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
return Model.P8P67_PRO;
|
return Model.P8P67_PRO;
|
||||||
case "P8P67-M PRO":
|
case "P8P67-M PRO":
|
||||||
return Model.P8P67_M_PRO;
|
return Model.P8P67_M_PRO;
|
||||||
|
case "P9X79":
|
||||||
|
return Model.P9X79;
|
||||||
case "Rampage Extreme":
|
case "Rampage Extreme":
|
||||||
return Model.Rampage_Extreme;
|
return Model.Rampage_Extreme;
|
||||||
case "Rampage II GENE":
|
case "Rampage II GENE":
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
The Initial Developer of the Original Code is
|
The Initial Developer of the Original Code is
|
||||||
Michael Möller <m.moeller@gmx.ch>.
|
Michael Möller <m.moeller@gmx.ch>.
|
||||||
Portions created by the Initial Developer are Copyright (C) 2009-2011
|
Portions created by the Initial Developer are Copyright (C) 2009-2012
|
||||||
the Initial Developer. All Rights Reserved.
|
the Initial Developer. All Rights Reserved.
|
||||||
|
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
@@ -896,6 +896,19 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
f.Add(new Fan("Power Fan", 3));
|
f.Add(new Fan("Power Fan", 3));
|
||||||
f.Add(new Fan("Auxiliary Fan", 4));
|
f.Add(new Fan("Auxiliary Fan", 4));
|
||||||
break;
|
break;
|
||||||
|
case Model.P9X79: // NCT6776F
|
||||||
|
v.Add(new Voltage("CPU VCore", 0));
|
||||||
|
v.Add(new Voltage("+12V", 1, 11, 1));
|
||||||
|
v.Add(new Voltage("Analog +3.3V", 2, 34, 34));
|
||||||
|
v.Add(new Voltage("+3.3V", 3, 34, 34));
|
||||||
|
v.Add(new Voltage("+5V", 4, 12, 3));
|
||||||
|
v.Add(new Voltage("Standby +3.3V", 7, 34, 34));
|
||||||
|
v.Add(new Voltage("VBAT", 8, 34, 34));
|
||||||
|
t.Add(new Temperature("CPU", 0));
|
||||||
|
t.Add(new Temperature("Motherboard", 3));
|
||||||
|
for (int i = 0; i < superIO.Fans.Length; i++)
|
||||||
|
f.Add(new Fan("Fan #" + (i + 1), i));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
v.Add(new Voltage("CPU VCore", 0));
|
v.Add(new Voltage("CPU VCore", 0));
|
||||||
v.Add(new Voltage("Voltage #2", 1, true));
|
v.Add(new Voltage("Voltage #2", 1, true));
|
||||||
|
Reference in New Issue
Block a user