HondaReflashTool/Class_ECUS.cs

29 lines
1.0 KiB
C#
Raw Normal View History

2022-04-13 23:39:25 -07:00
using System;
using System.Runtime.CompilerServices;
internal class Class_ECUS
{
2022-04-18 01:06:03 -07:00
internal Class_ECUS(string string_4, string string_5, byte byte_1, string string_6, int int_4, int int_6, string TrannyType)
2022-04-13 23:39:25 -07:00
{
this.RomSize_String = string_4;//only for display
2022-04-13 23:39:25 -07:00
this.ECU_Byte = byte_1;
this.ECU_Byte_String = string_6;//only for display
this.Processor = string_5; //only for display
2022-04-13 23:39:25 -07:00
this.ReadingSize = int_4 - 1;
this.FirmwareSize = int_6; //not used
2022-04-13 23:39:25 -07:00
this.RomSize = int_4;
this.TransmissionType = TrannyType;//only for display
2022-04-13 23:39:25 -07:00
}
public string RomSize_String { get; set; }
public byte ECU_Byte { get; set; }
public string ECU_Byte_String { get; set; }
public string Processor { get; set; }
public int ReadingSize { get; set; }
public int FirmwareSize { get; set; }
public int RomSize { get; set; }
2022-04-18 01:06:03 -07:00
public string TransmissionType { get; set; }
public int PlatformIndex { get; set; }
2022-04-13 23:39:25 -07:00
}