# HG changeset patch # User moel.mich # Date 1372014628 0 # Node ID 8eeac521b3b6f14aa1d8a8354b597329205bebd8 # Parent 1201889d413a8744c7649212cae87e8be251a25a Added the NCT6771F and NCT6776F chips to the lm-sensors interface. diff -r 1201889d413a -r 8eeac521b3b6 Hardware/LPC/LMSensors.cs --- a/Hardware/LPC/LMSensors.cs Sun Jun 09 20:11:20 2013 +0000 +++ b/Hardware/LPC/LMSensors.cs Sun Jun 23 19:10:28 2013 +0000 @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2012 Michael Möller + Copyright (C) 2009-2013 Michael Möller */ @@ -62,6 +62,11 @@ lmChips.Add(new LMChip(Chip.IT8718F, path)); break; case "it8720": lmChips.Add(new LMChip(Chip.IT8720F, path)); break; + + case "nct6775": + lmChips.Add(new LMChip(Chip.NCT6771F, path)); break; + case "nct6776": + lmChips.Add(new LMChip(Chip.NCT6776F, path)); break; case "w83627ehf": lmChips.Add(new LMChip(Chip.W83627EHF, path)); break;