diff -r 523c19d10a86 -r 3f2d9ebacf38 Hardware/LPC/W836XX.cs --- a/Hardware/LPC/W836XX.cs Mon Aug 29 18:41:06 2011 +0000 +++ b/Hardware/LPC/W836XX.cs Wed Aug 31 22:48:49 2011 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2010 + Portions created by the Initial Developer are Copyright (C) 2009-2011 the Initial Developer. All Rights Reserved. Contributor(s): @@ -50,6 +50,7 @@ private readonly float?[] voltages = new float?[0]; private readonly float?[] temperatures = new float?[0]; private readonly float?[] fans = new float?[0]; + private readonly float?[] controls = new float?[0]; private readonly bool[] peciTemperature = new bool[0]; private readonly byte[] voltageRegister = new byte[0]; @@ -110,7 +111,9 @@ } public void WriteGPIO(int index, byte value) { } - + + public void SetControl(int index, byte? value) { } + public W836XX(Chip chip, byte revision, ushort address) { this.address = address; this.revision = revision; @@ -201,6 +204,7 @@ public float?[] Voltages { get { return voltages; } } public float?[] Temperatures { get { return temperatures; } } public float?[] Fans { get { return fans; } } + public float?[] Controls { get { return controls; } } public void Update() { if (!Ring0.WaitIsaBusMutex(10))