|
@@ -36,9 +36,9 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
/// <summary>LCM。</summary>
|
|
|
public static ImageType LCM = new ImageType(14, "LCM", new byte[] { 0x10, 0x00, 0x00, 0x0F }, OpenDialogFilter.HEX);
|
|
|
/// <summary>F750 PSU primary controller。</summary>
|
|
|
- public static ImageType F750_PSU_PrimaryController = new ImageType(15, "F750 PSU primary controller", new byte[] { 0x10, 0x00, 0x00, 0x10 }, OpenDialogFilter.HEX);
|
|
|
+ public static ImageType Infy_PFC_PrimaryController = new ImageType(15, "Infy PFC primary controller", new byte[] { 0x10, 0x00, 0x00, 0x10 }, OpenDialogFilter.HEX);
|
|
|
/// <summary>F750 PSU secondary controller。</summary>
|
|
|
- public static ImageType F750_PSU_SecondaryController = new ImageType(16, "F750 PSU secondary controller", new byte[] { 0x10, 0x00, 0x00, 0x11 }, OpenDialogFilter.HEX);
|
|
|
+ public static ImageType Infy_DD_SecondaryController = new ImageType(16, "Infy DD secondary controller", new byte[] { 0x10, 0x00, 0x00, 0x11 }, OpenDialogFilter.HEX);
|
|
|
/// <summary>F950 PSU primary controller。</summary>
|
|
|
public static ImageType F950_PSU_PrimaryController = new ImageType(17, "F950 PSU primary controller", new byte[] { 0x10, 0x00, 0x00, 0x12 }, OpenDialogFilter.HEX);
|
|
|
/// <summary>F950 PSU secondary controller。</summary>
|
|
@@ -102,8 +102,8 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
yield return RelayControlBoard;
|
|
|
yield return FanControlBoard;
|
|
|
yield return LCM;
|
|
|
- yield return F750_PSU_PrimaryController;
|
|
|
- yield return F750_PSU_SecondaryController;
|
|
|
+ yield return Infy_PFC_PrimaryController;
|
|
|
+ yield return Infy_DD_SecondaryController;
|
|
|
yield return F950_PSU_PrimaryController;
|
|
|
yield return F950_PSU_SecondaryController;
|
|
|
yield return LED_control_board;
|
|
@@ -135,8 +135,8 @@ namespace FirmwareHeaderBuilder.Model
|
|
|
yield return RelayControlBoard.Text;
|
|
|
yield return FanControlBoard.Text;
|
|
|
yield return LCM.Text;
|
|
|
- yield return F750_PSU_PrimaryController.Text;
|
|
|
- yield return F750_PSU_SecondaryController.Text;
|
|
|
+ yield return Infy_PFC_PrimaryController.Text;
|
|
|
+ yield return Infy_DD_SecondaryController.Text;
|
|
|
yield return F950_PSU_PrimaryController.Text;
|
|
|
yield return F950_PSU_SecondaryController.Text;
|
|
|
yield return LED_control_board.Text;
|