Skip to content

Commit 19660b3

Browse files
committed
Add support for Gigabyte A320M-S2H
1 parent 645e8aa commit 19660b3

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

OpenHardwareMonitorLib/Hardware/Motherboard/Identification.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,8 @@ public static Model GetModel(string name)
399399
return Model.TUF_X470_PLUS_GAMING;
400400
case var _ when name.Equals("B360M PRO-VDH (MS-7B24)", StringComparison.OrdinalIgnoreCase):
401401
return Model.B360M_PRO_VDH;
402+
case var _ when name.Equals("A320M-S2H-CF", StringComparison.OrdinalIgnoreCase):
403+
return Model.A320M_S2H_CF;
402404
case var _ when name.Equals("B360M H", StringComparison.OrdinalIgnoreCase):
403405
return Model.B360M_H;
404406
case var _ when name.Equals("B550-A PRO (MS-7C56)", StringComparison.OrdinalIgnoreCase):

OpenHardwareMonitorLib/Hardware/Motherboard/Model.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ public enum Model
187187
AB350_Gaming_3,
188188
AX370_Gaming_5,
189189
AX370_Gaming_K7,
190+
A320M_S2H_CF,
190191
B360M_H,
191192
B360_AORUS_GAMING_3_WIFI_CF,
192193
B550_AORUS_MASTER,

OpenHardwareMonitorLib/Hardware/Motherboard/SuperIOHardware.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1998,6 +1998,28 @@ private static void GetIteConfigurationsB(ISuperIO superIO, Manufacturer manufac
19981998

19991999
break;
20002000

2001+
case Model.A320M_S2H_CF: // IT8686E
2002+
v.Add(new Voltage("Vcore", 0));
2003+
v.Add(new Voltage("+3.3V", 1, 29.4f, 45.3f));
2004+
v.Add(new Voltage("+12V", 2, 10f, 2f));
2005+
v.Add(new Voltage("+5V", 3, 15f, 10f));
2006+
v.Add(new Voltage("CPU Vcore SoC", 4));
2007+
v.Add(new Voltage("CPU VDDP", 5));
2008+
v.Add(new Voltage("DRAM", 6));
2009+
v.Add(new Voltage("+3V Standby", 7, 1, 1));
2010+
v.Add(new Voltage("CMOS Battery", 8, 1, 1));
2011+
v.Add(new Voltage("AVCC3", 9, 1, 1));
2012+
t.Add(new Temperature("System", 0));
2013+
t.Add(new Temperature("Chipset", 1));
2014+
t.Add(new Temperature("CPU", 2));
2015+
t.Add(new Temperature("PCIe x16", 3));
2016+
t.Add(new Temperature("VRM MOS", 4));
2017+
t.Add(new Temperature("VSoC MOS", 5));
2018+
f.Add(new Fan("CPU Fan", 0));
2019+
f.Add(new Fan("System Fan", 1));
2020+
2021+
break;
2022+
20012023
case Model.B360M_H: // IT8686E
20022024
v.Add(new Voltage("Vcore", 0));
20032025
v.Add(new Voltage("+3.3V", 1, 29.4f, 45.3f));

0 commit comments

Comments
 (0)