|
@@ -43,14 +43,16 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
public static ImageType F950_PSU_PrimaryController = new ImageType(17, "F950 PSU primary controller", new byte[] { 0x10, 0x00, 0x00, 0x12 });
|
|
|
/// <summary>F950 PSU secondary controller。</summary>
|
|
|
public static ImageType F950_PSU_SecondaryController = new ImageType(18, "F950 PSU secondary controller", new byte[] { 0x10, 0x00, 0x00, 0x13 });
|
|
|
+ /// <summary>LED Control board。</summary>
|
|
|
+ public static ImageType LED_Control_board = new ImageType(19, "LED Control board", new byte[] { 0x10, 0x00, 0x00, 0x14 });
|
|
|
/// <summary>AC cord set controller。</summary>
|
|
|
- public static ImageType AC_CordSetController = new ImageType(19, "AC cord set controller", new byte[] { 0x20, 0x00, 0x00, 0x01 });
|
|
|
+ public static ImageType AC_CordSetController = new ImageType(20, "AC cord set controller", new byte[] { 0x20, 0x00, 0x00, 0x01 });
|
|
|
/// <summary>AC wall-mount (low-end) controller。</summary>
|
|
|
- public static ImageType AC_WallMountController = new ImageType(20, "AC wall-mount (low-end) controller", new byte[] { 0x20, 0x00, 0x00, 0x02 });
|
|
|
+ public static ImageType AC_WallMountController = new ImageType(21, "AC wall-mount (low-end) controller", new byte[] { 0x20, 0x00, 0x00, 0x02 });
|
|
|
/// <summary>CMU in BMS。</summary>
|
|
|
- public static ImageType BMS_CMU = new ImageType(21, "CMU in BMS", new byte[] { 0x30, 0x00, 0x00, 0x01 });
|
|
|
+ public static ImageType BMS_CMU = new ImageType(22, "CMU in BMS", new byte[] { 0x30, 0x00, 0x00, 0x01 });
|
|
|
/// <summary>BMU in BMS。</summary>
|
|
|
- public static ImageType BMS_BMU = new ImageType(22, "BMU in BMS", new byte[] { 0x30, 0x00, 0x00, 0x02 });
|
|
|
+ public static ImageType BMS_BMU = new ImageType(23, "BMU in BMS", new byte[] { 0x30, 0x00, 0x00, 0x02 });
|
|
|
|
|
|
#region Properties
|
|
|
/// <summary>取得對應使用者操作介面之索引。</summary>
|
|
@@ -100,6 +102,7 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
yield return F750_PSU_SecondaryController;
|
|
|
yield return F950_PSU_PrimaryController;
|
|
|
yield return F950_PSU_SecondaryController;
|
|
|
+ yield return LED_Control_board;
|
|
|
yield return AC_CordSetController;
|
|
|
yield return AC_WallMountController;
|
|
|
yield return BMS_CMU;
|
|
@@ -132,6 +135,7 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
yield return F750_PSU_SecondaryController.Text;
|
|
|
yield return F950_PSU_PrimaryController.Text;
|
|
|
yield return F950_PSU_SecondaryController.Text;
|
|
|
+ yield return LED_Control_board.Text;
|
|
|
yield return AC_CordSetController.Text;
|
|
|
yield return AC_WallMountController.Text;
|
|
|
yield return BMS_CMU.Text;
|