Hardware/TBalancer/TBalancerGroup.cs
author moel.mich
Sun, 27 Jun 2010 20:49:29 +0000
changeset 144 44a688398012
parent 87 ecdc3bcef083
child 160 f7d962d25af4
permissions -rw-r--r--
A fist attempt at adding a mainboard specific configuration for the ASUS M4A79XTD EVO (Issue 79).
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     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
     8  
     9   http://www.mozilla.org/MPL/
    10 
    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.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    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) 2009-2010
    20   the Initial Developer. All Rights Reserved.
    21 
    22   Contributor(s):
    23 
    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.
    35  
    36 */
    37 
    38 using System;
    39 using System.Collections.Generic;
    40 using System.IO;
    41 using System.IO.Ports;
    42 using System.Text;
    43 using System.Threading;
    44 
    45 namespace OpenHardwareMonitor.Hardware.TBalancer {
    46   public class TBalancerGroup : IGroup {
    47 
    48     private List<TBalancer> hardware = new List<TBalancer>();
    49     private StringBuilder report = new StringBuilder();
    50 
    51     public TBalancerGroup() {
    52 
    53       uint numDevices;
    54       try {
    55         FTD2XX.FT_CreateDeviceInfoList(out numDevices);
    56       } catch (DllNotFoundException) { return; } 
    57         catch (ArgumentNullException) { return; }
    58         catch (EntryPointNotFoundException) { return; }
    59      
    60       FT_DEVICE_INFO_NODE[] info = new FT_DEVICE_INFO_NODE[numDevices];
    61       FTD2XX.FT_GetDeviceInfoList(info, ref numDevices);
    62 
    63       for (int i = 0; i < numDevices; i++) {
    64         report.Append("Device Index: "); report.AppendLine(i.ToString());
    65         
    66         FT_HANDLE handle;
    67         FT_STATUS status;
    68         status = FTD2XX.FT_Open(i, out handle);
    69         if (status != FT_STATUS.FT_OK) {
    70           report.AppendLine("Open Status: " + status);
    71           continue;
    72         }
    73 
    74         FTD2XX.FT_SetBaudRate(handle, 19200);
    75         FTD2XX.FT_SetDataCharacteristics(handle, 8, 1, 0);
    76         FTD2XX.FT_SetFlowControl(handle, FT_FLOW_CONTROL.FT_FLOW_RTS_CTS, 0x11, 
    77           0x13);
    78         FTD2XX.FT_SetTimeouts(handle, 1000, 1000);
    79         FTD2XX.FT_Purge(handle, FT_PURGE.FT_PURGE_ALL);
    80         
    81         status = FTD2XX.Write(handle, new byte[] { 0x38 });
    82         if (status != FT_STATUS.FT_OK) {
    83           report.AppendLine("Write Status: " + status);
    84           FTD2XX.FT_Close(handle);
    85           continue;
    86         }
    87 
    88         bool isValid = false;
    89         byte protocolVersion = 0;
    90 
    91         int j = 0;
    92         while (FTD2XX.BytesToRead(handle) == 0 && j < 2) {
    93           Thread.Sleep(100);
    94           j++;
    95         }
    96         if (FTD2XX.BytesToRead(handle) > 0) {
    97           if (FTD2XX.ReadByte(handle) == TBalancer.STARTFLAG) {
    98             while (FTD2XX.BytesToRead(handle) < 284 && j < 5) {
    99               Thread.Sleep(100);
   100               j++;
   101             }
   102             int length = FTD2XX.BytesToRead(handle);
   103             if (length >= 284) {
   104               byte[] data = new byte[285];
   105               data[0] = TBalancer.STARTFLAG;
   106               for (int k = 1; k < data.Length; k++)
   107                 data[k] = FTD2XX.ReadByte(handle);
   108 
   109               // check protocol version 2X (protocols seen: 2C, 2A, 28)
   110               isValid = (data[274] & 0xF0) == 0x20;
   111               protocolVersion = data[274];
   112               if (!isValid) {
   113                 report.Append("Status: Wrong Protocol Version: 0x");
   114                 report.AppendLine(protocolVersion.ToString("X"));
   115               }
   116             } else {
   117               report.AppendLine("Status: Wrong Message Length: " + length);
   118             }
   119           } else {
   120             report.AppendLine("Status: Wrong Startflag");
   121           }
   122         } else {
   123           report.AppendLine("Status: No Response");
   124         }
   125 
   126         FTD2XX.FT_Purge(handle, FT_PURGE.FT_PURGE_ALL);
   127         FTD2XX.FT_Close(handle);
   128 
   129         if (isValid) {
   130           report.AppendLine("Status: OK");
   131           hardware.Add(new TBalancer(i, protocolVersion));
   132           return;
   133         }
   134         report.AppendLine();
   135       }
   136     }
   137 
   138     public IHardware[] Hardware {
   139       get {
   140         return hardware.ToArray();
   141       }
   142     }
   143 
   144     public string GetReport() {
   145       if (report.Length > 0) {
   146         report.Insert(0, "FTD2XX" + Environment.NewLine +
   147           Environment.NewLine);
   148         report.AppendLine();
   149         return report.ToString();
   150       } else
   151         return null;
   152     }
   153 
   154     public void Close() {
   155       foreach (TBalancer tbalancer in hardware)
   156         tbalancer.Close();
   157     }
   158   }
   159 }