Hardware/Mainboard/Model.cs
author moel.mich
Fri, 20 Jan 2012 17:19:42 +0000
changeset 337 10283dd68bbb
parent 336 1966500884bc
child 344 3145aadca3d2
permissions -rw-r--r--
Added a mainboard specific configuration for the ASUS P8Z68-V PRO.
moel@132
     1
/*
moel@132
     2
  
moel@132
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@132
     4
moel@132
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@132
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@132
     7
  the License. You may obtain a copy of the License at
moel@132
     8
 
moel@132
     9
  http://www.mozilla.org/MPL/
moel@132
    10
moel@132
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@132
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@132
    13
  for the specific language governing rights and limitations under the License.
moel@132
    14
moel@132
    15
  The Original Code is the Open Hardware Monitor code.
moel@132
    16
moel@132
    17
  The Initial Developer of the Original Code is 
moel@132
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@332
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2012
moel@132
    20
  the Initial Developer. All Rights Reserved.
moel@132
    21
moel@132
    22
  Contributor(s):
moel@132
    23
moel@132
    24
  Alternatively, the contents of this file may be used under the terms of
moel@132
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@132
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@132
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@132
    28
  of those above. If you wish to allow use of your version of this file only
moel@132
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@132
    30
  use your version of this file under the terms of the MPL, indicate your
moel@132
    31
  decision by deleting the provisions above and replace them with the notice
moel@132
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@132
    33
  the provisions above, a recipient may use your version of this file under
moel@132
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@132
    35
 
moel@132
    36
*/
moel@126
    37
moel@126
    38
namespace OpenHardwareMonitor.Hardware.Mainboard {
moel@126
    39
moel@165
    40
  internal enum Model {
moel@153
    41
    // ASRock
moel@153
    42
    _880GMH_USB3,
moel@220
    43
    AOD790GX_128M,
moel@221
    44
    P55_Deluxe,
moel@153
    45
moel@130
    46
    // ASUS
moel@133
    47
    Crosshair_III_Formula,
moel@133
    48
    M2N_SLI_DELUXE,
moel@144
    49
    M4A79XTD_EVO,
moel@133
    50
    P5W_DH_Deluxe,    
moel@336
    51
    P6T,
moel@152
    52
    P6X58D_E,
moel@312
    53
    P8P67,
moel@311
    54
    P8P67_EVO,
moel@265
    55
    P8P67_PRO,
moel@276
    56
    P8P67_M_PRO,
moel@332
    57
    P9X79,
moel@174
    58
    Rampage_Extreme,
moel@174
    59
    Rampage_II_GENE,
moel@130
    60
moel@126
    61
    // DFI
moel@126
    62
    LP_BI_P45_T2RS_Elite,
moel@132
    63
    LP_DK_P55_T3eH9,
moel@132
    64
moel@177
    65
    // ECS
moel@177
    66
    A890GXM_A,
moel@177
    67
moel@132
    68
    // EVGA
moel@132
    69
    X58_SLI_Classified,
moel@126
    70
moel@126
    71
    // Gigabyte
moel@130
    72
    _965P_S3,
moel@126
    73
    EP45_DS3R,
moel@130
    74
    EP45_UD3R,
moel@133
    75
    EX58_EXTREME,
moel@154
    76
    GA_MA770T_UD3,
moel@126
    77
    GA_MA785GMT_UD2H,
moel@290
    78
    H67A_UD3H_B3,
moel@126
    79
    P35_DS3,
moel@133
    80
    P35_DS3L,
moel@148
    81
    P55_UD4,
moel@168
    82
    P55M_UD4,
moel@278
    83
    P67A_UD4_B3,
moel@337
    84
    P8Z68_V_PRO,
moel@130
    85
    X38_DS5,
moel@138
    86
    X58A_UD3R,
moel@305
    87
    Z68X_UD7_B3,
moel@126
    88
moel@320
    89
    // Shuttle
moel@320
    90
    FH67,
moel@320
    91
moel@126
    92
    // Unknown
moel@126
    93
    Unknown    
moel@126
    94
  }
moel@126
    95
}