diff -r 523c19d10a86 -r 3f2d9ebacf38 Hardware/LPC/F718XX.cs --- a/Hardware/LPC/F718XX.cs Mon Aug 29 18:41:06 2011 +0000 +++ b/Hardware/LPC/F718XX.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): @@ -47,6 +47,7 @@ private readonly float?[] voltages; private readonly float?[] temperatures; private readonly float?[] fans; + private readonly float?[] controls; // Hardware Monitor private const byte ADDRESS_REGISTER_OFFSET = 0x05; @@ -71,6 +72,8 @@ public void WriteGPIO(int index, byte value) { } + public void SetControl(int index, byte? value) { } + public F718XX(Chip chip, ushort address) { this.address = address; this.chip = chip; @@ -78,12 +81,14 @@ voltages = new float?[chip == Chip.F71858 ? 3 : 9]; temperatures = new float?[3]; fans = new float?[chip == Chip.F71882 || chip == Chip.F71858? 4 : 3]; + controls = new float?[0]; } public Chip Chip { get { return chip; } } 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 string GetReport() { StringBuilder r = new StringBuilder();