Fixed Issue 105 and Issue 106.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
40 using System.IO.Ports;
41 using System.Security;
43 using System.Threading;
44 using Microsoft.Win32;
46 namespace OpenHardwareMonitor.Hardware.Heatmaster {
47 internal class HeatmasterGroup : IGroup {
49 private List<Heatmaster> hardware = new List<Heatmaster>();
50 private StringBuilder report = new StringBuilder();
52 private static string ReadLine(SerialPort port, int timeout) {
54 StringBuilder builder = new StringBuilder();
56 while (port.BytesToRead > 0) {
57 byte b = (byte)port.ReadByte();
59 case 0xAA: return ((char)b).ToString();
60 case 0x0D: return builder.ToString();
61 default: builder.Append((char)b); break;
67 throw new TimeoutException();
70 private static string[] GetRegistryPortNames() {
71 List<string> result = new List<string>();
73 RegistryKey key = Registry.LocalMachine.OpenSubKey(
74 @"SYSTEM\CurrentControlSet\Enum\USB\VID_10C4&PID_EA60");
76 key = Registry.LocalMachine.OpenSubKey(
77 @"SYSTEM\CurrentControlSet\Enum\USB\VID_10C4&PID_EA60&MI_00");
79 foreach (string subKeyName in key.GetSubKeyNames()) {
81 key.OpenSubKey(subKeyName + "\\" + "Device Parameters");
83 string name = subKey.GetValue("PortName") as string;
85 result.Add((string)name);
89 } catch (SecurityException) { }
90 return result.ToArray();
93 public HeatmasterGroup(ISettings settings) {
95 // No implementation for Heatmaster on Unix systems
96 int p = (int)System.Environment.OSVersion.Platform;
97 if ((p == 4) || (p == 128))
100 string[] portNames = GetRegistryPortNames();
101 for (int i = portNames.Length - 1; i >= 0; i--) {
104 SerialPort serialPort =
105 new SerialPort(portNames[i], 38400, Parity.None, 8, StopBits.One);
106 serialPort.NewLine = ((char)0x0D).ToString();
108 bool isValid = false;
109 report.Append("Port Name: "); report.AppendLine(portNames[i]);
113 } catch (UnauthorizedAccessException) {
114 report.AppendLine("Exception: Access Denied");
117 if (serialPort.IsOpen) {
118 serialPort.DiscardInBuffer();
119 serialPort.DiscardOutBuffer();
120 serialPort.Write(new byte[] { 0xAA }, 0, 1);
123 while (serialPort.BytesToRead == 0 && j < 10) {
127 if (serialPort.BytesToRead > 0) {
129 while (serialPort.BytesToRead > 0 && !flag) {
130 flag |= (serialPort.ReadByte() == 0xAA);
133 serialPort.WriteLine("[0:0]RH");
138 string line = ReadLine(serialPort, 100);
139 if (line.StartsWith("-[0:0]RH:")) {
140 int.TryParse(line.Substring(9), out revision);
145 isValid = (revision == 770);
147 report.Append("Status: Wrong Hardware Revision " +
148 revision.ToString());
150 } catch (TimeoutException) {
151 report.AppendLine("Status: Timeout Reading Revision");
154 report.AppendLine("Status: Wrong Startflag");
157 report.AppendLine("Status: No Response");
159 serialPort.DiscardInBuffer();
161 serialPort.Dispose();
163 report.AppendLine("Status: Port not Open");
166 report.AppendLine("Status: OK");
167 hardware.Add(new Heatmaster(portNames[i], settings));
170 } catch (Exception e) {
171 report.AppendLine(e.ToString());
177 public IHardware[] Hardware {
179 return hardware.ToArray();
183 public string GetReport() {
184 if (report.Length > 0) {
185 report.Insert(0, "Serial Port Heatmaster" + Environment.NewLine +
186 Environment.NewLine);
188 return report.ToString();
193 public void Close() {
194 foreach (Heatmaster heatmaster in hardware)