diff --git a/ClassEditor.cs b/ClassEditor.cs index 3318ffc..1416bda 100644 --- a/ClassEditor.cs +++ b/ClassEditor.cs @@ -17,6 +17,7 @@ internal class ClassEditor { public List Ecus_Definitions_Compatible = new List(); + public List Ecus_Definitions_Compatible_filename = new List(); //Variables for loaded rom definition public List DefinitionsLocationsX = new List(); @@ -48,6 +49,8 @@ internal class ClassEditor public List DefinitionsIsReadOnly = new List(); public List DefinitionsIsUntested = new List(); public List DefinitionsIsNotDefined = new List(); + public string DefinitionsChecksumLocation = ""; + public string DefinitionsCurrentLoadedECU = ""; public long SelectedROMLocation; public int SelectedTableSize; @@ -377,8 +380,8 @@ public void SaveROMBytes(string string_4) public void FixChecksums() { - if (!this.Editortable_0.IsFullBinary) this.ROM_Bytes = this.Editortable_0.GForm_Main_0.VerifyChecksumFWBin(this.ROM_Bytes); - if (this.Editortable_0.IsFullBinary) this.ROM_Bytes = this.Editortable_0.GForm_Main_0.VerifyChecksumFullBin(this.ROM_Bytes); + if (!this.Editortable_0.IsFullBinary) this.ROM_Bytes = this.Editortable_0.GForm_Main_0.Class_Checksums_0.VerifyChecksumFWBin(this.ROM_Bytes); + if (this.Editortable_0.IsFullBinary) this.ROM_Bytes = this.Editortable_0.GForm_Main_0.Class_Checksums_0.VerifyChecksumFullBin(this.ROM_Bytes); } @@ -1000,7 +1003,11 @@ public bool LoadROMbytes(string string_4) this.ROM_Bytes[i + 2] == 0x38 && this.ROM_Bytes[i + 3] == 0x30 && (this.ROM_Bytes[i + 4] == 0x35 || this.ROM_Bytes[i + 4] == 0x36) && - this.ROM_Bytes[i + 5] == 0x2D) + this.ROM_Bytes[i + 5] == 0x2D && + this.ROM_Bytes[i + 10] != 0x5A && + this.ROM_Bytes[i + 11] != 0x5A && + this.ROM_Bytes[i + 12] != 0x5A && + this.ROM_Bytes[i + 13] != 0x5A) { for (int i2 = 0; i2 < 14; i2++) { @@ -1157,6 +1164,7 @@ public void LoadSupportedECUDefinitions() try { Ecus_Definitions_Compatible = new List(); + Ecus_Definitions_Compatible_filename = new List(); Editortable_0.CheckDefinitionFolderExist(); @@ -1166,8 +1174,13 @@ public void LoadSupportedECUDefinitions() string[] AllDefinitionFiles = Directory.GetFiles(Folderpath, "*.txt", SearchOption.AllDirectories); Editortable_0.GForm_Main_0.method_1("Loading definitions files..."); + int CurrentIndex = 0; foreach (string ThisFilePath in AllDefinitionFiles) { + CurrentIndex++; + int Percent = (int)((CurrentIndex * 100) / AllDefinitionFiles.Length); + Editortable_0.GForm_Main_0.method_4(Percent); + string[] AllLines = File.ReadAllLines(ThisFilePath); bool GettingEcuList = true; for (int i = 0; i < AllLines.Length; i++) @@ -1180,6 +1193,7 @@ public void LoadSupportedECUDefinitions() if (GettingEcuList) { Ecus_Definitions_Compatible.Add(Thisline); + Ecus_Definitions_Compatible_filename.Add(ThisFilePath); Editortable_0.GForm_Main_0.method_1("Definitions found for ecu: " + Thisline); } } @@ -1197,18 +1211,25 @@ public void LoadSupportedECUDefinitions() { DarkMessageBox.Show("Failed to load definitions. " + ex.ToString()); } + + Editortable_0.GForm_Main_0.ResetProgressBar(); } - public void LoadThisECUDefinitions(string ThisECU) + public void LoadThisECUDefinitions(string ThisECU, int ThisIndexfile) { + if (DefinitionsCurrentLoadedECU == ThisECU) return; + try { Editortable_0.CheckDefinitionFolderExist(); - string Folderpath = Application.StartupPath + @"\Definitions"; - if (Directory.Exists(Folderpath)) + string ThisFilename = Ecus_Definitions_Compatible_filename[ThisIndexfile]; + + //string Folderpath = Application.StartupPath + @"\Definitions"; + //if (Directory.Exists(Folderpath)) + if (File.Exists(ThisFilename)) { - string[] AllDefinitionFiles = Directory.GetFiles(Folderpath, "*.txt", SearchOption.AllDirectories); + //string[] AllDefinitionFiles = Directory.GetFiles(Folderpath, "*.txt", SearchOption.AllDirectories); DefinitionsLocationsX = new List(); DefinitionsLocationsY = new List(); @@ -1238,13 +1259,17 @@ public void LoadThisECUDefinitions(string ThisECU) DefinitionsIsReadOnly = new List(); DefinitionsIsUntested = new List(); DefinitionsIsNotDefined = new List(); + DefinitionsChecksumLocation = ""; + DefinitionsCurrentLoadedECU = ThisECU; Editortable_0.GForm_Main_0.method_1("Loading ECU definitions for: " + ThisECU); bool ECUFound = false; + bool ChecksumFound = false; bool IsFileGenerated = false; - foreach (string ThisFilePath in AllDefinitionFiles) - { - string[] AllLines = File.ReadAllLines(ThisFilePath); + //foreach (string ThisFilePath in AllDefinitionFiles) + //{ + //string[] AllLines = File.ReadAllLines(ThisFilePath); + string[] AllLines = File.ReadAllLines(ThisFilename); bool GettingEcuList = true; string CurrentLocationX = ""; @@ -1291,6 +1316,13 @@ public void LoadThisECUDefinitions(string ThisECU) if (GettingEcuList && Thisline == ThisECU) ECUFound = true; } + if (!ChecksumFound && Thisline.Contains("ChecksumAddress:")) + { + string[] Commands = Thisline.Split(':'); + DefinitionsChecksumLocation = Commands[1]; + ChecksumFound = true; + } + if (!GettingEcuList && !ECUFound) i = AllLines.Length; if (!GettingEcuList && ECUFound) { @@ -1408,16 +1440,17 @@ public void LoadThisECUDefinitions(string ThisECU) { Editortable_0.GForm_Main_0.method_1("Definitions loaded!"); + //HERE if (IsFileGenerated) DarkMessageBox.Show("This Definitions file as been generated to get the ROM Locations.\nThe ROM Locations can possibly be wrong and\nthe tables can display corrupted values!"); return; } - } + //} - if (!ECUFound) Editortable_0.GForm_Main_0.method_1("Definitions NOT loaded!"); - } - else - { - DarkMessageBox.Show("Failed to find definitions folder."); + //if (!ECUFound) Editortable_0.GForm_Main_0.method_1("Definitions NOT loaded!"); + /*} + else + { + DarkMessageBox.Show("Failed to find definitions folder.");*/ } } catch (Exception ex) diff --git a/Class_Checksums.cs b/Class_Checksums.cs new file mode 100644 index 0000000..c32f88b --- /dev/null +++ b/Class_Checksums.cs @@ -0,0 +1,142 @@ +using System; +using System.IO; +using System.IO.Compression; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using DarkUI.Forms; + +public class Class_Checksums +{ + private GForm_Main GForm_Main_0; + + public void Load(ref GForm_Main GForm_Main_1) + { + GForm_Main_0 = GForm_Main_1; + } + + public byte GetNegativeChecksumArea(byte[] byte_1, int Start, int ChecksumLocation) + { + byte b = 0; + for (int i = Start; i < byte_1.Length; i++) + { + if (i != ChecksumLocation) + { + b -= byte_1[i]; + } + } + return b; + } + + public int GetChecksumLocationThisECU(string ThisECU) + { + int CheckLocation = 0; + if (GForm_Main_0.Editortable_0.LoadDefinitionsFor(ThisECU)) + { + if (GForm_Main_0.Editortable_0.ClassEditor_0.DefinitionsChecksumLocation != "") + { + CheckLocation = int.Parse(GForm_Main_0.Editortable_0.ClassEditor_0.DefinitionsChecksumLocation.Replace("0x", ""), System.Globalization.NumberStyles.HexNumber); + } + } + return CheckLocation; + } + + public int GetChecksumLocation(byte[] BinFileBytes) + { + byte[] BufferBytes = BinFileBytes; + int CheckLocation = 0; + + string Thisecuu = GForm_Main_0.Editortable_0.ExtractECUNameFromThisFile(BinFileBytes); + if (Thisecuu != "") + { + if (GForm_Main_0.Editortable_0.LoadDefinitionsFor(Thisecuu)) + { + if (GForm_Main_0.Editortable_0.ClassEditor_0.DefinitionsChecksumLocation != "") + { + CheckLocation = int.Parse(GForm_Main_0.Editortable_0.ClassEditor_0.DefinitionsChecksumLocation.Replace("0x", ""), System.Globalization.NumberStyles.HexNumber); + } + } + } + + if (CheckLocation == 0) + { + //HERE + //GForm_Main_0.method_1("Checksum location not definied for '" + Thisecuu + "', using known checksum location but can possibly be wrong on some ecu!"); + + DialogResult result = DarkMessageBox.Show("Checksum location not definied for '" + Thisecuu + "'" + Environment.NewLine + "Do you want to use 'known good' checksum location but they still can possibly be wrong on some ecu?", "Checksum location", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation); + if (result == DialogResult.Yes) + { + if (BufferBytes.Length - 1 == 0xF7FFF) CheckLocation = 0x400; //1mb-fw -> 0x8400 in full bin but we dont have the bootloader 0x0000 to 0x8000 + if (BufferBytes.Length - 1 == 0xFFFFF) CheckLocation = 0x8400; //1mb-full + if (BufferBytes.Length - 1 == 0x1EFFFF) CheckLocation = 0x12; //2mb-fw + if (BufferBytes.Length - 1 == 0x1FFFFF) CheckLocation = 0x10012; //2mb-full + if (BufferBytes.Length - 1 == 0x26FFFF) CheckLocation = 0x1F03E6; //4mb-fw + if (BufferBytes.Length - 1 == 0x27FFFF) CheckLocation = 0x2003E6; //4mb-full //0x3FFFFF + } + } + + return CheckLocation; + } + + public byte[] VerifyChecksumFullBin(byte[] BinFileBytes) + { + //############################### + //Get Checksum and Fix it + byte[] BufferBytes = BinFileBytes; + int CheckLocation = GetChecksumLocation(BinFileBytes); + + if (CheckLocation == 0) + { + GForm_Main_0.method_1("Checksum location not found!"); + return BufferBytes; + } + + byte num = BufferBytes[CheckLocation]; + byte num2 = GetNegativeChecksumArea(BufferBytes, 0, CheckLocation); + if (num != num2) + { + GForm_Main_0.method_1("Checksum miss match."); + BufferBytes[CheckLocation] = num2; + GForm_Main_0.method_1("Checksum fixed at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); + } + else + { + GForm_Main_0.method_1("Checksum are good at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); + } + return BufferBytes; + } + + public byte[] VerifyChecksumFWBin(byte[] FWFileBytes) + { + //############################### + //Get Checksum and Fix it + byte[] BufferBytes = FWFileBytes; + int CheckLocation = GetChecksumLocation(FWFileBytes); + + if (CheckLocation == 0) + { + GForm_Main_0.method_1("Checksum location not found!"); + return BufferBytes; + } + + byte num = Class_RWD.BootloaderSum; + byte num2 = Class_RWD.GetNegativeChecksumFWBin(BufferBytes, CheckLocation); + byte ThisSum = num; + ThisSum -= num2; + byte chk = BufferBytes[CheckLocation]; + if (chk != ThisSum) + { + GForm_Main_0.method_1("Checksum miss match."); + BufferBytes[CheckLocation] = ThisSum; + GForm_Main_0.method_1("Checksum fixed at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); + } + else + { + GForm_Main_0.method_1("checksum good at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); + } + return BufferBytes; + } +} diff --git a/Class_DefinitionMaker.cs b/Class_DefinitionMaker.cs index f339ee6..f34a40a 100644 --- a/Class_DefinitionMaker.cs +++ b/Class_DefinitionMaker.cs @@ -976,6 +976,8 @@ public bool Extract(string ExtractMode) Done = false; ExtractedBlockDone = 1; CurrentExtractedDumps = 1; + + if (!Directory.Exists(ThisEndPath)) Directory.CreateDirectory(ThisEndPath); RemovePastDump(); long MaxIndex = (CurrentIndex + BlockSizeExtracted); @@ -988,8 +990,6 @@ public bool Extract(string ExtractMode) GForm_Main_0.method_1("------------------------------------------"); GForm_Main_0.method_1("Extracting..."); - if (!Directory.Exists(ThisEndPath)) Directory.CreateDirectory(ThisEndPath); - Process[] ProcList = Process.GetProcessesByName("FlashProManager"); if (ProcList.Length == 0) { @@ -1054,17 +1054,6 @@ public bool Extract(string ExtractMode) GForm_Main_0.method_1("Extracted Definitions file created: " + Environment.NewLine + SaveDefPath); File.Create(SaveDefPath).Dispose(); File.WriteAllText(SaveDefPath, DumpedDefinition); - - //NOT NEEDED ANYMORE - //< 0x20 > 0x7E - /*byte[] AllFileBytes = File.ReadAllBytes(SaveDefPath); - string SavingString = ""; - for (int i = 0; i < AllFileBytes.Length; i++) - { - if (AllFileBytes[i] >= 0x20 && AllFileBytes[i] <= 0x7E) SavingString += ((char)AllFileBytes[i]).ToString(); - if (AllFileBytes[i] == 0x0D && AllFileBytes[i + 1] == 0x0A) SavingString += Environment.NewLine; - } - File.WriteAllText(SaveDefPath, SavingString);*/ } } @@ -1112,10 +1101,11 @@ void RemovePastDump() void ExtractBINFromMemory() { int bytesRead = 0; - uint ThisLocation = 0xFC000000; //0xFCD180BB FD0100C3 FD2A00C3 //C60000 + uint ThisLocation = 0xFAFF0000; //0xFCD180BB FD0100C3 FD2A00C3 //C60000 uint MaxLocation = 0xFE000000; uint ExtractingSize = 0xFFFFF; - int BINSize = ExtractMemorySize + 1; + //int BINSize = ExtractMemorySize + 1; + int BINSize = 0x26FFFF + 1; IntPtr processHandle = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_WM_READ, false, process.Id); byte[] buffer = new byte[ExtractingSize]; @@ -1128,7 +1118,7 @@ void ExtractBINFromMemory() ReadProcessMemory((int)processHandle, ThisLocation, buffer, buffer.Length, ref bytesRead); - //D0 02 40 0B 00 09 AF FE ->works for 1Mb &7 2Mb ROM + //D0 02 40 0B 00 09 AF FE ->works for 1Mb & 2Mb ROM //0D 00 40 02 00 80 00 90 ->works for 4Mb ROM //20 00 00 03 B4 C0 FF FF ->works for some 1Mb ROM //FF FF FF FF FF FF FF XX -> NOT SUGGESTED @@ -1145,6 +1135,7 @@ void ExtractBINFromMemory() { StartAddr = (uint)i - 8; i = buffer.Length; + Console.WriteLine("Bin method#1"); } if (StartAddr == 0) @@ -1160,6 +1151,7 @@ void ExtractBINFromMemory() { StartAddr = (uint)i - 8; i = buffer.Length; + Console.WriteLine("Bin method#2"); } } @@ -1174,11 +1166,32 @@ void ExtractBINFromMemory() && buffer[i + 6] == 0xff && buffer[i + 7] == 0xff) { - StartAddr = (uint)i - 8; + StartAddr = (uint)i - 6; //fixed i = buffer.Length; + Console.WriteLine("Bin method#3"); } } + /*if (StartAddr == 0) + { + if (buffer[i] == 0x20 + && buffer[i + 1] == 0x00 + && buffer[i + 2] == 0x00 + && buffer[i + 3] == 0xd0 + && buffer[i + 4] == 0x3f + && buffer[i + 5] == 0x87 + && buffer[i + 6] == 0x01 + && buffer[i + 7] == 0xd0) + { + StartAddr = (uint)i - 8; + i = buffer.Length; + Console.WriteLine("Bin method#4"); + } + }*/ + //20 00 00 D0 4F 28 01 D0 + //20 00 00 D0 3F 87 01 D0 + //01 D0 00 00 00 B0 B7 06 + //NOT SUGGESTED /*if (buffer[i] == 0xff && buffer[i + 1] == 0xff @@ -1205,14 +1218,64 @@ void ExtractBINFromMemory() if (StartAddr != 0) { - Console.WriteLine("address: 0x" + (StartAddr + ThisLocation).ToString("X")); + //Console.WriteLine("address: 0x" + (StartAddr + ThisLocation).ToString("X")); buffer = new byte[BINSize]; ReadProcessMemory((int)processHandle, (StartAddr + ThisLocation), buffer, buffer.Length, ref bytesRead); + //Remake buffer for appropriate size rom (1mb/2mb/4mb) + int NameLocation = GForm_Main_0.Editortable_0.ExtractECUNameLocationFromThisFile(buffer); + int Count0x00 = 0; + int BinFormatSize = 0x26FFFF + 1; + + //Console.WriteLine("name location: 0x" + NameLocation.ToString("X")); + if (NameLocation < 0x1EFFFF) + { + for (int i = 0xF7FFF; i < buffer.Length; i++) + { + if (buffer[i] == 0x00) Count0x00++; + if (buffer[i] != 0x00) Count0x00 = 0; + + if (Count0x00 >= (16 * 150)) + { + if (i >= 0xF7FFF && i < 0x1EFFFF) + { + BinFormatSize = 0xF7FFF + 1; + //Console.WriteLine("too much 0x00 at: 0x" + i.ToString("X")); + i = buffer.Length; + } + if (i >= 0x1EFFFF && i < 0x26FFFF) + { + BinFormatSize = 0x1EFFFF + 1; + i = buffer.Length; + } + } + } + } + if (BinFormatSize == (0xF7FFF + 1)) + { + //remake 1mb + GForm_Main_0.method_1("1Mb .bin format detected"); + byte[] newwbuffer = new byte[0xF7FFF + 1]; + for (int k = 0; k < newwbuffer.Length; k++) newwbuffer[k] = buffer[k]; + buffer = newwbuffer; + } + if (BinFormatSize == (0x1EFFFF + 1)) + { + //remake 2mb + GForm_Main_0.method_1("2Mb .bin format detected"); + byte[] newwbuffer = new byte[0x1EFFFF + 1]; + for (int k = 0; k < newwbuffer.Length; k++) newwbuffer[k] = buffer[k]; + buffer = newwbuffer; + } + if (BinFormatSize == (0x26FFFF + 1)) + { + GForm_Main_0.method_1("4Mb .bin format detected"); + } + string ECUFilename = GForm_Main_0.Editortable_0.ExtractECUNameFromThisFile(buffer); if (ECUFilename != "") { - string SavePathh = ThisEndPath + GForm_Main_0.Editortable_0.ExtractECUNameFromThisFile(buffer) + ".bin"; + string SavePathh = ThisEndPath + ECUFilename + ".bin"; File.Create(SavePathh).Dispose(); File.WriteAllBytes(SavePathh, buffer); GForm_Main_0.method_1("Extracted Binary file created: " + Environment.NewLine + SavePathh); @@ -1221,9 +1284,9 @@ void ExtractBINFromMemory() else { GForm_Main_0.method_1("Something went wrong while extracting .bin:" + Environment.NewLine + "Could not find 'ECU name' inside the extracted data"); - //string SavePathh = ThisEndPath + "DumpHex1"; - //File.Create(SavePathh).Dispose(); - //File.WriteAllBytes(SavePathh, buffer); + string SavePathh = ThisEndPath + "DumpHex1"; + File.Create(SavePathh).Dispose(); + File.WriteAllBytes(SavePathh, buffer); } } /*else @@ -1298,7 +1361,69 @@ void ExtractMemoryBlock() //########################################################################################################################## //########################################################################################################################## - public void ExtractAllBootLoaderSum_1Mb() + public void ExtractAllBootLoaderSum() + { + AllFileNames = new List(); + AllBootLoaderSumBytes = new List(); + + string[] AllFiles = Directory.GetFiles(FirmwareFolder, "*.gz"); //Get all RWD files + for (int i = 0; i < GForm_Main_0.Editortable_0.ClassEditor_0.Ecus_Definitions_Compatible.Count; i++) //Check within all ecus that has a definitions file + { + string ThisEcu = GForm_Main_0.Editortable_0.ClassEditor_0.Ecus_Definitions_Compatible[i]; + + //Console.WriteLine("DEEEEE: " + ThisEcu); + + bool RWDFileFound = false; + for (int k = 0; k < AllFiles.Length; k++) //check within all RWD files + { + if (AllFiles[k].Contains(ThisEcu)) + { + RWDFileFound = true; + //Console.WriteLine("DOING: " + ThisEcu); + GForm_Main_0.ClearLogs(); + + //Decrypt firmware file and get needed variable (Decryption byte) + Class_RWD.LoadRWD(AllFiles[k], true, false, false); + + for (int m = 0; m < Class_RWD.SuppportedVersions.Length; m++) + { + if (Class_RWD.SuppportedVersions[m] == ThisEcu) //Matching ecu definition and RWD file + { + //Console.WriteLine("MATCHING!"); + byte[] AllBytes = Class_RWD.firmware_candidates[m]; + byte BootLoaderSumByte = Class_RWD.BootloaderSum; + + if (BootLoaderSumByte == 0) + { + Console.WriteLine("ERROR BOOTSUM FOR: " + ThisEcu); + + } + else + { + AllFileNames.Add(ThisEcu); + AllBootLoaderSumBytes.Add(BootLoaderSumByte); + } + + m = Class_RWD.SuppportedVersions.Length; + k = AllFiles.Length; + } + } + } + } + if (!RWDFileFound) Console.WriteLine("RWD NOT FOUND FOR: " + ThisEcu); + } + + string SavingText = ""; + for (int i = 0; i < AllFileNames.Count; i++) SavingText = SavingText + AllFileNames[i] + "|" + AllBootLoaderSumBytes[i] + Environment.NewLine; + + string SavingPath = Application.StartupPath + @"\BootLoaderSumBytesList2.txt"; + File.Create(SavingPath).Dispose(); + File.WriteAllText(SavingPath, SavingText); + + GForm_Main_0.method_1("File saved:" + SavingPath); + } + + /*public void ExtractAllBootLoaderSum_1Mb() { AllFileNames = new List(); AllBootLoaderSumBytes = new List(); @@ -1344,5 +1469,5 @@ public byte GetNegativeChecksumFWBin(byte[] byte_1) if (i != 0x400) b -= byte_1[i]; } return b; - } + }*/ } diff --git a/Class_RWD.cs b/Class_RWD.cs index c8f1363..16b3ad9 100644 --- a/Class_RWD.cs +++ b/Class_RWD.cs @@ -11,12 +11,12 @@ static class Class_RWD { private static string part_number_prefix = ""; - private static List firmware_candidates = new List(); + public static List firmware_candidates = new List(); public static byte[] _keys = new byte[] { }; public static byte[] _firmware_encrypted = new byte[] { }; public static UInt32 start = 0U; public static UInt32 size = 0U; - private static string[] SuppportedVersions = new string[] { }; + public static string[] SuppportedVersions = new string[] { }; private static string[] SuppportedFWKeys = new string[] { }; private static string CanAddress = ""; private static byte[] DecodersBytes = new byte[] { }; //Used to decode rwd to bin @@ -107,15 +107,15 @@ private static UInt32 Get_rwd_checksum(byte[] data, uint start, uint end) //###################################################################################################### //###################################################################################################### - public static void LoadBIN(string f_name, string f_nameFW) + public static void ConvertBIN2RWD(string f_name, string f_nameFW) { byte[] data = File.ReadAllBytes(f_name); GForm_Main_0.method_1("Encrypting file: " + f_name); //Load .rwd file for obtaining 'encryption' method and then encrypt the .bin using the same method. - LoadRWD(f_nameFW, true, false); + LoadRWD(f_nameFW, true, false, true); - //Copy Start file bytes from the selected rwd file, then add the dat aand checksum bytes + //Copy Start file bytes from the selected rwd file, then add the data and checksum bytes byte[] dataEncrypted = new byte[RWD_encrypted_StartFile.Length + data.Length + 4]; for (int i = 0; i < RWD_encrypted_StartFile.Length; i++) dataEncrypted[i] = RWD_encrypted_StartFile[i]; @@ -154,19 +154,26 @@ public static void LoadBIN(string f_name, string f_nameFW) //###################################################################################################### //###################################################################################################### - public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) + public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving, bool Logs) { byte[] data = new byte[] { }; + SuppportedVersions = new string[] { }; + SuppportedFWKeys = new string[] { }; + start = 0; + size = 0; + _firmware_encrypted = new byte[] { }; + _keys = new byte[] { }; + if (Path.GetExtension(f_name).ToLower().Contains("gz")) data = Decompress(f_name); else data = File.ReadAllBytes(f_name); - GForm_Main_0.method_1("Decrypting file: " + f_name); + if (Logs) GForm_Main_0.method_1("Decrypting file: " + f_name); string indicatorBytes = data[0].ToString("x2") + data[1].ToString("x2") + data[2].ToString("x2"); if (indicatorBytes != "5a0d0a") //if (indicatorBytes != "5a0d0a" && indicatorBytes != "310d0a") { - GForm_Main_0.method_1("Not Compatible file!"); + if (Logs) GForm_Main_0.method_1("Not Compatible file!"); return; } @@ -184,6 +191,7 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) { byte[] header = { }; + //################################################################################################ if (Mode == 0x5a) { byte count = data[idx]; @@ -201,7 +209,7 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) header = Push(header, v); } } - + //################################################################################################ if (Mode == 0x31) { byte[] h_prefix = new byte[2]; @@ -213,7 +221,7 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) if (h_prefix[0] != 0x0d && h_prefix[1] != 0x0a) { - GForm_Main_0.method_1("header delimiter not found!"); + if (Logs) GForm_Main_0.method_1("header delimiter not found!"); return; } @@ -231,7 +239,7 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) } if (end_idx == -1) { - GForm_Main_0.method_1("field delimiter not found!"); + if (Logs) GForm_Main_0.method_1("field delimiter not found!"); return; } @@ -253,10 +261,11 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) { Console.WriteLine(h_prefix[0].ToString("X2") + h_prefix[1].ToString("X2")); Console.WriteLine(h_suffix[0].ToString("X2") + h_suffix[1].ToString("X2")); - GForm_Main_0.method_1("header prefix and suffix do not match"); + if (Logs) GForm_Main_0.method_1("header prefix and suffix do not match"); return; } } + //################################################################################################ if (i == 0) headers0 = header; if (i == 1) headers1 = header; @@ -342,28 +351,31 @@ public static void LoadRWD(string f_name, bool FullDecrypt, bool Saving) if (headers2[0] == 0xef) AdditionnalCanInfos = " (Gateway Module)"; //->38897-XXX-XXXX files //Print/Log Informations - GForm_Main_0.method_1("Firmware Start: 0x" + start.ToString("X")); - GForm_Main_0.method_1("Firmware Size: 0x" + size.ToString("X")); - GForm_Main_0.method_1("CanAddress: 0x" + CanAddress + AdditionnalCanInfos); - GForm_Main_0.method_1("Software Keys: 0x" + SoftwareKey); - GForm_Main_0.method_1("Supported Versions (and keys): "); - for (int i = 0; i < SuppportedVersions.Length; i++) GForm_Main_0.method_1(SuppportedVersions[i] + " (0x" + SuppportedFWKeys[i] + ")"); + if (Logs) + { + GForm_Main_0.method_1("Firmware Start: 0x" + start.ToString("X")); + GForm_Main_0.method_1("Firmware Size: 0x" + size.ToString("X")); + GForm_Main_0.method_1("CanAddress: 0x" + CanAddress + AdditionnalCanInfos); + GForm_Main_0.method_1("Software Keys: 0x" + SoftwareKey); + GForm_Main_0.method_1("Supported Versions (and keys): "); + for (int i = 0; i < SuppportedVersions.Length; i++) GForm_Main_0.method_1(SuppportedVersions[i] + " (0x" + SuppportedFWKeys[i] + ")"); + } //Perform FULL decryption (convert .rwd to .bin) - if (FullDecrypt) DecryptRWD(f_name, Saving); + if (FullDecrypt) DecryptRWD(f_name, Saving, Logs); } - private static void DecryptRWD(string f_name, bool Saving) + private static void DecryptRWD(string f_name, bool Saving, bool Logs) { part_number_prefix = get_part_number_prefix(f_name); - firmware_candidates = decrypt(part_number_prefix); + firmware_candidates = decrypt(part_number_prefix, Logs); if (firmware_candidates.Count == 0) { //try with a shorter part number GForm_Main_0.method_1("failed on long part number, trying truncated part number ..."); part_number_prefix = get_part_number_prefix(f_name, true); - firmware_candidates = decrypt(part_number_prefix); + firmware_candidates = decrypt(part_number_prefix, Logs); } if (firmware_candidates.Count == 0) @@ -391,10 +403,11 @@ private static void DecryptRWD(string f_name, bool Saving) firmware_candidates.Add(LastCandidate); } - if (firmware_candidates.Count > 1) GForm_Main_0.method_1("multiple sets of keys resulted in data containing the part number"); + if (Logs && firmware_candidates.Count > 1) GForm_Main_0.method_1("multiple sets of keys resulted in data containing the part number"); //################################################################### //################################################################### + BootloaderSum = 0; foreach (byte[] fc in firmware_candidates) { //Checksum location for SH7058 1mb rom file are located at 0x8400, it's a 1byte sum calculated from negative sum of the full binary @@ -403,30 +416,30 @@ private static void DecryptRWD(string f_name, bool Saving) if (fc.Length - 1 == 0xF7FFF || fc.Length - 1 == 0x1EFFFF || fc.Length - 1 == 0x26FFFF) { - int CheckLocation = 0; - if (fc.Length - 1 == 0xF7FFF) CheckLocation = 0x400; - if (fc.Length - 1 == 0x1EFFFF) CheckLocation = 0x12; //CONFIRMED GOOD LOCATION FOR FIRMWARE, FULL BIN LOCATION: 0x10012 - if (fc.Length - 1 == 0x26FFFF) CheckLocation = 0x1F03E6; //0x2003E6 0x1EFFFA in firmware or 0x001FFFFA in full bin - byte num = GetBootloaderSum(fc, CheckLocation); - byte num2 = GetNegativeChecksumFWBin(fc, CheckLocation); - int ThisSumInt = num; - ThisSumInt -= num2; - if (ThisSumInt < 0) ThisSumInt += 255; - byte ThisSum = (byte)ThisSumInt; - byte chk = fc[CheckLocation]; - /*Console.WriteLine("chk: " + chk.ToString("X2")); - Console.WriteLine("num2: " + num2.ToString("X2")); - Console.WriteLine("num: " + num.ToString("X2")); - Console.WriteLine("ThisSum: " + ThisSum.ToString("X2"));*/ - if (chk == ThisSum) - { - GForm_Main_0.method_1("checksums good!"); - BootloaderSum = num; - GForm_Main_0.method_1("Bootloader Sum are 0x" + BootloaderSum.ToString("X")); - } - else + int CheckLocation = GForm_Main_0.Class_Checksums_0.GetChecksumLocation(fc); + if (CheckLocation != 0) { - GForm_Main_0.method_1("checksums bad, could not get bootloader sum!"); + byte num = GetBootloaderSum(fc, CheckLocation); + byte num2 = GetNegativeChecksumFWBin(fc, CheckLocation); + int ThisSumInt = num; + ThisSumInt -= num2; + if (ThisSumInt < 0) ThisSumInt += 255; + byte ThisSum = (byte)ThisSumInt; + byte chk = fc[CheckLocation]; + /*Console.WriteLine("chk: " + chk.ToString("X2")); + Console.WriteLine("num2: " + num2.ToString("X2")); + Console.WriteLine("num: " + num.ToString("X2")); + Console.WriteLine("ThisSum: " + ThisSum.ToString("X2"));*/ + if (chk == ThisSum) + { + GForm_Main_0.method_1("checksums good!"); + BootloaderSum = num; + GForm_Main_0.method_1("Bootloader Sum are 0x" + BootloaderSum.ToString("X")); + } + else + { + GForm_Main_0.method_1("checksums bad, could not get bootloader sum!"); + } } } } @@ -768,7 +781,7 @@ private static void MakeEncoderArray() } } - private static List decrypt(string search_value) + private static List decrypt(string search_value, bool Logs) { //# sometimes there is an extra character after each character //# 37805-RBB-J530 -> 3377880550--RRBCBA--JA503000 @@ -781,8 +794,11 @@ private static List decrypt(string search_value) string search_exact = search_value.ToUpper(); string search_padded = search_value_padded.ToUpper(); - GForm_Main_0.method_1("Searching:"); - GForm_Main_0.method_1("'" + search_exact + "' and '" + search_padded + "'"); + if (Logs) + { + GForm_Main_0.method_1("Searching:"); + GForm_Main_0.method_1("'" + search_exact + "' and '" + search_padded + "'"); + } string[] operators = new string[8] { "fn:^", //XOR @@ -913,7 +929,7 @@ private static List decrypt(string search_value) if ((decrypted.Contains(search_exact) || decrypted.Contains(search_padded)) && !firmware_candidates_0.Contains(candidate)) { MakeEncoderArray(); - GForm_Main_0.method_Log("X"); + if (Logs) GForm_Main_0.method_Log("X"); firmware_candidates_0.Add(candidate); display_ciphers.Add(string.Format("(((i {0} {1}) {2} {3}) {4} {5}) & 0xFF", o1, k1_CMD, @@ -922,7 +938,7 @@ private static List decrypt(string search_value) } else { - GForm_Main_0.method_Log("."); + if (Logs) GForm_Main_0.method_Log("."); } Application.DoEvents(); } @@ -931,9 +947,13 @@ private static List decrypt(string search_value) GForm_Main_0.ResetProgressBar(); - foreach (string cipher in display_ciphers) { - GForm_Main_0.method_1(String.Format("cipher: {0}", cipher)); - } + if (Logs) + { + foreach (string cipher in display_ciphers) + { + GForm_Main_0.method_1(String.Format("cipher: {0}", cipher)); + } + } return firmware_candidates_0; } } diff --git a/Editortable.cs b/Editortable.cs index 409fe05..55fed1e 100644 --- a/Editortable.cs +++ b/Editortable.cs @@ -617,17 +617,40 @@ public void Editortable_Load(object sender, EventArgs e) public bool LoadDefinitionsFor(string string_9) { - ClassEditor_0.LoadSupportedECUDefinitions(); + //ClassEditor_0.LoadSupportedECUDefinitions(); + int DefinitionsFilesCount = 0; + List IndexLisst = new List(); for (int i = 0; i < ClassEditor_0.Ecus_Definitions_Compatible.Count; i++) { if (ClassEditor_0.Ecus_Definitions_Compatible[i] == string_9) { - ClassEditor_0.LoadThisECUDefinitions(string_9); + DefinitionsFilesCount++; + IndexLisst.Add(i); + //ClassEditor_0.LoadThisECUDefinitions(string_9); + //return true; + } + } - //foreach (string str2 in ClassEditor_0.DefinitionsName) this.NodesNameList.Add(str2); + if (DefinitionsFilesCount > 1) + { + GForm_SeveralDef GForm_SeveralDef_0 = new GForm_SeveralDef(); + GForm_SeveralDef_0.LoadSetValues(ref GForm_Main_0, string_9, IndexLisst); + DialogResult result = GForm_SeveralDef_0.ShowDialog(); + if (result == DialogResult.OK) + { + ClassEditor_0.LoadThisECUDefinitions(string_9, IndexLisst[GForm_SeveralDef_0.comboBox1.SelectedIndex]); return true; } + + //HERE + //ClassEditor_0.LoadThisECUDefinitions(string_9, IndexLisst[0]); + //return true; + } + if (DefinitionsFilesCount == 1) + { + ClassEditor_0.LoadThisECUDefinitions(string_9, IndexLisst[0]); + return true; } return false; @@ -1070,6 +1093,27 @@ public string ExtractECUNameFromThisFile(byte[] ThisFileBytes) return ECUName; } + public int ExtractECUNameLocationFromThisFile(byte[] ThisFileBytes) + { + int Locationn = -1; + for (int i = 0; i < ThisFileBytes.Length - 12; i++) + { + //37805- + if ((char)ThisFileBytes[i] == '3' + && (char)ThisFileBytes[i + 1] == '7' + && (char)ThisFileBytes[i + 2] == '8' + && (char)ThisFileBytes[i + 3] == '0' + && (char)ThisFileBytes[i + 4] == '5' + && (char)ThisFileBytes[i + 5] == '-' + && (char)ThisFileBytes[i + 10] != 'Z') + { + Locationn = i; + } + } + + return Locationn; + } + public void LoadThisFile(string ThisFilePath) { @@ -1106,7 +1150,7 @@ public void LoadThisFile(string ThisFilePath) DialogResult result = openFileDialog1.ShowDialog(); if (result == DialogResult.OK) { - Class_RWD.LoadRWD(openFileDialog1.FileName, true, false); + Class_RWD.LoadRWD(openFileDialog1.FileName, true, false, true); } } else @@ -1218,13 +1262,14 @@ private void getDifferencesInAllFirmwaresFilesToolStripMenuItem_Click(object sen private void extractAllBootloadersumByteFromAllFirmwaresFilesToolStripMenuItem_Click(object sender, EventArgs e) { - DarkMessageBox.Show(this, "Select the folder where all decrypted firmwares .bin are located.", "Select firmwares folder", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + //DarkMessageBox.Show(this, "Select the folder where all decrypted firmwares .bin are located.", "Select firmwares folder", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + DarkMessageBox.Show(this, "Select the folder where all RWD(.gz) files are located.", "Select firmwares folder", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); DialogResult result = folderBrowserDialog1.ShowDialog(); if (result == DialogResult.OK) { GForm_Main_0.Class_DefinitionMaker_0.FirmwareFolder = folderBrowserDialog1.SelectedPath; - GForm_Main_0.Class_DefinitionMaker_0.ExtractAllBootLoaderSum_1Mb(); + GForm_Main_0.Class_DefinitionMaker_0.ExtractAllBootLoaderSum(); } } @@ -1401,7 +1446,7 @@ private void generateDefinitionFileFromExtractedDefinitionToolStripMenuItem_Clic private void extractbinFileFromFPMToolStripMenuItem_Click(object sender, EventArgs e) { - GForm_ExtractSize GForm_ExtractSize_0 = new GForm_ExtractSize(); + /*GForm_ExtractSize GForm_ExtractSize_0 = new GForm_ExtractSize(); DialogResult result = GForm_ExtractSize_0.ShowDialog(); if (result == DialogResult.OK) { @@ -1409,7 +1454,8 @@ private void extractbinFileFromFPMToolStripMenuItem_Click(object sender, EventAr if (GForm_ExtractSize_0.comboBox1.SelectedIndex == 1) GForm_Main_0.Class_DefinitionMaker_0.ExtractMemorySize = 0x1EFFFF; if (GForm_ExtractSize_0.comboBox1.SelectedIndex == 2) GForm_Main_0.Class_DefinitionMaker_0.ExtractMemorySize = 0x26FFFF; GForm_Main_0.Class_DefinitionMaker_0.Extract("Bin"); - } + }*/ + GForm_Main_0.Class_DefinitionMaker_0.Extract("Bin"); } private void convertrwdTobinToolStripMenuItem_Click(object sender, EventArgs e) diff --git a/FlashToolTest.csproj b/FlashToolTest.csproj index 6f04446..10c2ab8 100644 --- a/FlashToolTest.csproj +++ b/FlashToolTest.csproj @@ -66,6 +66,7 @@ Component + @@ -78,6 +79,9 @@ + + Form + Form @@ -111,6 +115,9 @@ + + GForm_SeveralDef.cs + GForm_ExtractSize.cs diff --git a/GForm_Main.cs b/GForm_Main.cs index e72b516..4f25de4 100644 --- a/GForm_Main.cs +++ b/GForm_Main.cs @@ -39,9 +39,12 @@ public class GForm_Main : DarkForm public Class_DefinitionMaker Class_DefinitionMaker_0; private DarkComboBox darkComboBoxUnlockMode; private bool BadResponceReceived = false; + public Class_Checksums Class_Checksums_0; + public System.Windows.Forms.Timer Timer1 = new System.Windows.Forms.Timer(); public GForm_Main() { + this.Enabled = false; this.InitializeComponent(); @@ -51,7 +54,18 @@ public GForm_Main() GForm_Main_0 = this; + Timer1.Interval = 1000; + Timer1.Tick += new EventHandler(TimerEventProcessor); + Timer1.Start(); + } + + private void TimerEventProcessor(Object myObject, EventArgs myEventArgs) + { + Timer1.Stop(); + Editortable_0 = new Editortable(ref GForm_Main_0); + Class_Checksums_0 = new Class_Checksums(); + Class_Checksums_0.Load(ref GForm_Main_0); Class_RWD.Load(ref GForm_Main_0); @@ -59,10 +73,12 @@ public GForm_Main() Class_DefinitionMaker_0 = new Class_DefinitionMaker(ref GForm_Main_0); + Editortable_0.ClassEditor_0.LoadSupportedECUDefinitions(); + darkComboBoxUnlockMode.SelectedIndex = 0; + this.Enabled = true; } - private void method_0(string string_3) { if (this.darkTextBox_0.InvokeRequired) @@ -87,6 +103,10 @@ public void method_Log(string string_3) Editortable_0.method_Log(string_3); } + public void ClearLogs() + { + this.darkTextBox_0.Text = ""; + } public void method_1(string string_3) { @@ -1051,73 +1071,6 @@ private void method_16(object sender, EventArgs e) } } - public byte GetNegativeChecksumArea(byte[] byte_1, int Start, int ChecksumLocation) - { - byte b = 0; - for (int i = Start; i < byte_1.Length; i++) - { - if (i != ChecksumLocation) - { - b -= byte_1[i]; - } - } - return b; - } - - public byte[] VerifyChecksumFullBin(byte[] BinFileBytes) - { - //############################### - //Get Checksum and Fix it - byte[] BufferBytes = BinFileBytes; - int CheckLocation = 0; - if (BufferBytes.Length - 1 == 0xFFFFF) CheckLocation = 0x8400; //1mb-full - if (BufferBytes.Length - 1 == 0x1FFFFF) CheckLocation = 0x10012; //2mb-full - if (BufferBytes.Length - 1 == 0x27FFFF) CheckLocation = 0x2003E6; //4mb-full //0x3FFFFF - - byte num = BufferBytes[CheckLocation]; - byte num2 = GetNegativeChecksumArea(BufferBytes, 0, CheckLocation); - if (num != num2) - { - this.method_1("Checksum miss match."); - BufferBytes[CheckLocation] = num2; - this.method_1("Checksum fixed at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); - } - else - { - this.method_1("Checksum are good at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); - } - return BufferBytes; - } - - public byte[] VerifyChecksumFWBin(byte[] FWFileBytes) - { - //############################### - //Get Checksum and Fix it - byte[] BufferBytes = FWFileBytes; - int CheckLocation = 0; - if (BufferBytes.Length - 1 == 0xF7FFF) CheckLocation = 0x400; //1mb-fw -> 0x8400 in full bin but we dont have the bootloader 0x0000 to 0x8000 - if (BufferBytes.Length - 1 == 0x1EFFFF) CheckLocation = 0x12; //2mb-fw - if (BufferBytes.Length - 1 == 0x26FFFF) CheckLocation = 0x1F03E6; //4mb-fw - - byte num = Class_RWD.BootloaderSum; - byte num2 = Class_RWD.GetNegativeChecksumFWBin(BufferBytes, CheckLocation); - byte ThisSum = num; - ThisSum -= num2; - byte chk = BufferBytes[CheckLocation]; - if (chk != ThisSum) - { - this.method_1("Checksum miss match."); - BufferBytes[CheckLocation] = ThisSum; - this.method_1("Checksum fixed at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); - } - else - { - GForm_Main_0.method_1("checksum good at 0x" + CheckLocation.ToString("X") + " | Checksum: 0x" + num2.ToString("X2")); - } - return BufferBytes; - } - - private void method_17(object sender, EventArgs e) { if (GForm_Main.string_0.Length == 0) @@ -1147,7 +1100,7 @@ private void method_17(object sender, EventArgs e) //############################### //Get/Fix Checksums - byte_ToWrite = VerifyChecksumFullBin(byte_ToWrite); + byte_ToWrite = Class_Checksums_0.VerifyChecksumFullBin(byte_ToWrite); if (MessageBox.Show("Are you sure you want to write this file to ECU?", "Flash Tool", MessageBoxButtons.YesNo) == DialogResult.Yes) { @@ -1200,7 +1153,7 @@ private void darkButton3_Click(object sender, EventArgs e) WritingBinaryMode = false; //Decrypt firmware file and get needed variable (Decryption byte) - Class_RWD.LoadRWD(dialog.FileName, false, false); + Class_RWD.LoadRWD(dialog.FileName, false, false, true); //############################### //Get Checksum and Fix it -> checksums of rwd files should mostly always be fixed, no need to fix them! @@ -2384,7 +2337,7 @@ public void darkButton2_Click_1(object sender, EventArgs e) DialogResult result = openFileDialog1.ShowDialog(); if (result == DialogResult.OK) { - Class_RWD.LoadRWD(openFileDialog1.FileName, true, true); + Class_RWD.LoadRWD(openFileDialog1.FileName, true, true, true); } } @@ -2402,7 +2355,7 @@ public void darkButton3_Click_1(object sender, EventArgs e) string ThisR = gform.FileRWD; gform.Dispose(); - Class_RWD.LoadBIN(ThisB, ThisR); + Class_RWD.ConvertBIN2RWD(ThisB, ThisR); } } @@ -2419,7 +2372,7 @@ private void darkButton4_Click(object sender, EventArgs e) if ((FilesBytes.Length - 1) == 0xFFFFF) { - byte[] NewFilesBytes = VerifyChecksumFullBin(FilesBytes); + byte[] NewFilesBytes = Class_Checksums_0.VerifyChecksumFullBin(FilesBytes); if (NewFilesBytes != FilesBytes) { string NewPath = Path.GetDirectoryName(openFileDialog1.FileName) + @"\" + Path.GetFileNameWithoutExtension(openFileDialog1.FileName) + "_FixedChkSum.bin"; @@ -2441,7 +2394,7 @@ private void darkButton4_Click(object sender, EventArgs e) result = openFileDialog1.ShowDialog(); if (result == DialogResult.OK) { - Class_RWD.LoadRWD(openFileDialog1.FileName, true, false); + Class_RWD.LoadRWD(openFileDialog1.FileName, true, false, true); } } else @@ -2449,7 +2402,7 @@ private void darkButton4_Click(object sender, EventArgs e) Class_RWD.BootloaderSum = (byte)BtSumInt; } - byte[] NewFilesBytes = VerifyChecksumFWBin(FilesBytes); + byte[] NewFilesBytes = Class_Checksums_0.VerifyChecksumFWBin(FilesBytes); if (NewFilesBytes != FilesBytes) { string NewPath = Path.GetDirectoryName(FilenameBuffer) + @"\" + Path.GetFileNameWithoutExtension(FilenameBuffer) + "_FixedChkSum.bin"; diff --git a/GForm_SeveralDef.cs b/GForm_SeveralDef.cs new file mode 100644 index 0000000..40cc95b --- /dev/null +++ b/GForm_SeveralDef.cs @@ -0,0 +1,127 @@ +using System; +using System.Diagnostics; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Runtime.CompilerServices; +using System.Windows.Forms; +using DarkUI.Controls; +using DarkUI.Forms; + + +public class GForm_SeveralDef : DarkForm +{ + public GForm_Main GForm_Main_0; + + public GForm_SeveralDef() + { + this.InitializeComponent(); + } + + public void LoadSetValues(ref GForm_Main GForm_Main_1, string ThisEcuName, List IndexxList) + { + GForm_Main_0 = GForm_Main_1; + label3.Text = "More than one Definition file as been found for '" + ThisEcuName + "', please select which one we use:"; + + for (int i = 0; i < IndexxList.Count; i++) + { + int ThisIndeex = IndexxList[i]; + string ThisItem = GForm_Main_0.Editortable_0.ClassEditor_0.Ecus_Definitions_Compatible[ThisIndeex] + " in: " + GForm_Main_0.Editortable_0.ClassEditor_0.Ecus_Definitions_Compatible_filename[ThisIndeex].Replace(Application.StartupPath, ""); + comboBox1.Items.Add(ThisItem); + } + //comboBox1.Items.Add(); + comboBox1.SelectedIndex = 0; + } + + private void method_0(object sender, EventArgs e) + { + base.DialogResult = DialogResult.OK; + base.Close(); + } + + private void method_1(object sender, EventArgs e) + { + + } + + private void method_2(object sender, EventArgs e) + { + base.DialogResult = DialogResult.Abort; + base.Close(); + } + + protected virtual void Dispose(bool disposing) + { + if (disposing && this.icontainer_0 != null) + { + this.icontainer_0.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.darkButton_0 = new DarkUI.Controls.DarkButton(); + this.label3 = new System.Windows.Forms.Label(); + this.comboBox1 = new System.Windows.Forms.ComboBox(); + this.SuspendLayout(); + // + // darkButton_0 + // + this.darkButton_0.Checked = false; + this.darkButton_0.DialogResult = System.Windows.Forms.DialogResult.OK; + this.darkButton_0.Location = new System.Drawing.Point(206, 70); + this.darkButton_0.Name = "darkButton_0"; + this.darkButton_0.Size = new System.Drawing.Size(75, 23); + this.darkButton_0.TabIndex = 4; + this.darkButton_0.Text = "Accept"; + this.darkButton_0.Click += new System.EventHandler(this.method_0); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label3.ForeColor = System.Drawing.SystemColors.ControlLight; + this.label3.Location = new System.Drawing.Point(13, 15); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(392, 13); + this.label3.TabIndex = 10; + this.label3.Text = "More than one Definition file as been found for \'\', please select which one we us" + + "e:"; + this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // comboBox1 + // + this.comboBox1.FormattingEnabled = true; + this.comboBox1.Location = new System.Drawing.Point(9, 38); + this.comboBox1.Name = "comboBox1"; + this.comboBox1.Size = new System.Drawing.Size(471, 21); + this.comboBox1.TabIndex = 11; + // + // GForm_SeveralDef + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(488, 110); + this.ControlBox = false; + this.Controls.Add(this.comboBox1); + this.Controls.Add(this.label3); + this.Controls.Add(this.darkButton_0); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "GForm_SeveralDef"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "Several Definitions Found!"; + this.Load += new System.EventHandler(this.method_1); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + [CompilerGenerated] + private IContainer icontainer_0; + private DarkButton darkButton_0; + private Label label3; + public ComboBox comboBox1; +} diff --git a/GForm_SeveralDef.resx b/GForm_SeveralDef.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/GForm_SeveralDef.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/bin/Debug/Definitions/Generated/37805-5A2-A160.txt b/bin/Debug/Definitions/Generated/37805-5A2-A160_Honda_Accord_2013.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5A2-A160.txt rename to bin/Debug/Definitions/Generated/37805-5A2-A160_Honda_Accord_2013.txt index 66c76c9..445ae73 100644 --- a/bin/Debug/Definitions/Generated/37805-5A2-A160.txt +++ b/bin/Debug/Definitions/Generated/37805-5A2-A160_Honda_Accord_2013.txt @@ -1,1305 +1,1305 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5A2-A160 -37805-5A2-A780 -37805-5A2-A060 -37805-5A2-A880 -37805-5A2-A690 -37805-5A2-A590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x010012 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x3EFB0 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3EFB2 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3EFB4 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3F002 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4439E -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x443A0 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x44412 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x44446 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x44448 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x455E1 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x455E3 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x455E8 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x455EF -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x455F1 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x455F6 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x455F8 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4562E -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45630 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45631 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45632 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45635 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45636 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45637 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45639 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4563C -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4563F -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45640 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45641 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x45642 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45644 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4658C -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x476F6 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x476F8 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48EAE -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48EB0 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48EC4 -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48ED6 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x48EDE -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4BF88 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4BF78 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4BFE4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4BFE0 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4C012 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4C08C -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4C08E -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D7D8 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x59E84 -Name:Target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x5A6FC -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4565E -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4C49C -Name:Closed loop derivative term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C49E -Name:Closed loop integral term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C4A0 -Name:Closed loop proportion term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C4D0 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4C4F4 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4EAA4 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4EAA6 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x57F74 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x57F76 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1B2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1B208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1B2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1B2094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1B2232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1B20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1B20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4A1F8 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B0EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CC24 -Name:VTC base duty cycle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1E -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA18 -Name:Launch min rpm for ign retard and fuel enrichment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1A -Name:Launch rpm ign retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1C -Name:Launch rpm additional fuel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CC8C -Name:Long term fuel trim error limit low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CC8A -Name:Long term fuel trim error limit high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B954 -Name:Active fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B956 -Name:Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B957 -Name:Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B960 -Name:Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B962 -Name:Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B965 -Name:Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B966 -Name:Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B968 -Name:Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B964 -Name:Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B970 -Name:Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B971 -Name:Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B972 -Name:Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B974 -Name:Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B976 -Name:Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B978 -Name:Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97A -Name:Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97C -Name:Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97E -Name:Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B980 -Name:Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B982 -Name:Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B984 -Name:Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B986 -Name:Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B988 -Name:Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B959 -Name:Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95A -Name:Maximum cam angle delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95C -Name:Maximum load delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95E -Name:Maximum rpm delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96A -Name:Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96C -Name:Delay in lambda reading -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96D -Name:Active Fuel Smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA28 -Name:Active AFM fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2A -Name:Active AFM Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2B -Name:Active AFM Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2C -Name:Active AFM Use corrected wideband -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2D -Name:Active AFM Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA34 -Name:Active AFM Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA36 -Name:Active AFM Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA39 -Name:Active AFM Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA41 -Name:Active AFM Fuel Smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A995 -Name:RSSWGOF121 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x46862 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x48EE8 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4B834 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4B87C -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4B8C4 -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4B824 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4BCC0 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4BCB8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4BCD0 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4BCC8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4BCE0 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4BCD8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4BCF0 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4BD54 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C39E -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4D730 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4D720 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4D75C -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4D74C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4D788 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4D778 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x181018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x180078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x463F6 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x46416 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x46406 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x46426 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x465A6 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x465B2 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x469CC -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4917A -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4BD74 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4BD8C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4BD7E -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4BD96 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x184470 -ROMLocationX:0x184600 -ROMLocationY:0x184790 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x183FC0 -ROMLocationX:0x184150 -ROMLocationY:0x1842E0 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1869F0 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x186860 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x184920 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1858C0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x186EC8 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x54FC8 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x186BA8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x54FBE -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x5A4F0 -Name:VTC WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x5A4C8 -Name:VTC WOT high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x5A518 -Name:VTC WOT high 2 -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x5A540 -Name:VTC WOT low 2 -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x56B7C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x56B86 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x56BE4 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x56BDA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x56C06 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x56BFC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x56C26 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x56C1C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x56C46 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x56C3C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x56C7C -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4EFFA -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4EFE8 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x4F0FC -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4F07C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4F10C -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4F08C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x53ADC -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x53AD2 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x57D6A -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x53A90 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x53AE6 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x53A98 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x53AEE -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x4C154 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x50B98 -Name:Injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x50EE0 -Name:Injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F6D2 -Name:KWOT low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F6DE -Name:KWOT high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x54FBE -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x54FC8 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x5A7DC -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x5A7D8 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x54FB6 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4EA82 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1B20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1B2258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1B2244 -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18201C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x183020 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Accord_2013_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5A2-A160 +37805-5A2-A780 +37805-5A2-A060 +37805-5A2-A880 +37805-5A2-A690 +37805-5A2-A590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x010012 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x3EFB0 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3EFB2 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3EFB4 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3F002 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4439E +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x443A0 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x44412 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x44446 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x44448 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x455E1 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x455E3 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x455E8 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x455EF +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x455F1 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x455F6 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x455F8 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4562E +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45630 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45631 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45632 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45635 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45636 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45637 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45639 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4563C +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4563F +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45640 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45641 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x45642 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45644 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4658C +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x476F6 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x476F8 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48EAE +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48EB0 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48EC4 +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48ED6 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x48EDE +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4BF88 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4BF78 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4BFE4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4BFE0 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4C012 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4C08C +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4C08E +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D7D8 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x59E84 +Name:Target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x5A6FC +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4565E +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4C49C +Name:Closed loop derivative term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C49E +Name:Closed loop integral term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C4A0 +Name:Closed loop proportion term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C4D0 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4C4F4 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4EAA4 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4EAA6 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x57F74 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x57F76 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1B2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1B208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1B2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1B2094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1B2232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1B20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1B20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4A1F8 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B0EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CC24 +Name:VTC base duty cycle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1E +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA18 +Name:Launch min rpm for ign retard and fuel enrichment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1A +Name:Launch rpm ign retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1C +Name:Launch rpm additional fuel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CC8C +Name:Long term fuel trim error limit low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CC8A +Name:Long term fuel trim error limit high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B954 +Name:Active fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B956 +Name:Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B957 +Name:Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B960 +Name:Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B962 +Name:Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B965 +Name:Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B966 +Name:Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B968 +Name:Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B964 +Name:Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B970 +Name:Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B971 +Name:Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B972 +Name:Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B974 +Name:Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B976 +Name:Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B978 +Name:Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97A +Name:Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97C +Name:Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97E +Name:Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B980 +Name:Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B982 +Name:Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B984 +Name:Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B986 +Name:Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B988 +Name:Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B959 +Name:Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95A +Name:Maximum cam angle delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95C +Name:Maximum load delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95E +Name:Maximum rpm delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96A +Name:Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96C +Name:Delay in lambda reading +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96D +Name:Active Fuel Smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA28 +Name:Active AFM fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2A +Name:Active AFM Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2B +Name:Active AFM Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2C +Name:Active AFM Use corrected wideband +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2D +Name:Active AFM Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA34 +Name:Active AFM Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA36 +Name:Active AFM Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA39 +Name:Active AFM Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA41 +Name:Active AFM Fuel Smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A995 +Name:RSSWGOF121 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x46862 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x48EE8 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4B834 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4B87C +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4B8C4 +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4B824 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4BCC0 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4BCB8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4BCD0 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4BCC8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4BCE0 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4BCD8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4BCF0 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4BD54 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C39E +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4D730 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4D720 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4D75C +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4D74C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4D788 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4D778 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x181018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x180078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x463F6 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x46416 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x46406 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x46426 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x465A6 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x465B2 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x469CC +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4917A +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4BD74 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4BD8C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4BD7E +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4BD96 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x184470 +ROMLocationX:0x184600 +ROMLocationY:0x184790 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x183FC0 +ROMLocationX:0x184150 +ROMLocationY:0x1842E0 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1869F0 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x186860 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x184920 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1858C0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x186EC8 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x54FC8 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x186BA8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x54FBE +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x5A4F0 +Name:VTC WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x5A4C8 +Name:VTC WOT high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x5A518 +Name:VTC WOT high 2 +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x5A540 +Name:VTC WOT low 2 +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x56B7C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x56B86 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x56BE4 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x56BDA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x56C06 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x56BFC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x56C26 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x56C1C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x56C46 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x56C3C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x56C7C +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4EFFA +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4EFE8 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x4F0FC +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4F07C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4F10C +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4F08C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x53ADC +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x53AD2 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x57D6A +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x53A90 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x53AE6 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x53A98 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x53AEE +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x4C154 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x50B98 +Name:Injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x50EE0 +Name:Injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F6D2 +Name:KWOT low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F6DE +Name:KWOT high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x54FBE +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x54FC8 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x5A7DC +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x5A7D8 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x54FB6 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4EA82 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1B20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1B2258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1B2244 +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18201C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x183020 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AA-A080.txt b/bin/Debug/Definitions/Generated/37805-5AA-A080_Honda_Civic_2017.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AA-A080.txt rename to bin/Debug/Definitions/Generated/37805-5AA-A080_Honda_Civic_2017.txt index 67808f1..842f4b8 100644 --- a/bin/Debug/Definitions/Generated/37805-5AA-A080.txt +++ b/bin/Debug/Definitions/Generated/37805-5AA-A080_Honda_Civic_2017.txt @@ -1,1265 +1,1265 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AA-A080 -37805-5AA-C080 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x2003E6 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x80210EF8 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80210F00 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80210F02 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C44 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C45 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C46 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C4F -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C8A -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C8C -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C90 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C97 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C99 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C9D -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C9E -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F04 -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211F06 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021266A -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021266C -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021266D -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021266E -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212672 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212673 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212676 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021267B -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021267C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021267D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021267E -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212D6A -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802310DC -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802310DE -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802316D8 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802316E8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B34 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80231B4E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B50 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B86 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231D00 -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023235C -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8023235E -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80232366 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80244420 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80244422 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C75 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C9C -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211CA0 -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211CA4 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025789E -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023142C -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264D8C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264D8A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264D88 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264D8D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802434C2 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264D92 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026511A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211CAA -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265150 -Name:Anti-lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265152 -Name:Anti-lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021119D -Name:FITMPRGVER -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213884 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213882 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213880 -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387E -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387C -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387A -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026516C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265170 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265172 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026516D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026516E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802651BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80244842 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D3C -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D34 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D38 -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261E9C -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261EA0 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x80265151 -Name:Use Hondata 4 bar MAP sensors -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264D80 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264E38 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xqoNumAddress -Name:1001j -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80232176 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8023216E -Unit1:Rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80232186 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8023217E -Unit1:Rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80232196 -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321A6 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321C0 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80234672 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80235B12 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80235AD4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80235B22 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80235AE4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80235B32 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80235AF4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80237326 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80237314 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x802427FC -Name:Water temperature ignition compensation hot high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242810 -Name:Water temperature ignition compensation hot low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242824 -Name:Water temperature ignition compensation cold high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242838 -Name:Water temperature ignition compensation cold low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80212496 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021249E -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213D5C -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213DAC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213D6C -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213DBC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214D26 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321CE -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802321E6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802321D8 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802321F0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8022CF1A -ROMLocationX:0x8022D19A -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023BB04 -Name:Knock retard -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80237DD4 -ROMLocationX:0x802378FC -ROMLocationY:0x802375DC -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C86A -ROMLocationX:0x8023CEAA -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80249F7E -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80249FA6 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80214B10 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80230DF0 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802324B0 -ROMLocationX:0x8023244C -Name:TC max boost (IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80240C52 -ROMLocationX:0x80241292 -Name:Ignition correction -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023A9B0 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802314CA -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80241EE2 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242072 -Name:Ignition (split) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024927A -Name:Target boost pressure -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802323E8 -Name:TC max boost (PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023D80C -Name:Air charge efficiency -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022B89A -Name:TC max boost (EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80242E82 -Name:IGRLMTETACH -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D80C -Name:ETACVTCH1 -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80230508 -Name:Throttle position at the time of the optimum boost -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80230530 -Name:Max throttle limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80230558 -Name:Max throttle limit request -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80259386 -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249C04 -Name:Cat protect upper air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80249E70 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249D94 -ROMLocationX:0x80249C04 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023E928 -Name:EGT prediction MAP by air intake -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022B410 -Name:After CAT back pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024542A -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8024542A -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802427C0 -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802427B6 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802380F4 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264DA0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264DEE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80264DDC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x80264E4C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80264E5C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80264E68 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264E80 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264EC2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80265128 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80265144 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80251C14 -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80256A4E -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80251BC4 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802569FE -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025069C -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80251D24 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80254EFA -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80256B7C -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026518C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802651AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802651DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80243EF0 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80244210 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80243502 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8024350C -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265160 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80239AFA -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80239E42 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E2D8 -ROMLocationX:0x8022E468 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022E5F8 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022E788 -ROMLocationX:0x8022E918 -Name:Target fuel pressure map 3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022EEEA -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E788 -Name:Target fuel pressure map 4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022EF12 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E918 -Name:Target fuel pressure map 5 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022EF3A -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80238E4E -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80253C3A -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249226 -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2017_EX-T_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AA-A080 +37805-5AA-C080 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x2003E6 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x80210EF8 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80210F00 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80210F02 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C44 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C45 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C46 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C4F +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C8A +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C8C +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C90 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C97 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C99 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C9D +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C9E +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F04 +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211F06 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021266A +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021266C +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021266D +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021266E +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212672 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212673 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212676 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021267B +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021267C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021267D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021267E +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212D6A +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802310DC +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802310DE +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802316D8 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802316E8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B34 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80231B4E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B50 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B86 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231D00 +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023235C +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8023235E +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80232366 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80244420 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80244422 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C75 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C9C +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211CA0 +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211CA4 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025789E +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023142C +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264D8C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264D8A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264D88 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264D8D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802434C2 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264D92 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026511A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211CAA +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265150 +Name:Anti-lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265152 +Name:Anti-lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021119D +Name:FITMPRGVER +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213884 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213882 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213880 +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387E +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387C +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387A +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026516C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265170 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265172 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026516D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026516E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802651BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80244842 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D3C +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D34 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D38 +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261E9C +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261EA0 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x80265151 +Name:Use Hondata 4 bar MAP sensors +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264D80 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264E38 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xqoNumAddress +Name:1001j +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80232176 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8023216E +Unit1:Rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80232186 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8023217E +Unit1:Rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80232196 +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321A6 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321C0 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80234672 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80235B12 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80235AD4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80235B22 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80235AE4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80235B32 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80235AF4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80237326 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80237314 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x802427FC +Name:Water temperature ignition compensation hot high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242810 +Name:Water temperature ignition compensation hot low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242824 +Name:Water temperature ignition compensation cold high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242838 +Name:Water temperature ignition compensation cold low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80212496 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021249E +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213D5C +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213DAC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213D6C +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213DBC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214D26 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321CE +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802321E6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802321D8 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802321F0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8022CF1A +ROMLocationX:0x8022D19A +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023BB04 +Name:Knock retard +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80237DD4 +ROMLocationX:0x802378FC +ROMLocationY:0x802375DC +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C86A +ROMLocationX:0x8023CEAA +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80249F7E +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80249FA6 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80214B10 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80230DF0 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802324B0 +ROMLocationX:0x8023244C +Name:TC max boost (IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80240C52 +ROMLocationX:0x80241292 +Name:Ignition correction +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023A9B0 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802314CA +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80241EE2 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242072 +Name:Ignition (split) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024927A +Name:Target boost pressure +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802323E8 +Name:TC max boost (PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023D80C +Name:Air charge efficiency +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022B89A +Name:TC max boost (EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80242E82 +Name:IGRLMTETACH +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D80C +Name:ETACVTCH1 +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80230508 +Name:Throttle position at the time of the optimum boost +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80230530 +Name:Max throttle limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80230558 +Name:Max throttle limit request +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80259386 +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249C04 +Name:Cat protect upper air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80249E70 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249D94 +ROMLocationX:0x80249C04 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023E928 +Name:EGT prediction MAP by air intake +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022B410 +Name:After CAT back pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024542A +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8024542A +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802427C0 +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802427B6 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802380F4 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264DA0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264DEE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80264DDC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x80264E4C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80264E5C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80264E68 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264E80 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264EC2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80265128 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80265144 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80251C14 +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80256A4E +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80251BC4 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802569FE +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025069C +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80251D24 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80254EFA +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80256B7C +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026518C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802651AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802651DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80243EF0 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80244210 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80243502 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8024350C +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265160 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80239AFA +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80239E42 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E2D8 +ROMLocationX:0x8022E468 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022E5F8 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022E788 +ROMLocationX:0x8022E918 +Name:Target fuel pressure map 3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022EEEA +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E788 +Name:Target fuel pressure map 4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022EF12 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E918 +Name:Target fuel pressure map 5 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022EF3A +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80238E4E +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80253C3A +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249226 +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AA-A580.txt b/bin/Debug/Definitions/Generated/37805-5AA-A580_Honda_Civic_2016_2017.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AA-A580.txt rename to bin/Debug/Definitions/Generated/37805-5AA-A580_Honda_Civic_2016_2017.txt index 5ad5378..110d43e 100644 --- a/bin/Debug/Definitions/Generated/37805-5AA-A580.txt +++ b/bin/Debug/Definitions/Generated/37805-5AA-A580_Honda_Civic_2016_2017.txt @@ -1,1266 +1,1266 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AA-A580 -37805-5AA-A680 -37805-5AA-C680 -37805-5AA-C580 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x80210EF4 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80210EFC -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80210EFE -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C40 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C41 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C42 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C4B -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C86 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C88 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C8C -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C93 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C95 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211C99 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C9A -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F00 -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211F02 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80212666 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80212668 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212669 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021266A -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021266E -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021266F -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212672 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212677 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212678 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212679 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021267A -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212D66 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802310D8 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802310DA -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802316D4 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802316E4 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B30 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80231B4A -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B4C -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231B82 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80231CFC -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8024441C -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8024441E -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C71 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C98 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211C9C -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211CA0 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025789A -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80231428 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264B8C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80264B8A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80264B88 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80264B8D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802434BE -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264B92 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211CA6 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F50 -Name:Rolling anti-lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F52 -Name:Anti-lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211199 -Name:FITMPRGVER -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213880 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387E -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387C -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021387A -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213878 -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213876 -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F6C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F70 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F72 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FC0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FC2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FB8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F6D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264F6E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FBA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FBC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80264FBE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8024483E -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D38 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D30 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261D34 -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261E98 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80261E9C -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x80264B80 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264C38 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80232172 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80232182 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80232192 -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321A2 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321BC -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023466E -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80235B0E -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80235B1E -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80235B2E -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237322 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802427F8 -Name:Water temperature ignition compensation hot high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024280C -Name:Water temperature ignition compensation hot low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242820 -Name:Water temperature ignition compensation cold high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80242834 -Name:Water temperature ignition compensation cold low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80212492 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021249A -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213D58 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213D68 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214D22 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321CA -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802321D4 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022CF16 -ROMLocationX:0x8022D196 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023BB00 -Name:Knock retard -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80237DD0 -ROMLocationX:0x802378F8 -ROMLocationY:0x802375D8 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C866 -ROMLocationX:0x8023CEA6 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80249F7A -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214B0C -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80230DEC -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802324AC -ROMLocationX:0x80232448 -Name:TC max boost (IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023A9AC -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802314C6 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80241EDE -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024206E -Name:Ignition (split) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249276 -Name:Target boost pressure -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802323E4 -Name:TC max boost (PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023DDA8 -Name:Air charge efficiency -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022B896 -Name:TC max boost (EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80242E7E -Name:IGRLMTETACH -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DDA8 -Name:ETACVTCH1 -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80230504 -Name:Throttle position at the time of the optimum boost -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023052C -Name:Max throttle limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80230554 -Name:Max throttle limit request -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80259382 -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249C00 -Name:Cat protect upper air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249D90 -ROMLocationX:0x80249C00 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023E924 -Name:EGT prediction MAP by air intake -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022B40C -Name:After CAT back pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80245426 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802427BC -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802427B2 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802380F0 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264BA0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264BEE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264C4C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264C68 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264C80 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264CC2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264F28 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264F44 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80251C10 -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80256A4A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80251BC0 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802569FA -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802509B8 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80255216 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80257E6A -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80257C12 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802580C2 -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025831A -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80258572 -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802587CA -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80258A22 -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80258C7A -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80258ED2 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025912A -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264F8C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264FAE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264FDA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80243EEC -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024420C -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802434FE -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80264F60 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80239AF6 -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80239E3E -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E2D4 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022E464 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022E5F4 -Name:Target fuel pressure map 3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E784 -Name:Target fuel pressure map 4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022E914 -Name:Target fuel pressure map 5 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80238E4A -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80253C36 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80249222 -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2016_2017_EX-L, EX-T_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AA-A580 +37805-5AA-A680 +37805-5AA-C680 +37805-5AA-C580 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x80210EF4 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80210EFC +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80210EFE +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C40 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C41 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C42 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C4B +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C86 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C88 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C8C +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C93 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C95 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211C99 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C9A +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F00 +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211F02 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80212666 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80212668 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212669 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021266A +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021266E +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021266F +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212672 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212677 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212678 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212679 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021267A +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212D66 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802310D8 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802310DA +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802316D4 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802316E4 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B30 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80231B4A +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B4C +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231B82 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80231CFC +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8024441C +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8024441E +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C71 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C98 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211C9C +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211CA0 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025789A +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80231428 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264B8C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80264B8A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80264B88 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80264B8D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802434BE +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264B92 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211CA6 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F50 +Name:Rolling anti-lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F52 +Name:Anti-lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211199 +Name:FITMPRGVER +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213880 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387E +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387C +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021387A +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213878 +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213876 +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F6C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F70 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F72 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FC0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FC2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FB8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F6D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264F6E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FBA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FBC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80264FBE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8024483E +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D38 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D30 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261D34 +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261E98 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80261E9C +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x80264B80 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264C38 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80232172 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80232182 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80232192 +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321A2 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321BC +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023466E +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80235B0E +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80235B1E +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80235B2E +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237322 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802427F8 +Name:Water temperature ignition compensation hot high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024280C +Name:Water temperature ignition compensation hot low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242820 +Name:Water temperature ignition compensation cold high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80242834 +Name:Water temperature ignition compensation cold low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80212492 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021249A +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213D58 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213D68 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214D22 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321CA +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802321D4 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022CF16 +ROMLocationX:0x8022D196 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023BB00 +Name:Knock retard +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80237DD0 +ROMLocationX:0x802378F8 +ROMLocationY:0x802375D8 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C866 +ROMLocationX:0x8023CEA6 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80249F7A +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214B0C +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80230DEC +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802324AC +ROMLocationX:0x80232448 +Name:TC max boost (IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023A9AC +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802314C6 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80241EDE +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024206E +Name:Ignition (split) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249276 +Name:Target boost pressure +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802323E4 +Name:TC max boost (PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023DDA8 +Name:Air charge efficiency +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022B896 +Name:TC max boost (EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80242E7E +Name:IGRLMTETACH +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DDA8 +Name:ETACVTCH1 +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80230504 +Name:Throttle position at the time of the optimum boost +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023052C +Name:Max throttle limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80230554 +Name:Max throttle limit request +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80259382 +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249C00 +Name:Cat protect upper air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249D90 +ROMLocationX:0x80249C00 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023E924 +Name:EGT prediction MAP by air intake +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022B40C +Name:After CAT back pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80245426 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802427BC +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802427B2 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802380F0 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264BA0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264BEE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264C4C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264C68 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264C80 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264CC2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264F28 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264F44 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80251C10 +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80256A4A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80251BC0 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802569FA +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802509B8 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80255216 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80257E6A +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80257C12 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802580C2 +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025831A +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80258572 +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802587CA +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80258A22 +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80258C7A +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80258ED2 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025912A +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264F8C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264FAE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264FDA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80243EEC +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024420C +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802434FE +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80264F60 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80239AF6 +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80239E3E +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E2D4 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022E464 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022E5F4 +Name:Target fuel pressure map 3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E784 +Name:Target fuel pressure map 4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022E914 +Name:Target fuel pressure map 5 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80238E4A +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80253C36 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80249222 +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AA-A640.txt b/bin/Debug/Definitions/Generated/37805-5AA-A640_Honda_Civic_2016_2017.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AA-A640.txt rename to bin/Debug/Definitions/Generated/37805-5AA-A640_Honda_Civic_2016_2017.txt index 2c6ea0a..7357846 100644 --- a/bin/Debug/Definitions/Generated/37805-5AA-A640.txt +++ b/bin/Debug/Definitions/Generated/37805-5AA-A640_Honda_Civic_2016_2017.txt @@ -1,1425 +1,1425 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AA-A640 -37805-5AA-A540 -37805-5AA-A040 -37805-5AA-C550 -37805-5AA-C650 -37805-5AA-X550 -37805-5AA-K560 -37805-5AA-K660 -37805-5AA-K760 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x2003E2 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8020D8A8 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8020D8B0 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020D8B2 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E5D4 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E5D5 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E5D6 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E5DF -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E61A -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E61C -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E620 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E627 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E629 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E62D -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E62E -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E894 -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8020E896 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8020EFFA -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8020EFFC -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020EFFD -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020EFFE -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020F002 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020F003 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020F006 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020F00B -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020F00C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020F00D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020F00E -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020F6FA -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022C6F8 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022C6FA -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022CCC8 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022CCD8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022D124 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D13E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022D140 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022D16E -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8022D2E8 -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022D944 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022D946 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022D94E -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E4EC -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8023E4EE -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8025426D -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80254294 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80254296 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80254298 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8020E605 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E62C -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E630 -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020E634 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80251C4E -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022CA48 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801F828D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8023D5A2 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F8292 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8020E63A -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F8650 -Name:Rolling anti-lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F8652 -Name:Anti-lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101C8 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101C6 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101C4 -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101C2 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101C0 -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802101BE -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F866C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F8670 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F8672 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F866D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F866E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801F86BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8023E8FA -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025C060 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025C058 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025C05C -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025C1C0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025C1C4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x801F8280 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801F8338 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x8022D3F6 -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D356 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D45E -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D4A6 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D4EE -Name:Cranking (seq mode) wall deposit ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D44E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D75E -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D756 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D76E -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D766 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D77E -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D78E -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D7A8 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022FC5A -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802310FA -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802310BC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023110A -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802310CC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023111A -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802310DC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023290E -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802328FC -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x8023C8DC -Name:Water temperature ignition compensation hot high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C8F0 -Name:Water temperature ignition compensation hot low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C904 -Name:Water temperature ignition compensation cold high load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C918 -Name:Water temperature ignition compensation cold low load -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8020EE26 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8020EE2E -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802105F8 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80210648 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80210608 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80210658 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802115C2 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022D7B6 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D7CE -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022D7C0 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022D7D8 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802292CA -ROMLocationX:0x8022954A -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236D6C -Name:Knock retard -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802333BC -ROMLocationX:0x80232EE4 -ROMLocationY:0x80232BC4 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237AD2 -ROMLocationX:0x80238112 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024433A -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80244362 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802113AC -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80239014 -Name:Air charge efficiency -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022C40C -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022DA98 -ROMLocationX:0x8022DA34 -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022DAFC -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8023B0C6 -ROMLocationX:0x8023B706 -Name:Ignition correction -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80235C50 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022CAE6 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024BF58 -Name:VTC intake WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80250D92 -Name:VTC exhaust WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8024C9EE -Name:Exhaust cam angle -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8024A0D0 -Name:Intake cam angle -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C036 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C356 -Name:Ignition (split) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80243638 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022D9D0 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8022DB10 -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x80227C4A -Name:TC max boost(EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802297EA -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023C8A0 -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023C896 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023CF62 -Name:IGRLMTETACH -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80238A74 -Name:ETACVTCH1 -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022BB24 -Name:Throttle position at the time of the optimum boost -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022BB4C -Name:Max throttle limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022BB74 -Name:Max throttle limit request -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80253736 -Name:Basic drving force -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253C68 -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80243FC0 -Name:Cat protect upper air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8024422C -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80244150 -ROMLocationX:0x80243FC0 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80239B90 -Name:EGT prediction MAP by air intake -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802277C0 -Name:After CAT back pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F7D2 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8023F7D2 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802336DC -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F82EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801F82DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x801F82A0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F834C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801F835C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801F8368 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F8380 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F83C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F8628 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F8644 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025221E -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253B00 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80251FC6 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253AD8 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80252476 -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253B28 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802526CE -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253B50 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80252926 -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253B78 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80252B7E -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253BA0 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80252DD6 -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253BC8 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025302E -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253BF0 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80253286 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253C18 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802534DE -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80253C40 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024BFA8 -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80250DE2 -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80250D92 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024BF58 -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024AD50 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8024C0B8 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024F5AE -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80250F10 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801F868C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F86AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F86DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023DFBC -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023E2DC -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801F8660 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80234DC2 -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023510A -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022B1CC -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022B35C -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80234116 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8024DFCE -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802435E4 -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2016_2017_EX-L, EX-T, Touring_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AA-A640 +37805-5AA-A540 +37805-5AA-A040 +37805-5AA-C550 +37805-5AA-C650 +37805-5AA-X550 +37805-5AA-K560 +37805-5AA-K660 +37805-5AA-K760 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x2003E2 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8020D8A8 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8020D8B0 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020D8B2 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E5D4 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E5D5 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E5D6 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E5DF +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E61A +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E61C +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E620 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E627 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E629 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E62D +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E62E +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E894 +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8020E896 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8020EFFA +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8020EFFC +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020EFFD +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020EFFE +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020F002 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020F003 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020F006 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020F00B +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020F00C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020F00D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020F00E +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020F6FA +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022C6F8 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022C6FA +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022CCC8 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022CCD8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022D124 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D13E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022D140 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022D16E +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8022D2E8 +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022D944 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022D946 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022D94E +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E4EC +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8023E4EE +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8025426D +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80254294 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80254296 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80254298 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8020E605 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E62C +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E630 +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020E634 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80251C4E +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022CA48 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801F828D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8023D5A2 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F8292 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8020E63A +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F8650 +Name:Rolling anti-lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F8652 +Name:Anti-lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101C8 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101C6 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101C4 +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101C2 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101C0 +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802101BE +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F866C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F8670 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F8672 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F866D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F866E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801F86BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8023E8FA +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025C060 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025C058 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025C05C +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025C1C0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025C1C4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x801F8280 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801F8338 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x8022D3F6 +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D356 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D45E +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D4A6 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D4EE +Name:Cranking (seq mode) wall deposit ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D44E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D75E +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D756 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D76E +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D766 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D77E +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D78E +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D7A8 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022FC5A +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802310FA +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802310BC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023110A +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802310CC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023111A +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802310DC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023290E +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802328FC +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x8023C8DC +Name:Water temperature ignition compensation hot high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C8F0 +Name:Water temperature ignition compensation hot low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C904 +Name:Water temperature ignition compensation cold high load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C918 +Name:Water temperature ignition compensation cold low load +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8020EE26 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8020EE2E +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802105F8 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80210648 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80210608 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80210658 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802115C2 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022D7B6 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D7CE +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022D7C0 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022D7D8 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802292CA +ROMLocationX:0x8022954A +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236D6C +Name:Knock retard +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802333BC +ROMLocationX:0x80232EE4 +ROMLocationY:0x80232BC4 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237AD2 +ROMLocationX:0x80238112 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024433A +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80244362 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802113AC +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80239014 +Name:Air charge efficiency +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022C40C +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022DA98 +ROMLocationX:0x8022DA34 +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022DAFC +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8023B0C6 +ROMLocationX:0x8023B706 +Name:Ignition correction +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80235C50 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022CAE6 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024BF58 +Name:VTC intake WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80250D92 +Name:VTC exhaust WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8024C9EE +Name:Exhaust cam angle +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8024A0D0 +Name:Intake cam angle +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C036 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C356 +Name:Ignition (split) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80243638 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022D9D0 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8022DB10 +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x80227C4A +Name:TC max boost(EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802297EA +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023C8A0 +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023C896 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023CF62 +Name:IGRLMTETACH +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80238A74 +Name:ETACVTCH1 +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022BB24 +Name:Throttle position at the time of the optimum boost +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022BB4C +Name:Max throttle limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022BB74 +Name:Max throttle limit request +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80253736 +Name:Basic drving force +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253C68 +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80243FC0 +Name:Cat protect upper air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8024422C +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80244150 +ROMLocationX:0x80243FC0 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80239B90 +Name:EGT prediction MAP by air intake +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802277C0 +Name:After CAT back pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F7D2 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8023F7D2 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802336DC +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F82EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801F82DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x801F82A0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F834C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801F835C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801F8368 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F8380 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F83C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F8628 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F8644 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025221E +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253B00 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80251FC6 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253AD8 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80252476 +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253B28 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802526CE +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253B50 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80252926 +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253B78 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80252B7E +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253BA0 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80252DD6 +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253BC8 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025302E +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253BF0 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80253286 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253C18 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802534DE +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80253C40 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024BFA8 +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80250DE2 +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80250D92 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024BF58 +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024AD50 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8024C0B8 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024F5AE +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80250F10 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801F868C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F86AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F86DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023DFBC +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023E2DC +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801F8660 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80234DC2 +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023510A +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022B1CC +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022B35C +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80234116 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8024DFCE +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802435E4 +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AM-A120.txt b/bin/Debug/Definitions/Generated/37805-5AM-A120_Honda_Civic_2019.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AM-A120.txt rename to bin/Debug/Definitions/Generated/37805-5AM-A120_Honda_Civic_2019.txt index 8e26bed..c5e9603 100644 --- a/bin/Debug/Definitions/Generated/37805-5AM-A120.txt +++ b/bin/Debug/Definitions/Generated/37805-5AM-A120_Honda_Civic_2019.txt @@ -1,1251 +1,1251 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AM-A120 -37805-5AM-C120 -37805-5AM-M110 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8021164C -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802119B8 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802119BA -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802119BC -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211A0C -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E6E -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E70 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021250A -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021250C -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212A86 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212BAC -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212D1C -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212D38 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212DB8 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213134 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021319E -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802131AE -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80265C58 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C59 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C5C -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C61 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C62 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C63 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C64 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C76 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265E27 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265E28 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265E29 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265E2C -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265E2D -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265DA2 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265DA3 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265BF8 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265BFA -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C02 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C09 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C12 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C19 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265DB9 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C44 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C11 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265C1B -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C21 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212A5E -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265C25 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F58 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212D3E -Name:Maximum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212A8C -Name:Minimum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021302C -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213034 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E841A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8088 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808D -Name:Sport button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808E -Name:Enable Sport mode on start up -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8090 -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8092 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8093 -Name:Scramble (max boost) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808F -Name:Enable scramble via sport button -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8450 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8452 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8470 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8472 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8451 -Name:Use Hondata 4 bar MAP sensors -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8136 -Name:Anti lag ignition floor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E818C -Name:Anti lag RPM enable threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E841B -Name:Enable lambda tach display -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846F -Name:Advanced ethanol enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F6E -Name:F / S detection already during KIGKNA assignment value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F56 -Name:Retard coefficient equivalent value of ADV limit from RON100 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F7E -Name:KIGKNA upper limit value of the learning value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F80 -Name:KIGKNA lower limit value of the learning value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F5A -Name:Initial knock control value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80211F96 -Name:Advance learning permission upper limit increase coefficient -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021186A -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802630DA -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802630D6 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802630CE -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263204 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263208 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x80211D40 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D42 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D44 -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D46 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D48 -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D4A -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E8138 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3! -Name:021}TestStatus -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:300xa -Name:1dexNumAddress -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80213A54 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213A5C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213A64 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213A3C -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213A6C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213A34 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802147A6 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021476A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215F38 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F08 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215F48 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F18 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215F58 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F28 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021681E -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021680C -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80213AA4 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214788 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213AAE -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021479C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213DCE -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214724 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021477E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021472E -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214792 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214756 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214774 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802155E8 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215638 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802155F8 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215648 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023EE9C -ROMLocationX:0x8023F11C -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021AE3E -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021AE66 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8021513A -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80216E0A -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D1A6 -ROMLocationX:0x8021D20A -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216F0E -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802573FC -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D142 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213DEC -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x80235F0C -ROMLocationX:0x802358CC -ROMLocationY:0x80235BEC -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8026463E -ROMLocationX:0x80263FFE -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023DA9C -Name:TC max boost (EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214D08 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214CA8 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80222340 -ROMLocationX:0x802221B0 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802326CC -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213FCC -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213FC2 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023622C -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80263346 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215A68 -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215A88 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023D844 -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802334DC -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802337FC -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B3B6 -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B88E -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B83E -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021B366 -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025AC3C -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B4A6 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025EABC -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B97E -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E80EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E80DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x801E814C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E815C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801E8168 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8180 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E81C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8428 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8444 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E80A0 -Name:Sport Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8460 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E848C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84F8 -Name:Ethanol advanced fuel multiplier -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801E8530 -Name:Ethanol advanced boost limit -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802323AC -Name:EGT prediction MAP by air intake -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021ECDE -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021F026 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022FE2C -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022FFBC -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802302DC -Name:Target fuel pressure map 4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A75E -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023046C -Name:Target fuel pressure map 5 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A786 -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021E2D6 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025D4DC -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80218256 -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15FA0 -Name:VTC P -TableSize:1010x0 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -############################# +####################################################################### +# Honda_Civic_2019_Si_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AM-A120 +37805-5AM-C120 +37805-5AM-M110 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8021164C +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802119B8 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802119BA +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802119BC +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211A0C +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E6E +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E70 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021250A +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021250C +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212A86 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212BAC +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212D1C +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212D38 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212DB8 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213134 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021319E +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802131AE +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80265C58 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C59 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C5C +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C61 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C62 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C63 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C64 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C76 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265E27 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265E28 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265E29 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265E2C +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265E2D +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265DA2 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265DA3 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265BF8 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265BFA +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C02 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C09 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C12 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C19 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265DB9 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C44 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C11 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265C1B +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C21 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212A5E +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265C25 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F58 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212D3E +Name:Maximum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212A8C +Name:Minimum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021302C +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213034 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E841A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8088 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808D +Name:Sport button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808E +Name:Enable Sport mode on start up +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8090 +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8092 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8093 +Name:Scramble (max boost) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808F +Name:Enable scramble via sport button +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8450 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8452 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8470 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8472 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8451 +Name:Use Hondata 4 bar MAP sensors +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8136 +Name:Anti lag ignition floor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E818C +Name:Anti lag RPM enable threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E841B +Name:Enable lambda tach display +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846F +Name:Advanced ethanol enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F6E +Name:F / S detection already during KIGKNA assignment value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F56 +Name:Retard coefficient equivalent value of ADV limit from RON100 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F7E +Name:KIGKNA upper limit value of the learning value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F80 +Name:KIGKNA lower limit value of the learning value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F5A +Name:Initial knock control value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80211F96 +Name:Advance learning permission upper limit increase coefficient +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021186A +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802630DA +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802630D6 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802630CE +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263204 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263208 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x80211D40 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D42 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D44 +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D46 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D48 +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D4A +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E8138 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3! +Name:021}TestStatus +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:300xa +Name:1dexNumAddress +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80213A54 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213A5C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213A64 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213A3C +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213A6C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213A34 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802147A6 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021476A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215F38 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F08 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215F48 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F18 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215F58 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F28 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021681E +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021680C +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80213AA4 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214788 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213AAE +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021479C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213DCE +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214724 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021477E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021472E +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214792 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214756 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214774 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802155E8 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215638 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802155F8 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215648 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023EE9C +ROMLocationX:0x8023F11C +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021AE3E +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021AE66 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8021513A +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80216E0A +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D1A6 +ROMLocationX:0x8021D20A +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216F0E +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802573FC +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D142 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213DEC +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x80235F0C +ROMLocationX:0x802358CC +ROMLocationY:0x80235BEC +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8026463E +ROMLocationX:0x80263FFE +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023DA9C +Name:TC max boost (EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214D08 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214CA8 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80222340 +ROMLocationX:0x802221B0 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802326CC +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213FCC +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213FC2 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023622C +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80263346 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215A68 +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215A88 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023D844 +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802334DC +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802337FC +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B3B6 +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B88E +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B83E +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021B366 +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025AC3C +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B4A6 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025EABC +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B97E +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E80EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E80DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x801E814C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E815C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801E8168 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8180 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E81C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8428 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8444 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E80A0 +Name:Sport Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8460 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E848C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84F8 +Name:Ethanol advanced fuel multiplier +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801E8530 +Name:Ethanol advanced boost limit +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802323AC +Name:EGT prediction MAP by air intake +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021ECDE +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021F026 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022FE2C +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022FFBC +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802302DC +Name:Target fuel pressure map 4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A75E +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023046C +Name:Target fuel pressure map 5 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A786 +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021E2D6 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025D4DC +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80218256 +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15FA0 +Name:VTC P +TableSize:1010x0 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AM-A220.txt b/bin/Debug/Definitions/Generated/37805-5AM-A220_Honda_Civic_2020.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AM-A220.txt rename to bin/Debug/Definitions/Generated/37805-5AM-A220_Honda_Civic_2020.txt index 663f8ef..e7027e9 100644 --- a/bin/Debug/Definitions/Generated/37805-5AM-A220.txt +++ b/bin/Debug/Definitions/Generated/37805-5AM-A220_Honda_Civic_2020.txt @@ -1,1510 +1,1510 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AM-A220 -37805-5AM-C220 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8021169E -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021227C -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80212865 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211DC6 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211A50 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211EB0 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211EB2 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021254A -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021254C -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212AD6 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212BFC -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212D6C -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212D88 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212E0A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213188 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802131F2 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213202 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026619E -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026619F -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802661A2 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802661A7 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802661A8 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802661A9 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802661AA -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802661BC -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026636D -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026636E -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026636F -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266372 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266373 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802662E8 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802662E9 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026613E -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266140 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266148 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026614F -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266158 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026615F -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802662FF -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026618A -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266157 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80266161 -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266167 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212AAE -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026616B -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F9A -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212D8E -Name:Maximum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212ADC -Name:Minimum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213080 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213088 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E841A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8088 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808D -Name:Sport button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808E -Name:Enable Sport mode on start up -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8090 -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8092 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8093 -Name:Scramble (max boost) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808F -Name:Enable scramble via sport button -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8450 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8452 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8470 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8472 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8451 -Name:Use Hondata 4 bar MAP sensors -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8136 -Name:Anti lag ignition floor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E818C -Name:Anti lag RPM enable threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E841B -Name:Enable lambda tach display -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846F -Name:Advanced ethanol enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802118AE -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263620 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026361C -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263614 -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026374A -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026374E -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x80211D86 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D88 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D8A -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D8C -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D8E -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211D90 -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E8138 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Flash alternator light when TC active -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80213AAE -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213AB6 -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213ABE -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213A96 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213AC6 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213A8E -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214800 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147C4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215F92 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F62 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215FA2 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F72 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215FB2 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215F82 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216878 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216866 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80213AFE -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147E2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213B08 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147F6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213E28 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021477E -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147D8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214788 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147EC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802147B0 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802147CE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215642 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215692 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215652 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802156A2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023F3E2 -ROMLocationX:0x8023F662 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021AED4 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021AEFC -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80215194 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80216E64 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D23C -ROMLocationX:0x8021D2A0 -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216F68 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80257942 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D1D8 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213E46 -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x80236452 -ROMLocationX:0x80235E12 -ROMLocationY:0x80236132 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80264B84 -ROMLocationX:0x80264544 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023DFE2 -Name:TC max boost (EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214D62 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214D02 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802223D6 -ROMLocationX:0x80222246 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80232C12 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214026 -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021401C -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236772 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8026388C -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215AC2 -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215AE2 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023DD8A -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233A22 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D42 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B44C -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B924 -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B8D4 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021B3FC -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025B182 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B53C -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025ECE2 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BA14 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E80EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E80DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x801E814C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E815C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801E8168 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8180 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E81C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8428 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8444 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E80A0 -Name:Sport Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8460 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E848C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84F8 -Name:Ethanol advanced fuel multiplier -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801E8530 -Name:Ethanol advanced boost limit -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021ED74 -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021F0BC -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022FEC2 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80230052 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80230372 -Name:Target fuel pressure map 4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A7CC -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80230502 -Name:Target fuel pressure map 5 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A7F4 -Unit1:RPM -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021E36C -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025DA22 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802182C4 -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x86E70 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x85EB0 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x861D0 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0F030 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x81FB8 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x82F58 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x864F0 -ROMLocationX:0x86810 -ROMLocationY:0x86B30 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x86680 -ROMLocationX:0x869A0 -ROMLocationY:0x86CC0 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0F4FC -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15B5C -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11AD2 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B0AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10CC6 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10CD0 -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10D46 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x83EF8 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x84E98 -Name:Fuel high -TableSize:20x0 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x12FC0 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x101C4 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136F6 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1344C -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13442 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13404 -Name:Ignition retard throttle compensation -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13456 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1340C -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1345E -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x11762 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1175C -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1527C -Name:Knock sensitivity low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x150C4 -Name:Knock sensitivity high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11876 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213A9E -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x11886 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0F2E4 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0F2CC -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E380 -Name:Maximum plate deviation (P2101) -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B10C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B0FC -Unit1:Duty -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B1EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B2AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15FA0 -Name:VTC P -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15F9A -Name:VTC I -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15F94 -Name:VTC D -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B2D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B47C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7BA14 -Name:Active fuel tuning low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7C248 -Name:Active fuel tuning high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_Civic_2020_Si_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AM-A220 +37805-5AM-C220 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8021169E +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021227C +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80212865 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211DC6 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211A50 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211EB0 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211EB2 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021254A +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021254C +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212AD6 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212BFC +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212D6C +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212D88 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212E0A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213188 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802131F2 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213202 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026619E +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026619F +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802661A2 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802661A7 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802661A8 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802661A9 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802661AA +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802661BC +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026636D +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026636E +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026636F +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266372 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266373 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802662E8 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802662E9 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026613E +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266140 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266148 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026614F +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266158 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026615F +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802662FF +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026618A +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266157 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80266161 +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266167 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212AAE +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026616B +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F9A +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212D8E +Name:Maximum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212ADC +Name:Minimum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213080 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213088 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E841A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8088 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808D +Name:Sport button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808E +Name:Enable Sport mode on start up +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8090 +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8092 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8093 +Name:Scramble (max boost) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808F +Name:Enable scramble via sport button +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8450 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8452 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8470 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8472 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8451 +Name:Use Hondata 4 bar MAP sensors +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8136 +Name:Anti lag ignition floor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E818C +Name:Anti lag RPM enable threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E841B +Name:Enable lambda tach display +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846F +Name:Advanced ethanol enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802118AE +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263620 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026361C +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263614 +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026374A +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026374E +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x80211D86 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D88 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D8A +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D8C +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D8E +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211D90 +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E8138 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Flash alternator light when TC active +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80213AAE +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213AB6 +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213ABE +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213A96 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213AC6 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213A8E +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214800 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147C4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215F92 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F62 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215FA2 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F72 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215FB2 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215F82 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216878 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216866 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80213AFE +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147E2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213B08 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147F6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213E28 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021477E +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147D8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214788 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147EC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802147B0 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802147CE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215642 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215692 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215652 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802156A2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023F3E2 +ROMLocationX:0x8023F662 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021AED4 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021AEFC +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80215194 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80216E64 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D23C +ROMLocationX:0x8021D2A0 +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216F68 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80257942 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D1D8 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213E46 +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x80236452 +ROMLocationX:0x80235E12 +ROMLocationY:0x80236132 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80264B84 +ROMLocationX:0x80264544 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023DFE2 +Name:TC max boost (EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214D62 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214D02 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802223D6 +ROMLocationX:0x80222246 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80232C12 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214026 +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021401C +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236772 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8026388C +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215AC2 +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215AE2 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023DD8A +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233A22 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D42 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B44C +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B924 +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B8D4 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021B3FC +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025B182 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B53C +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025ECE2 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BA14 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E80EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E80DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x801E814C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E815C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801E8168 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8180 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E81C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8428 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8444 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E80A0 +Name:Sport Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8460 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E848C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84F8 +Name:Ethanol advanced fuel multiplier +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801E8530 +Name:Ethanol advanced boost limit +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021ED74 +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021F0BC +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022FEC2 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80230052 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80230372 +Name:Target fuel pressure map 4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A7CC +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80230502 +Name:Target fuel pressure map 5 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A7F4 +Unit1:RPM +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021E36C +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025DA22 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802182C4 +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x86E70 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x85EB0 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x861D0 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F030 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x81FB8 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x82F58 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x864F0 +ROMLocationX:0x86810 +ROMLocationY:0x86B30 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x86680 +ROMLocationX:0x869A0 +ROMLocationY:0x86CC0 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F4FC +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15B5C +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11AD2 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B0AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10CC6 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10CD0 +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10D46 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x83EF8 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x84E98 +Name:Fuel high +TableSize:20x0 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x12FC0 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x101C4 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136F6 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1344C +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13442 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13404 +Name:Ignition retard throttle compensation +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13456 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1340C +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1345E +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x11762 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1175C +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1527C +Name:Knock sensitivity low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x150C4 +Name:Knock sensitivity high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11876 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213A9E +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x11886 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F2E4 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F2CC +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E380 +Name:Maximum plate deviation (P2101) +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B10C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B0FC +Unit1:Duty +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B1EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B2AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15FA0 +Name:VTC P +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15F9A +Name:VTC I +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15F94 +Name:VTC D +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B2D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B47C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7BA14 +Name:Active fuel tuning low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7C248 +Name:Active fuel tuning high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5AN-A220.txt b/bin/Debug/Definitions/Generated/37805-5AN-A220_Honda_Civic_2019.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5AN-A220.txt rename to bin/Debug/Definitions/Generated/37805-5AN-A220_Honda_Civic_2019.txt index 99a5359..841125b 100644 --- a/bin/Debug/Definitions/Generated/37805-5AN-A220.txt +++ b/bin/Debug/Definitions/Generated/37805-5AN-A220_Honda_Civic_2019.txt @@ -1,1262 +1,1262 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5AN-A220 -37805-5AN-C420 -37805-5AF-H220 -37805-5AF-B120 -37805-5AN-CA20 -37805-5AN-EA10 -37805-5AN-E410 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8021175A -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211ACC -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211ACE -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211AD0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211B20 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F8E -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211F90 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212600 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212602 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212B70 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212C9A -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212E0A -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212E26 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212EA6 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021322A -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213294 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802132A4 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265BB1 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265BB2 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265BB5 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265BBA -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265BBB -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265BBC -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265BBD -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265BCF -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265D86 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265D87 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265D88 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265D8B -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265D8C -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265D02 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265D03 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B52 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B54 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B5C -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B63 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B6C -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B73 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265D19 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B9E -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B6B -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80265B75 -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265B7B -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212B48 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80265B7F -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212072 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212E2C -Name:Maximum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212B76 -Name:Minimum TC sensor voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021311E -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213126 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801E841A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8088 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E808D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8092 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8093 -Name:Scramble (max boost) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801E808F -Name:Enable scramble via sport button -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801E8450 -Name:Rolling anti-lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8452 -Name:Anti-lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E60 -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E62 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E64 -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E66 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E68 -Name:Radiator fan speed 3 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211E6A -Name:Radiator fan speed 3 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8470 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8472 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E846E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E84BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021197E -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263452 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026344E -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263446 -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026357C -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80263580 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x801E8451 -Name:Use Hondata 4 bar MAP sensors -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E8080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E8138 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80213B42 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213B4A -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80213B52 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213B52 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213B5A -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213B5A -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021495C -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214920 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802160C4 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216094 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802160D4 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802160A4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802160E4 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802160B4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802169CE -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802169BC -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80213B92 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021493E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213B9C -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214952 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80213F34 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802148DA -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214934 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802148E4 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214948 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021490C -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021492A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215774 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802157C4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215784 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802157D4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023F584 -ROMLocationX:0x8023F804 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B056 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B07E -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802152D4 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80216FBA -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D316 -ROMLocationX:0x8021D37A -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802170AA -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80258124 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D2B2 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213F52 -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x802365F4 -ROMLocationX:0x80235FB4 -ROMLocationY:0x802362D4 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80263F4E -ROMLocationX:0x8026458E -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023E184 -Name:TC max boost (EGT) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214EB2 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214E52 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80222578 -ROMLocationX:0x802223E8 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80232DB4 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214132 -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214128 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236914 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215BF4 -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215C14 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023DF2C -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233BC4 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D54 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B5CE -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021BAA6 -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021BA56 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021B57E -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025B964 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B6BE -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8025F7E4 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BB96 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E80EE -Name:Boost by gear limit -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E80DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x801E814C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E815C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801E8168 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8180 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E81C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8428 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8444 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E80A0 -Name:Econ Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8460 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023CA14 -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BDC6 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023C7BC -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BD9E -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023CC6C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BDEE -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023CEC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BE16 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023D11C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BE3E -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023D374 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BE66 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023D5CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BE8E -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023D824 -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BEB6 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023DA7C -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BEDE -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8023DCD4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BF06 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021EA46 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021B146 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B146 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E848C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E84DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802141A0 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802141AA -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021EE86 -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021F1CE -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80230064 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802301F4 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80230384 -Name:Target fuel pressure map 3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A8D6 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80230514 -Name:Target fuel pressure map 4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A8FE -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802306A4 -Name:Target fuel pressure map 5 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021A926 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021E37E -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025E204 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802183DE -Name:Target RPM (no load) for throttle -TableSize:11x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2019_Sport_1.5L L4 - Gas, 2.0L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5AN-A220 +37805-5AN-C420 +37805-5AF-H220 +37805-5AF-B120 +37805-5AN-CA20 +37805-5AN-EA10 +37805-5AN-E410 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8021175A +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211ACC +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211ACE +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211AD0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211B20 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F8E +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211F90 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212600 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212602 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212B70 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212C9A +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212E0A +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212E26 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212EA6 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021322A +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213294 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802132A4 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265BB1 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265BB2 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265BB5 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265BBA +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265BBB +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265BBC +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265BBD +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265BCF +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265D86 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265D87 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265D88 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265D8B +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265D8C +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265D02 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265D03 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B52 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B54 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B5C +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B63 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B6C +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B73 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265D19 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B9E +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B6B +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80265B75 +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265B7B +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212B48 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80265B7F +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212072 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212E2C +Name:Maximum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212B76 +Name:Minimum TC sensor voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021311E +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213126 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801E841A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8088 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E808D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8092 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8093 +Name:Scramble (max boost) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801E808F +Name:Enable scramble via sport button +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801E8450 +Name:Rolling anti-lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8452 +Name:Anti-lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E60 +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E62 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E64 +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E66 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E68 +Name:Radiator fan speed 3 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211E6A +Name:Radiator fan speed 3 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8470 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8472 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E846E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E84BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021197E +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263452 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026344E +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263446 +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026357C +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80263580 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x801E8451 +Name:Use Hondata 4 bar MAP sensors +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E8080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E8138 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80213B42 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213B4A +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80213B52 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213B52 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213B5A +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213B5A +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021495C +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214920 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802160C4 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216094 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802160D4 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802160A4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802160E4 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802160B4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802169CE +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802169BC +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80213B92 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021493E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213B9C +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214952 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80213F34 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802148DA +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214934 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802148E4 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214948 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021490C +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021492A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215774 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802157C4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215784 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802157D4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023F584 +ROMLocationX:0x8023F804 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B056 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B07E +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802152D4 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80216FBA +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D316 +ROMLocationX:0x8021D37A +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802170AA +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80258124 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D2B2 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213F52 +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x802365F4 +ROMLocationX:0x80235FB4 +ROMLocationY:0x802362D4 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80263F4E +ROMLocationX:0x8026458E +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023E184 +Name:TC max boost (EGT) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214EB2 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214E52 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80222578 +ROMLocationX:0x802223E8 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80232DB4 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214132 +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214128 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236914 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215BF4 +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215C14 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023DF2C +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233BC4 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D54 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B5CE +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021BAA6 +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021BA56 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021B57E +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025B964 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B6BE +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8025F7E4 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BB96 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E80EE +Name:Boost by gear limit +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E80DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x801E814C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E815C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801E8168 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8180 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E81C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8428 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8444 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E80A0 +Name:Econ Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8460 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023CA14 +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BDC6 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023C7BC +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BD9E +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023CC6C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BDEE +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023CEC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BE16 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023D11C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BE3E +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023D374 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BE66 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023D5CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BE8E +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023D824 +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BEB6 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023DA7C +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BEDE +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8023DCD4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BF06 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021EA46 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021B146 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B146 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E848C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E84DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802141A0 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802141AA +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021EE86 +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021F1CE +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80230064 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802301F4 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80230384 +Name:Target fuel pressure map 3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A8D6 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80230514 +Name:Target fuel pressure map 4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A8FE +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802306A4 +Name:Target fuel pressure map 5 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021A926 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021E37E +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025E204 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802183DE +Name:Target RPM (no load) for throttle +TableSize:11x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5BF-A340.txt b/bin/Debug/Definitions/Generated/37805-5BF-A340_Honda_Civic_2020.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5BF-A340.txt rename to bin/Debug/Definitions/Generated/37805-5BF-A340_Honda_Civic_2020.txt index a23709f..fb2ac85 100644 --- a/bin/Debug/Definitions/Generated/37805-5BF-A340.txt +++ b/bin/Debug/Definitions/Generated/37805-5BF-A340_Honda_Civic_2020.txt @@ -1,1489 +1,1489 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5BF-A340 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x3FFE60 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x80955DCF -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80955B2E -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80927E54 -Name:Maximum manifold pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80928630 -Name:Maximum boost pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092F8D8 -Name:Catalyst protection temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8092F8DA -Name:Catalyst maximum temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092F8E4 -Name:Exhaust maximum temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092F8E6 -Name:Turbocharger maximum temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8091102E -Name:Maximum TC pressure ratio -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092B45C -Name:Boost cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80927A92 -Name:Maximum charge pipe pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80927C26 -Name:Threshold for fuel pump air charge limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80927C5D -Name:Delay for high pressure fuel pump limitation -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8092CF70 -Name:AFM maximum voltage enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8094C48E -Name:Mode 23 read command enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002AE34 -Name:CCP station address -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801FFE7C -Name:seg1_hash -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809FFE7C -Name:seg2_hash -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8092E866 -Name:CCP active -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809334D0 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090954A -Name:P0420 catalytic efficiency error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8094C4C4 -Name:Maximum rpm for DTC clear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EB08 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090FA6C -Name:Speed adjustment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80909470 -Name:P0299 turbocharger underboost problem enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8092D5DC -Name:Minimum fuel pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8092D5DA -Name:Maximum fuel pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091DD5D -Name:Reduced current maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x800278CC -Name:CVN 1 start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x800278D0 -Name:CVN 1 end -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x800278D4 -Name:CVN 2 start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x800278D8 -Name:CVN 2 end -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8090930C -Name:P0449 EVAP vent shut valve open circuit enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091C728 -Name:ECT2 enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x809C0004 -Name:Launch to full throttle shift transition speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C0008 -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C000A -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C0006 -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C000C -Name:Full throttle shift ignition cut rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C000E -Name:Full throttle shift ignition retard rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C0016 -Name:Anti lag fuel cut rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C0018 -Name:Anti lag ignition cut rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C001A -Name:Anti lag retard rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C0012 -Name:Full throttle shift ignition target -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C0014 -Name:Anti lag ignition target -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C0010 -Name:Full throttle target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x809C001C -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C0013 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80174163 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090E15C -Name:Radiator fan (high speed) on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090E162 -Name:Radiator fan (high speed) off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090E15E -Name:Radiator fan (low speed) on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090E160 -Name:Radiator fan (low speed) off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C001E -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090937E -Name:P0139 secondary o2 slow response error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809093F8 -Name:P0141 secondary o2 heater malfunction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80909364 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809093F4 -Name:P0136 O2 sensor circuit malfunction error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80909416 -Name:P0101 mass or volume circuit range performance problem error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80910C86 -Name:Split injection enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091DB6A -Name:Solenoid hold current -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C003A -Name:Fuel economy dash adj -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091CA98 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C036C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C0370 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C0372 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03A8 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03AA -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03A0 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C036D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C036E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03A2 -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03A4 -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03A6 -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80909536 -Name:P2183 ECT Sensor 2 range problem enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03BC -Name:Fuel pump limit enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03BE -Name:Fuel pump target -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03BD -Name:Fuel pump limit PID enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C03C0 -Name:Fuel pump hystersis -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809C03C2 -Name:Fuel pump P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C03C4 -Name:Fuel pump I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C03C6 -Name:Fuel pump D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x809C03C8 -Name:Fuel pump D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x801212B2 -Name:Start in +R mode -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8090EB02 -Name:Higher engine speed limit at function request from customer service -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80914920 -Name:Threshold for maximum speed fault detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090DD4A -Name:Max engine speed limitation request from Electrical Supply System -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092F96C -Name:Maximum air charge reduction for component protection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80909386 -Name:P2270/P2271 secondary 02 rich or lean enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091C72A -Name:ECT to ECT2 cold start check enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8091F122 -Name:Catalyst purge max rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090DECF -Name:Auto stop/start enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8090F020 -Name:Min IAT for throttle learning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090F024 -Name:Min ECT for throttle learning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x809C03D4 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x809334D0 -Name:KRKATE -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80919DCC -Name:Exhaust cam -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809199C8 -Name:Exhaust cam (cold) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091A5B0 -Name:Exhaust cam (VTEC) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091A370 -Name:Exhaust cam (VTEC cold) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091A2F0 -Name:Exhaust cam (spool) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091A24C -Name:Exhaust cam (spool cold) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80917B46 -Name:Intake cam -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80917742 -Name:Intake cam (cold) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091832A -Name:Intake cam (VTEC) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809180EA -Name:Intake cam (VTEC) (cold) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80917FC6 -Name:Intake cam (spool cold) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091806A -Name:Intake cam (spool) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80937176 -Name:Torque 1st (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809373BA -Name:Torque 2nd (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809375FE -Name:Torque 3rd (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80937842 -Name:Torque 4th (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80937A86 -Name:Torque 5th (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80937CCA -Name:Torque 6th (comfort) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093C30A -Name:Torque 1st (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093C54E -Name:Torque 2nd (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093C792 -Name:Torque 3rd (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093C9D6 -Name:Torque 4th (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093CC1A -Name:Torque 5th (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093CE5E -Name:Torque 6th (R mode) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092859C -Name:Turbo max ratio (PA) -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093F05A -Name:Torque 1st (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093F29E -Name:Torque 2nd (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093F4E2 -Name:Torque 3rd (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093F726 -Name:Torque 4th (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093F96A -Name:Torque 5th (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093FBAE -Name:Torque 6th (sport) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80928524 -Name:Turbo max air charge -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092834C -Name:Turbo max ratio (temp) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934360 -Name:Ignition (in cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092FD0E -Name:Target lambda (cat protect) -TableSize:14x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80928622 -Name:Turbo max ratio (PA) comp (IAT2) -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80924F04 -Name:Turbo compressor efficiency -TableSize:14x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80934560 -Name:Ignition (in cam -) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934460 -Name:Ignition (VTEC) (in cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934660 -Name:Ignition (VTEC) (in cam -) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934760 -Name:Ignition (in cam -) (ex cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934860 -Name:Ignition (VTEC) (in cam -) (ex cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934960 -Name:Ignition (ex cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80934A60 -Name:Ignition (VTEC) (ex cam +) -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80930174 -Name:Target lambda (VTEC) (cat protect) -TableSize:14x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809316B0 -ROMLocationX:0x8093166E -Name:Torque limit -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D3D8 -Name:Fuel pressure (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D47C -Name:Fuel pressure (split injection) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8090EC92 -Name:Rev limiter (gear / ECT) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8093115A -Name:Optimum torque -TableSize:14x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8093135A -Name:Nominal charge -TableSize:14x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092FECE -Name:Minimum lambda (cat protect) -TableSize:14x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80927C4E -Name:High pressure fuel pump max flow -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80927C38 -Name:Low pressure fuel pump flow -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8092CE58 -Name:AFM flow -TableSize:128x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80927E16 -Name:Air charge limit -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092EE1A -Name:Knock air charge reduction -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092EEE8 -Name:Knock retard step -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80931F44 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80913506 -Name:VTEC -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091DB7B -Name:Fuel pump minimum current -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809340B6 -Name:HPFP feed forward offset -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8093413C -Name:HPFP feed forward gain -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D620 -Name:HPFP integrator (delta pressure) -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D62C -Name:HPFP proportional (delta pressure) -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D606 -Name:HPFP integrator (rpm) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092D617 -Name:HPFP proportional (rpm) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092EAB0 -Name:Knock window cylinder 1 -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092EAE4 -Name:Knock window cylinder 2 -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092EB18 -Name:Knock window cylinder 3 -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092EB4C -Name:Knock window cylinder 4 -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8091D984 -Name:HPFP delay (battery voltage) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80908F8C -Name:DTC disable -TableSize:791x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80927C0A -Name:Minimum air charge in overrun -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x809C0026 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x809C0028 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x809C002E -Name:Ethanol fuel multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092369A -Name:Injector phase (SOI) -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809C012C -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x809C0126 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x809C016C -Name:Ethanol ignition compensation -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809C0066 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092C13E -Name:Cranking fuel adjustment -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8092C12E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092BD79 -Name:After start lambda adjustment -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x809337C1 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x809C0380 -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809C0396 -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x809C03B6 -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8090E928 -Name:Demanded engine speed during high temperature -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EA60 -Name:Max engine speed limit at high oil temperature -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090E9C6 -Name:HLSDem_nMaxHiSprt_CUR -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090E9F0 -Name:HLSDem_nMaxHiTipp_CUR -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EA1A -Name:Maximum permissible engine speed (short increase) -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EBA0 -Name:Engine speed limit at high engine temperature -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EC60 -Name:Engine speed limit for automatic transmission at fault of vehicle speed signal -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EB22 -Name:HLSDem_nMaxStdSprt_CUR -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EB4C -Name:HLSDem_nMaxStdTipp_CUR -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8090EB76 -Name:HLSDem_nMaxStd_CUR -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80923F9B -Name:Injector phase max angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8091DAA0 -Name:Fuel pump compensation by rpm and duty -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8092D2C0 -Name:Fuel pressure (idle) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8092CAF8 -Name:VE correction -TableSize:14x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8092CAC0 -Unit1:rpm -IsNotDefined:true -############################# -ROMLocationTable:0x8092CCBC -Name:VE correction WOT -TableSize:14x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8092CC84 -Unit1:rpm -IsNotDefined:true -############################# -ROMLocationTable:0x8091F59F -Name:TWCC_rILdMaxPri_CUR set 0 -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8091F5B0 -Name:TWCC_rILdMinPri_CUR set 100 -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80929D5C -Name:Maximum cam overlap -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80930EBD -Name:Idle speed -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8096FDC8 -Name:Target lambda (after start) -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8096E9B8 -Name:Target lambda (catalyst heating after start) -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8096FBC0 -Name:Target lambda (scavenging) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8096FCCC -Name:Target lambda (wiper scavenging) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8096E910 -Name:Target lambda (cat protect catalyst heating) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8096EA6C -Name:Target lambda (catalyst heating) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2020_Touring, Type R_1.5L L4 - Gas, 2.0L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5BF-A340 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x3FFE60 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x80955DCF +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80955B2E +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80927E54 +Name:Maximum manifold pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80928630 +Name:Maximum boost pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092F8D8 +Name:Catalyst protection temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8092F8DA +Name:Catalyst maximum temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092F8E4 +Name:Exhaust maximum temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092F8E6 +Name:Turbocharger maximum temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8091102E +Name:Maximum TC pressure ratio +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092B45C +Name:Boost cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80927A92 +Name:Maximum charge pipe pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80927C26 +Name:Threshold for fuel pump air charge limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80927C5D +Name:Delay for high pressure fuel pump limitation +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8092CF70 +Name:AFM maximum voltage enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8094C48E +Name:Mode 23 read command enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002AE34 +Name:CCP station address +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801FFE7C +Name:seg1_hash +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809FFE7C +Name:seg2_hash +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8092E866 +Name:CCP active +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809334D0 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090954A +Name:P0420 catalytic efficiency error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8094C4C4 +Name:Maximum rpm for DTC clear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EB08 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090FA6C +Name:Speed adjustment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80909470 +Name:P0299 turbocharger underboost problem enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8092D5DC +Name:Minimum fuel pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8092D5DA +Name:Maximum fuel pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091DD5D +Name:Reduced current maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x800278CC +Name:CVN 1 start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x800278D0 +Name:CVN 1 end +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x800278D4 +Name:CVN 2 start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x800278D8 +Name:CVN 2 end +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8090930C +Name:P0449 EVAP vent shut valve open circuit enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091C728 +Name:ECT2 enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x809C0004 +Name:Launch to full throttle shift transition speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C0008 +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C000A +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C0006 +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C000C +Name:Full throttle shift ignition cut rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C000E +Name:Full throttle shift ignition retard rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C0016 +Name:Anti lag fuel cut rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C0018 +Name:Anti lag ignition cut rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C001A +Name:Anti lag retard rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C0012 +Name:Full throttle shift ignition target +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C0014 +Name:Anti lag ignition target +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C0010 +Name:Full throttle target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x809C001C +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C0013 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80174163 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090E15C +Name:Radiator fan (high speed) on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090E162 +Name:Radiator fan (high speed) off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090E15E +Name:Radiator fan (low speed) on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090E160 +Name:Radiator fan (low speed) off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C001E +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090937E +Name:P0139 secondary o2 slow response error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809093F8 +Name:P0141 secondary o2 heater malfunction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80909364 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809093F4 +Name:P0136 O2 sensor circuit malfunction error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80909416 +Name:P0101 mass or volume circuit range performance problem error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80910C86 +Name:Split injection enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091DB6A +Name:Solenoid hold current +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C003A +Name:Fuel economy dash adj +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091CA98 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C036C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C0370 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C0372 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03A8 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03AA +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03A0 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C036D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C036E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03A2 +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03A4 +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03A6 +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80909536 +Name:P2183 ECT Sensor 2 range problem enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03BC +Name:Fuel pump limit enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03BE +Name:Fuel pump target +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03BD +Name:Fuel pump limit PID enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C03C0 +Name:Fuel pump hystersis +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809C03C2 +Name:Fuel pump P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C03C4 +Name:Fuel pump I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C03C6 +Name:Fuel pump D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x809C03C8 +Name:Fuel pump D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x801212B2 +Name:Start in +R mode +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8090EB02 +Name:Higher engine speed limit at function request from customer service +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80914920 +Name:Threshold for maximum speed fault detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090DD4A +Name:Max engine speed limitation request from Electrical Supply System +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092F96C +Name:Maximum air charge reduction for component protection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80909386 +Name:P2270/P2271 secondary 02 rich or lean enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091C72A +Name:ECT to ECT2 cold start check enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8091F122 +Name:Catalyst purge max rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090DECF +Name:Auto stop/start enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8090F020 +Name:Min IAT for throttle learning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090F024 +Name:Min ECT for throttle learning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x809C03D4 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x809334D0 +Name:KRKATE +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80919DCC +Name:Exhaust cam +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809199C8 +Name:Exhaust cam (cold) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091A5B0 +Name:Exhaust cam (VTEC) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091A370 +Name:Exhaust cam (VTEC cold) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091A2F0 +Name:Exhaust cam (spool) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091A24C +Name:Exhaust cam (spool cold) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80917B46 +Name:Intake cam +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80917742 +Name:Intake cam (cold) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091832A +Name:Intake cam (VTEC) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809180EA +Name:Intake cam (VTEC) (cold) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80917FC6 +Name:Intake cam (spool cold) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091806A +Name:Intake cam (spool) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80937176 +Name:Torque 1st (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809373BA +Name:Torque 2nd (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809375FE +Name:Torque 3rd (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80937842 +Name:Torque 4th (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80937A86 +Name:Torque 5th (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80937CCA +Name:Torque 6th (comfort) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093C30A +Name:Torque 1st (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093C54E +Name:Torque 2nd (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093C792 +Name:Torque 3rd (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093C9D6 +Name:Torque 4th (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093CC1A +Name:Torque 5th (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093CE5E +Name:Torque 6th (R mode) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092859C +Name:Turbo max ratio (PA) +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093F05A +Name:Torque 1st (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093F29E +Name:Torque 2nd (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093F4E2 +Name:Torque 3rd (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093F726 +Name:Torque 4th (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093F96A +Name:Torque 5th (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093FBAE +Name:Torque 6th (sport) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80928524 +Name:Turbo max air charge +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092834C +Name:Turbo max ratio (temp) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934360 +Name:Ignition (in cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092FD0E +Name:Target lambda (cat protect) +TableSize:14x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80928622 +Name:Turbo max ratio (PA) comp (IAT2) +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80924F04 +Name:Turbo compressor efficiency +TableSize:14x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80934560 +Name:Ignition (in cam -) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934460 +Name:Ignition (VTEC) (in cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934660 +Name:Ignition (VTEC) (in cam -) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934760 +Name:Ignition (in cam -) (ex cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934860 +Name:Ignition (VTEC) (in cam -) (ex cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934960 +Name:Ignition (ex cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80934A60 +Name:Ignition (VTEC) (ex cam +) +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80930174 +Name:Target lambda (VTEC) (cat protect) +TableSize:14x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809316B0 +ROMLocationX:0x8093166E +Name:Torque limit +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D3D8 +Name:Fuel pressure (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D47C +Name:Fuel pressure (split injection) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8090EC92 +Name:Rev limiter (gear / ECT) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8093115A +Name:Optimum torque +TableSize:14x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8093135A +Name:Nominal charge +TableSize:14x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092FECE +Name:Minimum lambda (cat protect) +TableSize:14x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80927C4E +Name:High pressure fuel pump max flow +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80927C38 +Name:Low pressure fuel pump flow +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8092CE58 +Name:AFM flow +TableSize:128x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80927E16 +Name:Air charge limit +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092EE1A +Name:Knock air charge reduction +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092EEE8 +Name:Knock retard step +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80931F44 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80913506 +Name:VTEC +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091DB7B +Name:Fuel pump minimum current +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809340B6 +Name:HPFP feed forward offset +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8093413C +Name:HPFP feed forward gain +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D620 +Name:HPFP integrator (delta pressure) +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D62C +Name:HPFP proportional (delta pressure) +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D606 +Name:HPFP integrator (rpm) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092D617 +Name:HPFP proportional (rpm) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092EAB0 +Name:Knock window cylinder 1 +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092EAE4 +Name:Knock window cylinder 2 +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092EB18 +Name:Knock window cylinder 3 +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092EB4C +Name:Knock window cylinder 4 +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8091D984 +Name:HPFP delay (battery voltage) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80908F8C +Name:DTC disable +TableSize:791x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80927C0A +Name:Minimum air charge in overrun +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x809C0026 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x809C0028 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x809C002E +Name:Ethanol fuel multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092369A +Name:Injector phase (SOI) +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809C012C +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x809C0126 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x809C016C +Name:Ethanol ignition compensation +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809C0066 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092C13E +Name:Cranking fuel adjustment +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8092C12E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092BD79 +Name:After start lambda adjustment +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x809337C1 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x809C0380 +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809C0396 +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x809C03B6 +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8090E928 +Name:Demanded engine speed during high temperature +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EA60 +Name:Max engine speed limit at high oil temperature +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090E9C6 +Name:HLSDem_nMaxHiSprt_CUR +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090E9F0 +Name:HLSDem_nMaxHiTipp_CUR +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EA1A +Name:Maximum permissible engine speed (short increase) +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EBA0 +Name:Engine speed limit at high engine temperature +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EC60 +Name:Engine speed limit for automatic transmission at fault of vehicle speed signal +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EB22 +Name:HLSDem_nMaxStdSprt_CUR +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EB4C +Name:HLSDem_nMaxStdTipp_CUR +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8090EB76 +Name:HLSDem_nMaxStd_CUR +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80923F9B +Name:Injector phase max angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8091DAA0 +Name:Fuel pump compensation by rpm and duty +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8092D2C0 +Name:Fuel pressure (idle) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8092CAF8 +Name:VE correction +TableSize:14x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8092CAC0 +Unit1:rpm +IsNotDefined:true +############################# +ROMLocationTable:0x8092CCBC +Name:VE correction WOT +TableSize:14x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8092CC84 +Unit1:rpm +IsNotDefined:true +############################# +ROMLocationTable:0x8091F59F +Name:TWCC_rILdMaxPri_CUR set 0 +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8091F5B0 +Name:TWCC_rILdMinPri_CUR set 100 +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80929D5C +Name:Maximum cam overlap +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80930EBD +Name:Idle speed +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8096FDC8 +Name:Target lambda (after start) +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8096E9B8 +Name:Target lambda (catalyst heating after start) +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8096FBC0 +Name:Target lambda (scavenging) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8096FCCC +Name:Target lambda (wiper scavenging) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8096E910 +Name:Target lambda (cat protect catalyst heating) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8096EA6C +Name:Target lambda (catalyst heating) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5G2-A050.txt b/bin/Debug/Definitions/Generated/37805-5G2-A050_Honda_Accord_2013.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5G2-A050.txt rename to bin/Debug/Definitions/Generated/37805-5G2-A050_Honda_Accord_2013.txt index f1c9bda..6d5c861 100644 --- a/bin/Debug/Definitions/Generated/37805-5G2-A050.txt +++ b/bin/Debug/Definitions/Generated/37805-5G2-A050_Honda_Accord_2013.txt @@ -1,901 +1,901 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5G2-A050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x09000A -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x5EBD4 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x604D6 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x604D8 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x608A2 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x608A4 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x608CA -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x608D2 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61E3A -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61E2A -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61EBE -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61E94 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61E90 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61F10 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61F12 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x633BC -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A0E2 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6A116 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6A118 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B043 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B045 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B04A -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B051 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x68952 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B058 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B05A -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B090 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B092 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B093 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B094 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B097 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B098 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B099 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B09B -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B09E -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B0A1 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B0A2 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B0A3 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B0A4 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B0A6 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B196 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B130 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B132 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B134 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B0BE -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x608BA -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x630EC -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6311C -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x63C8C -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x63C8E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x68128 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6812A -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A06A -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A06C -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x64718 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6471A -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1C2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1C20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1C20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61458 -Name:Speed base throttle limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11EDF2 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x5EBE4 -Name:TPS WOT determination high -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5EBFC -Name:TPS WOT determination low -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5EEE6 -Name:MAP WOT determination pressure -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x608DC -Name:VTEC window pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61B1C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61B14 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61B2C -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61B24 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61B3C -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61B34 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61B4C -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61BE8 -Name:Overrun fuel cut delay -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x62FB8 -Name:LAF voltage to lambda -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x63314 -Name:Closed loop target lambda low load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63304 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x63340 -Name:Closed loop target lambda high load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63330 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x6336C -Name:Closed loop target lambda limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6335C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5EA0C -Name:Idle speed (normal) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x5EA2C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x5EA1C -Name:Idle speed (after start) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x5EA3C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x5F0D4 -Name:AFM flow -TableSize:64x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x60EBE -Name:TPlate Normal -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61C08 -Name:Overrun injector restart rpm (cut) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61C20 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x61C12 -Name:Overrun injector restart rpm (recover) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61C2A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A1210 -ROMLocationX:0x1A13A0 -ROMLocationY:0x1A1530 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0D60 -ROMLocationX:0x1A0EF0 -ROMLocationY:0x1A1080 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1E90 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1D00 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61694 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x616DC -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x63CB6 -Name:Air temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63CA4 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x65634 -Name:Ignition retard rpm compensation -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6562A -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x66C20 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x66C2A -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x66C88 -Name:Water temperature ignition compensation hot high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66C7E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66CAA -Name:Water temperature ignition compensation hot low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66CA0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66CCA -Name:Water temperature ignition compensation cold high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66CC0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66CEA -Name:Water temperature ignition compensation cold low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66CE0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66D20 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x68082 -Name:Purge fuel -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x63DD4 -Name:Water temperature fuel compensation low -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63E06 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x63DE4 -Name:Water temperature fuel compensation high -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63E16 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x655E8 -Name:Ignition retard throttle compensation -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6563E -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x655F0 -Name:Ignition retard gear compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x65646 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1A16C0 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A19E0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x646B0 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x64702 -Name:Injector opening time -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x643B2 -Name:KWOT low -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x643BE -Name:KWOT high -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1A06D8 -Name:AFM fuel -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x667EE -Name:Individual cylinder ignition trim -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x63DC2 -Name:Individual cylinder fuel trim -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A070C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0A40 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C20AC -Name:Wideband lambda -TableSize:2x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C2258 -Name:Air temperature fuel compensation -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1C2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x61148 -Name:Throttle flow vs opening -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_Accord_2013_EX-L_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5G2-A050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x09000A +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x5EBD4 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x604D6 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x604D8 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x608A2 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x608A4 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x608CA +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x608D2 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61E3A +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61E2A +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61EBE +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61E94 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61E90 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61F10 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61F12 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x633BC +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A0E2 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6A116 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6A118 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B043 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B045 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B04A +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B051 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x68952 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B058 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B05A +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B090 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B092 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B093 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B094 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B097 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B098 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B099 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B09B +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B09E +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B0A1 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B0A2 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B0A3 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B0A4 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B0A6 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B196 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B130 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B132 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B134 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B0BE +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x608BA +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x630EC +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6311C +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x63C8C +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x63C8E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x68128 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6812A +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A06A +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A06C +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x64718 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6471A +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1C2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1C20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1C20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61458 +Name:Speed base throttle limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11EDF2 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x5EBE4 +Name:TPS WOT determination high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5EBFC +Name:TPS WOT determination low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5EEE6 +Name:MAP WOT determination pressure +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x608DC +Name:VTEC window pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61B1C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61B14 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61B2C +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61B24 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61B3C +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61B34 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61B4C +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61BE8 +Name:Overrun fuel cut delay +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x62FB8 +Name:LAF voltage to lambda +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x63314 +Name:Closed loop target lambda low load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63304 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x63340 +Name:Closed loop target lambda high load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63330 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x6336C +Name:Closed loop target lambda limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6335C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5EA0C +Name:Idle speed (normal) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x5EA2C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x5EA1C +Name:Idle speed (after start) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x5EA3C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x5F0D4 +Name:AFM flow +TableSize:64x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x60EBE +Name:TPlate Normal +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61C08 +Name:Overrun injector restart rpm (cut) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61C20 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x61C12 +Name:Overrun injector restart rpm (recover) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61C2A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A1210 +ROMLocationX:0x1A13A0 +ROMLocationY:0x1A1530 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0D60 +ROMLocationX:0x1A0EF0 +ROMLocationY:0x1A1080 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1E90 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1D00 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61694 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x616DC +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x63CB6 +Name:Air temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63CA4 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x65634 +Name:Ignition retard rpm compensation +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6562A +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x66C20 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x66C2A +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x66C88 +Name:Water temperature ignition compensation hot high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66C7E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66CAA +Name:Water temperature ignition compensation hot low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66CA0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66CCA +Name:Water temperature ignition compensation cold high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66CC0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66CEA +Name:Water temperature ignition compensation cold low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66CE0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66D20 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x68082 +Name:Purge fuel +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x63DD4 +Name:Water temperature fuel compensation low +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63E06 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x63DE4 +Name:Water temperature fuel compensation high +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63E16 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x655E8 +Name:Ignition retard throttle compensation +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6563E +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x655F0 +Name:Ignition retard gear compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x65646 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1A16C0 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A19E0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x646B0 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x64702 +Name:Injector opening time +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x643B2 +Name:KWOT low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x643BE +Name:KWOT high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1A06D8 +Name:AFM fuel +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x667EE +Name:Individual cylinder ignition trim +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x63DC2 +Name:Individual cylinder fuel trim +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A070C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0A40 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C20AC +Name:Wideband lambda +TableSize:2x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C2258 +Name:Air temperature fuel compensation +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1C2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x61148 +Name:Throttle flow vs opening +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5G2-A120.txt b/bin/Debug/Definitions/Generated/37805-5G2-A120_Honda_Accord_2015.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5G2-A120.txt rename to bin/Debug/Definitions/Generated/37805-5G2-A120_Honda_Accord_2015.txt index 2a70dc6..584d447 100644 --- a/bin/Debug/Definitions/Generated/37805-5G2-A120.txt +++ b/bin/Debug/Definitions/Generated/37805-5G2-A120_Honda_Accord_2015.txt @@ -1,886 +1,886 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5G2-A120 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x09000A -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x5EF04 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60806 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60808 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60BD2 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60BD4 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60BFA -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x60C02 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x6216A -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6215A -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x621EE -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x621C4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x621C0 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x62240 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x62242 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x636EC -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A412 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6A446 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6A448 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B3AB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3AD -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3B2 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3B9 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x68C82 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3C0 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3C2 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3F8 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B3FA -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3FB -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3FC -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B3FF -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B400 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B401 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B403 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B406 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B409 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B40A -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B40B -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B40C -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6B40E -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B426 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B498 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B49A -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6B49C -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x60BEA -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6341C -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6344C -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x63FBC -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x63FBE -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x64A48 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x64A4A -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x68458 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6845A -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A39A -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6A39C -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C2232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1C20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1C20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x61788 -Name:Speed base throttle limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11FF7A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6B3BF -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x5EF14 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5EF2C -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5F216 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x60C0C -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61E4C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61E44 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61E5C -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61E54 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61E6C -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61E64 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x61E7C -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61F18 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x632E8 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x63644 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63634 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x63670 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63660 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x6369C -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6368C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x5ED3C -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x5ED5C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x5ED4C -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x5ED6C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x5F404 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x611EE -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x61F38 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61F50 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x61F42 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x61F5A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A1210 -ROMLocationX:0x1A13A0 -ROMLocationY:0x1A1530 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0D60 -ROMLocationX:0x1A0EF0 -ROMLocationY:0x1A1080 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1E90 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1D00 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A16C0 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A19E0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x63FE6 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x63FD4 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x64A32 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x65964 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6595A -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x66F50 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x66F5A -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x66FB8 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66FAE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66FDA -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66FD0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x66FFA -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x66FF0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x6701A -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x67010 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x67050 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x683B2 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x64104 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x64136 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x64114 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x64146 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x65918 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x6596E -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x65920 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x65976 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x649E0 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x646E2 -Name:KWOT low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x646EE -Name:KWOT high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1A06D8 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x66B1E -Name:Individual cylinder ignition trim -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x640F2 -Name:Individual cylinder fuel trim -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A070C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A0A40 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C2258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1C2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x61478 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_Accord_2015_EX-L_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5G2-A120 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x09000A +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x5EF04 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60806 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60808 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60BD2 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60BD4 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60BFA +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x60C02 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x6216A +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6215A +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x621EE +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x621C4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x621C0 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x62240 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x62242 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x636EC +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A412 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6A446 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6A448 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B3AB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3AD +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3B2 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3B9 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x68C82 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3C0 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3C2 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3F8 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B3FA +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3FB +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3FC +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B3FF +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B400 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B401 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B403 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B406 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B409 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B40A +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B40B +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B40C +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6B40E +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B426 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B498 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B49A +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6B49C +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x60BEA +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6341C +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6344C +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x63FBC +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x63FBE +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x64A48 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x64A4A +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x68458 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6845A +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A39A +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6A39C +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C2232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1C20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1C20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x61788 +Name:Speed base throttle limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11FF7A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6B3BF +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x5EF14 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5EF2C +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5F216 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x60C0C +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61E4C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61E44 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61E5C +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61E54 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61E6C +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61E64 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x61E7C +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61F18 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x632E8 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x63644 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63634 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x63670 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63660 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x6369C +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6368C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x5ED3C +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x5ED5C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x5ED4C +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x5ED6C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x5F404 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x611EE +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x61F38 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61F50 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x61F42 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x61F5A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A1210 +ROMLocationX:0x1A13A0 +ROMLocationY:0x1A1530 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0D60 +ROMLocationX:0x1A0EF0 +ROMLocationY:0x1A1080 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1E90 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1D00 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A16C0 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A19E0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x63FE6 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x63FD4 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x64A32 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x65964 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6595A +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x66F50 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x66F5A +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x66FB8 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66FAE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66FDA +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66FD0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x66FFA +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x66FF0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x6701A +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x67010 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x67050 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x683B2 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x64104 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x64136 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x64114 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x64146 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x65918 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x6596E +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x65920 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x65976 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x649E0 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x646E2 +Name:KWOT low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x646EE +Name:KWOT high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1A06D8 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x66B1E +Name:Individual cylinder ignition trim +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x640F2 +Name:Individual cylinder fuel trim +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A070C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A0A40 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C2258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1C2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x61478 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5PA-9630.txt b/bin/Debug/Definitions/Generated/37805-5PA-9630_Honda_CR-V_2020.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5PA-9630.txt rename to bin/Debug/Definitions/Generated/37805-5PA-9630_Honda_CR-V_2020.txt index 57e7a6e..3c3071d 100644 --- a/bin/Debug/Definitions/Generated/37805-5PA-9630.txt +++ b/bin/Debug/Definitions/Generated/37805-5PA-9630_Honda_CR-V_2020.txt @@ -1,1636 +1,1636 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5PA-9630 -37805-5PA-9830 -37805-5PA-9530 -37805-5PA-9830 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8026D59E -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D6CD -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D6CE -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D5B0 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D592 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D760 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D761 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D593 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D596 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D762 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D764 -Name:Engine oil pressure sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D765 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D59B -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D59C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D59D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D766 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D6E9 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213F72 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021400C -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213072 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213074 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021376A -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213768 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128C6 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213164 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213E14 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212C14 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E8D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802129BC -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129BE -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129C0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213C46 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213EE0 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802142D4 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021433E -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021434A -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FDB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FDC -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE4 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE9 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF2 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF7 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80276117 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F6D -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF1 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FFA -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276001 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213C20 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276008 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027781A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277488 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277492 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277850 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277852 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277870 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277872 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FEB -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802139E8 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212B26 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802128C6 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B6 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B2 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732AA -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x802125CC -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D2 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125CE -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D0 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277480 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80277538 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x802183A0 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802150B6 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021749A -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021746A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802174AA -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021747A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802174BA -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021748A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80217DC4 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80217DB2 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80237EF6 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8026BF78 -ROMLocationX:0x8026B938 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80234396 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215AAC -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B06 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214D78 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B10 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AB6 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B1A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214D82 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B24 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216B0A -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216B5A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216B1A -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216B6A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80244158 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216D0A -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80245558 -ROMLocationX:0x802457D8 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021EB24 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021502C -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x8021EB88 -ROMLocationX:0x8021EBEC -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802150DE -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80237BD6 -ROMLocationX:0x802378B6 -ROMLocationY:0x80237596 -Name:WOT lambda adjustment low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802152B4 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802152BE -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025DAB8 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C5D4 -Unit1:MAP -IsNotDefined:true -############################# -ROMLocationTable:0x80223E7A -ROMLocationX:0x80223CEA -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C6C4 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D42A -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8026ACC2 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80216138 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802160C0 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C7B4 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C7B4 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021660E -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7EA0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C74 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C7C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C84 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C5C -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C8C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C54 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80215B3A -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215AFE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AEA -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B08 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023A5D8 -ROMLocationX:0x8023A2B8 -ROMLocationY:0x80239F98 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021527A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215270 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021703E -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021705E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8002B3BC -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80237248 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237568 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D8DA -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD8A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD62 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021D88A -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266950 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D9F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026A7D0 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021DEF2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802774EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802774DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x8027754C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8027755C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80277568 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277580 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802775C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277828 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277844 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277860 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027788C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8002CB2C -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B614 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C692 -Unit1:Speed -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B86C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BAC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BD1C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BF74 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C1CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C67C -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022214E -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80222496 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233B98 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D28 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802215A2 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802691F0 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80226678 -Name:Temperature based boost limit -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C912 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 11 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002CFDC -Name:Driving force 12 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D234 -Name:Driving force 13 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D48C -Name:Driving force 14 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D6E4 -Name:Driving force 15 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D93C -Name:Driving force 16 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DB94 -Name:Driving force 17 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DDEC -Name:Driving force 18 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E044 -Name:Driving force 19 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E29C -Name:Driving force 20 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E4F4 -Name:Driving force 21 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E74C -Name:Driving force 22 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E9A4 -Name:Driving force 23 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 24 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EE54 -Name:Driving force 25 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F0AC -Name:Driving force 26 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F304 -Name:Driving force 27 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023BDB8 -Name:Driving force 28 new set -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C010 -Name:Driving force 29 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C268 -Name:Driving force 30 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C4C0 -Name:Driving force 31 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C718 -Name:Driving force 32 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C970 -Name:Driving force 33 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CBC8 -Name:Driving force 34 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CE20 -Name:Driving force 35 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D078 -Name:Driving force 36 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D2D0 -Name:Driving force 37 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D528 -Name:Driving force 38 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D780 -Name:Driving force 39 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D9D8 -Name:Driving force 40 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DC30 -Name:Driving force 41 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DE88 -Name:Driving force 42 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E0E0 -Name:Driving force 43 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E338 -Name:Driving force 44 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E590 -Name:Driving force 45 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E7E8 -Name:Driving force 46 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EA40 -Name:Driving force 47 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EC98 -Name:Driving force 48 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EEF0 -Name:Driving force 49 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F148 -Name:Driving force 50 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F3A0 -Name:Driving force 51 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F5F8 -Name:Driving force 52 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F850 -Name:Driving force 53 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FAA8 -Name:Driving force 54 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FD00 -Name:Driving force 55 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802152E8 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802152F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_CR-V_2020_EX, EX-L, Touring_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5PA-9630 +37805-5PA-9830 +37805-5PA-9530 +37805-5PA-9830 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8026D59E +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D6CD +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D6CE +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D5B0 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D592 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D760 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D761 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D593 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D596 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D762 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D764 +Name:Engine oil pressure sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D765 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D59B +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D59C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D59D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D766 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D6E9 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213F72 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021400C +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213072 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213074 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021376A +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213768 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128C6 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213164 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213E14 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212C14 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E8D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802129BC +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129BE +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129C0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213C46 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213EE0 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802142D4 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021433E +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021434A +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FDB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FDC +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE4 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE9 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF2 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF7 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80276117 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F6D +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF1 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FFA +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276001 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213C20 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276008 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027781A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277488 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277492 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277850 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277852 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277870 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277872 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FEB +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802139E8 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212B26 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802128C6 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B6 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B2 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732AA +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x802125CC +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D2 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125CE +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D0 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277480 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80277538 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x802183A0 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802150B6 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021749A +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021746A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802174AA +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021747A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802174BA +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021748A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80217DC4 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80217DB2 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80237EF6 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8026BF78 +ROMLocationX:0x8026B938 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80234396 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215AAC +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B06 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214D78 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B10 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AB6 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B1A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214D82 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B24 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216B0A +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216B5A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216B1A +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216B6A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80244158 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216D0A +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80245558 +ROMLocationX:0x802457D8 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021EB24 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021502C +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x8021EB88 +ROMLocationX:0x8021EBEC +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802150DE +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80237BD6 +ROMLocationX:0x802378B6 +ROMLocationY:0x80237596 +Name:WOT lambda adjustment low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802152B4 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802152BE +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025DAB8 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C5D4 +Unit1:MAP +IsNotDefined:true +############################# +ROMLocationTable:0x80223E7A +ROMLocationX:0x80223CEA +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C6C4 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D42A +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8026ACC2 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80216138 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802160C0 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C7B4 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C7B4 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021660E +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7EA0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C74 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C7C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C84 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C5C +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C8C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C54 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80215B3A +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215AFE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AEA +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B08 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023A5D8 +ROMLocationX:0x8023A2B8 +ROMLocationY:0x80239F98 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021527A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215270 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021703E +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021705E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8002B3BC +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80237248 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237568 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D8DA +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD8A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD62 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021D88A +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266950 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D9F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026A7D0 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021DEF2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802774EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802774DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x8027754C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8027755C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80277568 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277580 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802775C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277828 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277844 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277860 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027788C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8002CB2C +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B614 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C692 +Unit1:Speed +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B86C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BAC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BD1C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BF74 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C1CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C67C +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022214E +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80222496 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233B98 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D28 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802215A2 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802691F0 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80226678 +Name:Temperature based boost limit +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C912 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 11 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002CFDC +Name:Driving force 12 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D234 +Name:Driving force 13 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D48C +Name:Driving force 14 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D6E4 +Name:Driving force 15 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D93C +Name:Driving force 16 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DB94 +Name:Driving force 17 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DDEC +Name:Driving force 18 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E044 +Name:Driving force 19 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E29C +Name:Driving force 20 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E4F4 +Name:Driving force 21 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E74C +Name:Driving force 22 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E9A4 +Name:Driving force 23 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 24 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EE54 +Name:Driving force 25 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F0AC +Name:Driving force 26 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F304 +Name:Driving force 27 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023BDB8 +Name:Driving force 28 new set +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C010 +Name:Driving force 29 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C268 +Name:Driving force 30 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C4C0 +Name:Driving force 31 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C718 +Name:Driving force 32 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C970 +Name:Driving force 33 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CBC8 +Name:Driving force 34 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CE20 +Name:Driving force 35 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D078 +Name:Driving force 36 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D2D0 +Name:Driving force 37 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D528 +Name:Driving force 38 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D780 +Name:Driving force 39 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D9D8 +Name:Driving force 40 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DC30 +Name:Driving force 41 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DE88 +Name:Driving force 42 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E0E0 +Name:Driving force 43 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E338 +Name:Driving force 44 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E590 +Name:Driving force 45 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E7E8 +Name:Driving force 46 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EA40 +Name:Driving force 47 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EC98 +Name:Driving force 48 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EEF0 +Name:Driving force 49 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F148 +Name:Driving force 50 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F3A0 +Name:Driving force 51 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F5F8 +Name:Driving force 52 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F850 +Name:Driving force 53 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FAA8 +Name:Driving force 54 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FD00 +Name:Driving force 55 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802152E8 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802152F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5PA-9640.txt b/bin/Debug/Definitions/Generated/37805-5PA-9640_Honda_CR-V_2020.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5PA-9640.txt rename to bin/Debug/Definitions/Generated/37805-5PA-9640_Honda_CR-V_2020.txt index 0f69532..3671b6e 100644 --- a/bin/Debug/Definitions/Generated/37805-5PA-9640.txt +++ b/bin/Debug/Definitions/Generated/37805-5PA-9640_Honda_CR-V_2020.txt @@ -1,1641 +1,1641 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5PA-9640 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x8026D5D0 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D6FF -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D700 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D5E2 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D5C4 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D792 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D793 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D5C5 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D5C8 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D794 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D796 -Name:Engine oil pressure sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8026D797 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D5CD -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D5CE -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D5CF -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8026D798 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026D71B -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213F84 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021401E -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021307C -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021307E -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021377C -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021377A -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128D0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021316E -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213E26 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212C1E -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E8D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802129BC -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129BE -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129C0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213C46 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213EE0 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802142D4 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021433E -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021434A -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FDB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FDC -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE4 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE9 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF2 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF7 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80276117 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F6D -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF1 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FFA -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276001 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213C20 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276008 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027781A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277488 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277492 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277850 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277852 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277870 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277872 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FEB -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802139E8 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212B26 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802128C6 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B6 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B2 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732AA -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x802125CC -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D2 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125CE -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D0 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277480 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80277538 -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x802183D2 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802150C8 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802174CC -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021749C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802174DC -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802174AC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802174EC -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802174BC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80217DF6 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80217DE4 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80237F28 -Name:Lean best torque -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8026BFAA -ROMLocationX:0x8026B64A -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802343C8 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215ABE -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B18 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214D8A -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B22 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AC8 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B2C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214D94 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B36 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216B3C -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216B8C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216B4C -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216B9C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8024418A -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216D3C -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8024558A -ROMLocationX:0x8024580A -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021EB56 -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021502C -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x8021EBBA -ROMLocationX:0x8021EC1E -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802150F0 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80237C08 -ROMLocationX:0x802378E8 -ROMLocationY:0x802375C8 -Name:WOT lambda adjustment low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802152C6 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802152D0 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025DAEA -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C606 -Unit1:MAP -IsNotDefined:true -############################# -ROMLocationTable:0x80223EAC -ROMLocationX:0x80223D1C -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C6F6 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D42A -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8026ACF4 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021614A -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802160D2 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C7E6 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C7E6 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80216620 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7EA0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C74 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C7C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C84 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C5C -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C8C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C54 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80215B3A -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215AFE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AEA -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B08 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8023A5D8 -ROMLocationX:0x8023A2B8 -ROMLocationY:0x80239F98 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021527A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215270 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021703E -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021705E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8002B3BC -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80237248 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237568 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D8DA -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD8A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD62 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021D88A -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266950 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D9F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026A7D0 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021DEF2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802774EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802774DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x8027754C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8027755C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80277568 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277580 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802775C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277828 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277844 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277860 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027788C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8002CB2C -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B614 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C692 -Unit1:Speed -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B86C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BAC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BD1C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BF74 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C1CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C67C -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8022214E -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80222496 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233B98 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D28 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802215A2 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802691F0 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80226678 -Name:Temperature based boost limit -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C912 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 11 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002CFDC -Name:Driving force 12 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D234 -Name:Driving force 13 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D48C -Name:Driving force 14 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D6E4 -Name:Driving force 15 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D93C -Name:Driving force 16 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DB94 -Name:Driving force 17 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DDEC -Name:Driving force 18 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E044 -Name:Driving force 19 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E29C -Name:Driving force 20 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E4F4 -Name:Driving force 21 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E74C -Name:Driving force 22 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E9A4 -Name:Driving force 23 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 24 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EE54 -Name:Driving force 25 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F0AC -Name:Driving force 26 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F304 -Name:Driving force 27 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023BDB8 -Name:Driving force 28 new set -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C010 -Name:Driving force 29 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C268 -Name:Driving force 30 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C4C0 -Name:Driving force 31 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C718 -Name:Driving force 32 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C970 -Name:Driving force 33 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CBC8 -Name:Driving force 34 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CE20 -Name:Driving force 35 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D078 -Name:Driving force 36 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D2D0 -Name:Driving force 37 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D528 -Name:Driving force 38 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D780 -Name:Driving force 39 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D9D8 -Name:Driving force 40 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DC30 -Name:Driving force 41 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DE88 -Name:Driving force 42 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E0E0 -Name:Driving force 43 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E338 -Name:Driving force 44 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E590 -Name:Driving force 45 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E7E8 -Name:Driving force 46 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EA40 -Name:Driving force 47 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EC98 -Name:Driving force 48 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EEF0 -Name:Driving force 49 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F148 -Name:Driving force 50 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F3A0 -Name:Driving force 51 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F5F8 -Name:Driving force 52 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F850 -Name:Driving force 53 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FAA8 -Name:Driving force 54 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FD00 -Name:Driving force 55 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802152E8 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802152F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80239D02 -Name:LAF voltage to lambda -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_CR-V_2020_EX, EX-L, Touring_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5PA-9640 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x8026D5D0 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D6FF +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D700 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D5E2 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D5C4 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D792 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D793 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D5C5 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D5C8 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D794 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D796 +Name:Engine oil pressure sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8026D797 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D5CD +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D5CE +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D5CF +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8026D798 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026D71B +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213F84 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021401E +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021307C +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021307E +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021377C +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021377A +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128D0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021316E +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213E26 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212C1E +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E8D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802129BC +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129BE +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129C0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213C46 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213EE0 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802142D4 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021433E +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021434A +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FDB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FDC +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE4 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE9 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF2 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF7 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80276117 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F6D +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF1 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FFA +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276001 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213C20 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276008 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027781A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277488 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277492 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277850 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277852 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277870 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277872 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FEB +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802139E8 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212B26 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802128C6 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B6 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B2 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732AA +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x802125CC +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D2 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125CE +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D0 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277480 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80277538 +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x802183D2 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802150C8 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802174CC +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021749C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802174DC +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802174AC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802174EC +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802174BC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80217DF6 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80217DE4 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80237F28 +Name:Lean best torque +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8026BFAA +ROMLocationX:0x8026B64A +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802343C8 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215ABE +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B18 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214D8A +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B22 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AC8 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B2C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214D94 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B36 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216B3C +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216B8C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216B4C +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216B9C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8024418A +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216D3C +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8024558A +ROMLocationX:0x8024580A +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021EB56 +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021502C +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x8021EBBA +ROMLocationX:0x8021EC1E +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802150F0 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80237C08 +ROMLocationX:0x802378E8 +ROMLocationY:0x802375C8 +Name:WOT lambda adjustment low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802152C6 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802152D0 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025DAEA +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C606 +Unit1:MAP +IsNotDefined:true +############################# +ROMLocationTable:0x80223EAC +ROMLocationX:0x80223D1C +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C6F6 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D42A +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8026ACF4 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021614A +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802160D2 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C7E6 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C7E6 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80216620 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7EA0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C74 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C7C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C84 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C5C +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C8C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C54 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80215B3A +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215AFE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AEA +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B08 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8023A5D8 +ROMLocationX:0x8023A2B8 +ROMLocationY:0x80239F98 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021527A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215270 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021703E +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021705E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8002B3BC +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80237248 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237568 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D8DA +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD8A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD62 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021D88A +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266950 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D9F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026A7D0 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021DEF2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802774EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802774DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x8027754C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8027755C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80277568 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277580 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802775C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277828 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277844 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277860 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027788C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8002CB2C +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B614 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C692 +Unit1:Speed +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B86C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BAC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BD1C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BF74 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C1CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C67C +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8022214E +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80222496 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233B98 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D28 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802215A2 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802691F0 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80226678 +Name:Temperature based boost limit +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C912 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 11 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002CFDC +Name:Driving force 12 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D234 +Name:Driving force 13 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D48C +Name:Driving force 14 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D6E4 +Name:Driving force 15 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D93C +Name:Driving force 16 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DB94 +Name:Driving force 17 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DDEC +Name:Driving force 18 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E044 +Name:Driving force 19 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E29C +Name:Driving force 20 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E4F4 +Name:Driving force 21 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E74C +Name:Driving force 22 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E9A4 +Name:Driving force 23 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 24 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EE54 +Name:Driving force 25 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F0AC +Name:Driving force 26 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F304 +Name:Driving force 27 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023BDB8 +Name:Driving force 28 new set +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C010 +Name:Driving force 29 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C268 +Name:Driving force 30 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C4C0 +Name:Driving force 31 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C718 +Name:Driving force 32 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C970 +Name:Driving force 33 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CBC8 +Name:Driving force 34 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CE20 +Name:Driving force 35 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D078 +Name:Driving force 36 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D2D0 +Name:Driving force 37 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D528 +Name:Driving force 38 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D780 +Name:Driving force 39 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D9D8 +Name:Driving force 40 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DC30 +Name:Driving force 41 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DE88 +Name:Driving force 42 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E0E0 +Name:Driving force 43 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E338 +Name:Driving force 44 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E590 +Name:Driving force 45 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E7E8 +Name:Driving force 46 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EA40 +Name:Driving force 47 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EC98 +Name:Driving force 48 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EEF0 +Name:Driving force 49 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F148 +Name:Driving force 50 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F3A0 +Name:Driving force 51 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F5F8 +Name:Driving force 52 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F850 +Name:Driving force 53 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FAA8 +Name:Driving force 54 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FD00 +Name:Driving force 55 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802152E8 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802152F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80239D02 +Name:LAF voltage to lambda +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5PA-CC10.txt b/bin/Debug/Definitions/Generated/37805-5PA-CC10.txt index 7f8aba3..700ad5e 100644 --- a/bin/Debug/Definitions/Generated/37805-5PA-CC10.txt +++ b/bin/Debug/Definitions/Generated/37805-5PA-CC10.txt @@ -10,6 +10,10 @@ 37805-5PA-AD10 37805-5PA-AB10 ####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### ####################################################################### ####################################################################### # ROM Parameters Definitions: diff --git a/bin/Debug/Definitions/Generated/37805-5YF-A430.txt b/bin/Debug/Definitions/Generated/37805-5YF-A430_Acura_RDX_2020.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5YF-A430.txt rename to bin/Debug/Definitions/Generated/37805-5YF-A430_Acura_RDX_2020.txt index bb51854..ecfe9a3 100644 --- a/bin/Debug/Definitions/Generated/37805-5YF-A430.txt +++ b/bin/Debug/Definitions/Generated/37805-5YF-A430_Acura_RDX_2020.txt @@ -1,695 +1,695 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5YF-A430 -37805-5YF-A130 -37805-5YF-A230 -37805-5YF-A330 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x80211F78 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802122BA -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802122BC -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802122BE -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80212312 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212740 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802127E6 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802127E8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212F7E -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212F80 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021354A -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213660 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802137C2 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802137DA -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021385C -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213C0C -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213C6A -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80213C7A -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274CE2 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274CE3 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274CE6 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274CEB -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274CEC -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80274CED -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274EA6 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274EA7 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274EA8 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274EAB -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80274EAC -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802751BE -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274CEE -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274D04 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80274E2C -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80274E2D -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80274E3C -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128CC -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80212C18 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80274CBE -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E8D -Name:Sport mode boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E92 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x802145B8 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802145C0 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802145A8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x802145C8 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802145A0 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x802145D0 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214598 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x80216F1E -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216EEE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216F2E -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216EFE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216F3E -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216F0E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802178BC -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802178AA -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x8021460A -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021549C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214614 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802154B0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214984 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802149A2 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802149CA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802149AC -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802149D4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215460 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215492 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021546A -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802154A6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021644E -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021649E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x8021645E -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802164AE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215A12 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023EF48 -ROMLocationX:0x8023F1C8 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023DB48 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B214 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802736D0 -ROMLocationX:0x80273090 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802733B0 -ROMLocationX:0x80272D70 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021BCDC -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BD04 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8021FA6E -ROMLocationX:0x8021FAD2 -Name:TC max boost (IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FA0A -Name:TC max boost (PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237890 -ROMLocationX:0x80237570 -ROMLocationY:0x802370C0 -Name:WOT lambda adjustment low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237700 -ROMLocationX:0x802373E0 -ROMLocationY:0x802370C0 -Name:WOT lambda adjustment high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237BB0 -Name:Lean best torque low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237A20 -Name:Lean best torque high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80225694 -ROMLocationX:0x80225504 -Name:Knock air limit low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802255CC -ROMLocationX:0x8022543C -Name:Knock air limit high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027241A -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80260468 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BBC4 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802159B2 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215E80 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D30 -Name:EGR Ignition low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233BA0 -Name:EGR Ignition high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C4A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C40 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021BD2C -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021BD2C -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E7EA0 -Name:Sport Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023091C -Name:Turbine overspeed avoidance upper limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B23C -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E7F4C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E7F5C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801E7F68 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7F80 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7FC2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8228 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8244 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8260 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_RDX_2020_SH-AWD_2.0L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5YF-A430 +37805-5YF-A130 +37805-5YF-A230 +37805-5YF-A330 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x80211F78 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802122BA +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802122BC +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802122BE +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80212312 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212740 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802127E6 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802127E8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212F7E +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212F80 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021354A +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213660 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802137C2 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802137DA +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021385C +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213C0C +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213C6A +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80213C7A +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274CE2 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274CE3 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274CE6 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274CEB +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274CEC +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80274CED +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274EA6 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274EA7 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274EA8 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274EAB +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80274EAC +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802751BE +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274CEE +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274D04 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80274E2C +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80274E2D +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80274E3C +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128CC +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80212C18 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80274CBE +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E8D +Name:Sport mode boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E92 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x802145B8 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802145C0 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802145A8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x802145C8 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802145A0 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x802145D0 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214598 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x80216F1E +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216EEE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216F2E +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216EFE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216F3E +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216F0E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802178BC +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802178AA +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x8021460A +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021549C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214614 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802154B0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214984 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802149A2 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802149CA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802149AC +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802149D4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215460 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215492 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021546A +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802154A6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021644E +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021649E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x8021645E +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802164AE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215A12 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023EF48 +ROMLocationX:0x8023F1C8 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023DB48 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B214 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802736D0 +ROMLocationX:0x80273090 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802733B0 +ROMLocationX:0x80272D70 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021BCDC +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BD04 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8021FA6E +ROMLocationX:0x8021FAD2 +Name:TC max boost (IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FA0A +Name:TC max boost (PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237890 +ROMLocationX:0x80237570 +ROMLocationY:0x802370C0 +Name:WOT lambda adjustment low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237700 +ROMLocationX:0x802373E0 +ROMLocationY:0x802370C0 +Name:WOT lambda adjustment high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237BB0 +Name:Lean best torque low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237A20 +Name:Lean best torque high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80225694 +ROMLocationX:0x80225504 +Name:Knock air limit low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802255CC +ROMLocationX:0x8022543C +Name:Knock air limit high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027241A +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80260468 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BBC4 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802159B2 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215E80 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D30 +Name:EGR Ignition low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233BA0 +Name:EGR Ignition high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C4A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C40 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021BD2C +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021BD2C +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E7EA0 +Name:Sport Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023091C +Name:Turbine overspeed avoidance upper limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B23C +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E7F4C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E7F5C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801E7F68 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7F80 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7FC2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8228 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8244 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8260 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-5YF-A880.txt b/bin/Debug/Definitions/Generated/37805-5YF-A880_Acura_RDX_2019.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-5YF-A880.txt rename to bin/Debug/Definitions/Generated/37805-5YF-A880_Acura_RDX_2019.txt index 456770b..3eaa0b9 100644 --- a/bin/Debug/Definitions/Generated/37805-5YF-A880.txt +++ b/bin/Debug/Definitions/Generated/37805-5YF-A880_Acura_RDX_2019.txt @@ -1,693 +1,693 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-5YF-A880 -37805-5YF-A580 -37805-5YF-A780 -37805-5YF-A680 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x1FFFFA -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x80211A82 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80211DF0 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211DF2 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211DF4 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80211E48 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212274 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212316 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212318 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212A1A -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212A1C -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212FBA -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802130C8 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021322A -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80213242 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802132C4 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021366C -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802136C6 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802136D2 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80271E5D -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80271E5E -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80271E61 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80271E66 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80271E67 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80271E68 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80272017 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80272018 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80272019 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027201C -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8027201D -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8027232F -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80271E69 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80271E7F -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80271F9D -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80271F9E -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80271FAD -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802123F8 -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802126C0 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80271E32 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E8D -Name:Sport mode boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x801E7E92 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80214004 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021400C -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213FF4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x80214014 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213FEC -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x8021401C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80213FE4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x80216942 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216912 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216952 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216922 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80216962 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80216932 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802172C0 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802172AE -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x80214056 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214EC0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214060 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214ED4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802143D0 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802143EE -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214416 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802143F8 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214420 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214E84 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214EB6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214E8E -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214ECA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215E72 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215EC2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215E82 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215ED2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215436 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023E358 -ROMLocationX:0x8023E5D8 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8023CF58 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B5F4 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80270858 -ROMLocationX:0x80270218 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80270538 -ROMLocationX:0x8026FEF8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C06C -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C094 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8021EEFE -ROMLocationX:0x8021EF62 -Name:TC max boost (IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021EE9A -Name:TC max boost (PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236CA0 -ROMLocationX:0x80236980 -ROMLocationY:0x80236660 -Name:WOT lambda adjustment low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236B10 -ROMLocationX:0x802367F0 -ROMLocationY:0x802364D0 -Name:WOT lambda adjustment high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236FC0 -Name:Lean best torque low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236E30 -Name:Lean best torque high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80224AA4 -ROMLocationX:0x80224914 -Name:Knock air limit low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802249DC -ROMLocationX:0x8022484C -Name:Knock air limit high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8026F5CA -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8025E5B8 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802153D6 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802158A4 -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233140 -Name:EGR Ignition low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80232FB0 -Name:EGR Ignition high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021468C -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214682 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021C0BC -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C0BC -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E7EA0 -Name:Sport Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8022FD2C -Name:Turbine overspeed avoidance upper limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021B61C -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x801E7F4C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x801E7F5C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x801E7F68 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7F80 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E7FC2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8228 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8244 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x801E8260 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_RDX_2019_SH-AWD_2.0L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-5YF-A880 +37805-5YF-A580 +37805-5YF-A780 +37805-5YF-A680 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x80211A82 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80211DF0 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211DF2 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211DF4 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80211E48 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212274 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212316 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212318 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212A1A +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212A1C +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212FBA +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802130C8 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021322A +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80213242 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802132C4 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021366C +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802136C6 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802136D2 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80271E5D +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80271E5E +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80271E61 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80271E66 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80271E67 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80271E68 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80272017 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80272018 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80272019 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027201C +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8027201D +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8027232F +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80271E69 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80271E7F +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80271F9D +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80271F9E +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80271FAD +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802123F8 +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802126C0 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80271E32 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E8D +Name:Sport mode boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x801E7E92 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80214004 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021400C +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213FF4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x80214014 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213FEC +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x8021401C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80213FE4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x80216942 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216912 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216952 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216922 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80216962 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80216932 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802172C0 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802172AE +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x80214056 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214EC0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214060 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214ED4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802143D0 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802143EE +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214416 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802143F8 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214420 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214E84 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214EB6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214E8E +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214ECA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215E72 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215EC2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215E82 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215ED2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215436 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023E358 +ROMLocationX:0x8023E5D8 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8023CF58 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B5F4 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80270858 +ROMLocationX:0x80270218 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80270538 +ROMLocationX:0x8026FEF8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C06C +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C094 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8021EEFE +ROMLocationX:0x8021EF62 +Name:TC max boost (IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021EE9A +Name:TC max boost (PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236CA0 +ROMLocationX:0x80236980 +ROMLocationY:0x80236660 +Name:WOT lambda adjustment low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236B10 +ROMLocationX:0x802367F0 +ROMLocationY:0x802364D0 +Name:WOT lambda adjustment high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236FC0 +Name:Lean best torque low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236E30 +Name:Lean best torque high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80224AA4 +ROMLocationX:0x80224914 +Name:Knock air limit low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802249DC +ROMLocationX:0x8022484C +Name:Knock air limit high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8026F5CA +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8025E5B8 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802153D6 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802158A4 +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233140 +Name:EGR Ignition low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80232FB0 +Name:EGR Ignition high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021468C +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214682 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021C0BC +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C0BC +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E7EA0 +Name:Sport Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8022FD2C +Name:Turbine overspeed avoidance upper limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021B61C +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x801E7F4C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x801E7F5C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x801E7F68 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7F80 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E7FC2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8228 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8244 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x801E8260 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-64A-A540.txt b/bin/Debug/Definitions/Generated/37805-64A-A540.txt index 350579c..fa9e641 100644 --- a/bin/Debug/Definitions/Generated/37805-64A-A540.txt +++ b/bin/Debug/Definitions/Generated/37805-64A-A540.txt @@ -7,6 +7,10 @@ ####################################################################### 37805-64A-A540 ####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### ####################################################################### ####################################################################### # ROM Parameters Definitions: diff --git a/bin/Debug/Definitions/Generated/37805-64L-J530.txt b/bin/Debug/Definitions/Generated/37805-64L-J530.txt index 53934dd..244dcdb 100644 --- a/bin/Debug/Definitions/Generated/37805-64L-J530.txt +++ b/bin/Debug/Definitions/Generated/37805-64L-J530.txt @@ -9,6 +9,10 @@ 37805-64A-A620 37805-64D-P510 ####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x1FFFFA +####################################################################### ####################################################################### ####################################################################### # ROM Parameters Definitions: diff --git a/bin/Debug/Definitions/Generated/37805-PZD-3090.txt b/bin/Debug/Definitions/Generated/37805-PZD-3090_Honda_Element_2007_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-PZD-3090.txt rename to bin/Debug/Definitions/Generated/37805-PZD-3090_Honda_Element_2007_2008.txt index ab1080a..616a8c0 100644 --- a/bin/Debug/Definitions/Generated/37805-PZD-3090.txt +++ b/bin/Debug/Definitions/Generated/37805-PZD-3090_Honda_Element_2007_2008.txt @@ -1,164 +1,164 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZD-3090 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xA1F6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x100053 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10005B -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100063 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10006B -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100073 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100077 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100087 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10008F -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xA692 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16C30 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x9C46 -Name:MAF Load Limit -Unit1:Mg/Stroke -TableSize:4x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xAE38 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14644 -ROMLocationY:0x14448 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14654 -ROMLocationY:0x14448 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14810 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14828 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Element_2007_2008_EX, LX, SC_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZD-3090 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xA1F6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x100053 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10005B +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100063 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10006B +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100073 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100077 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100087 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10008F +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xA692 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16C30 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x9C46 +Name:MAF Load Limit +Unit1:Mg/Stroke +TableSize:4x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xAE38 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14644 +ROMLocationY:0x14448 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14654 +ROMLocationY:0x14448 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14810 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14828 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-PZD-4160.txt b/bin/Debug/Definitions/Generated/37805-PZD-4160_Honda_Element_2007_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-PZD-4160.txt rename to bin/Debug/Definitions/Generated/37805-PZD-4160_Honda_Element_2007_2008.txt index d33f6cb..b98d8f8 100644 --- a/bin/Debug/Definitions/Generated/37805-PZD-4160.txt +++ b/bin/Debug/Definitions/Generated/37805-PZD-4160_Honda_Element_2007_2008.txt @@ -1,164 +1,164 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZD-4160 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xA1F6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x100053 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10005B -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100063 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10006B -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100073 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100077 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x100087 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10008F -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xA692 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16D50 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x9C46 -Name:MAF Load Limit -Unit1:Mg/Stroke -TableSize:4x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xAE38 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14764 -ROMLocationY:0x14568 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14774 -ROMLocationY:0x14568 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14930 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14948 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Element_2007_2008_EX, LX, SC_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZD-4160 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xA1F6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x100053 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10005B +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100063 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10006B +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100073 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100077 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x100087 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10008F +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xA692 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16D50 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x9C46 +Name:MAF Load Limit +Unit1:Mg/Stroke +TableSize:4x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xAE38 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14764 +ROMLocationY:0x14568 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14774 +ROMLocationY:0x14568 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14930 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14948 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-PZD-A380.txt b/bin/Debug/Definitions/Generated/37805-PZD-A380_Honda_Element_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-PZD-A380.txt rename to bin/Debug/Definitions/Generated/37805-PZD-A380_Honda_Element_2010_2011.txt index 546c7ca..ac86956 100644 --- a/bin/Debug/Definitions/Generated/37805-PZD-A380.txt +++ b/bin/Debug/Definitions/Generated/37805-PZD-A380_Honda_Element_2010_2011.txt @@ -1,164 +1,164 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZD-A380 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xA20A -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x15B40 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B48 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B50 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B58 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B60 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B64 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B74 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B7C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xA696 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16CC4 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x9C4E -Name:MAF Load Limit -Unit1:Mg/Stroke -TableSize:4x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xAE4C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14678 -ROMLocationY:0x1447C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14688 -ROMLocationY:0x1447C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14858 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14870 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Element_2010_2011_EX, LX_EX, LX, SC_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZD-A380 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xA20A +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x15B40 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B48 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B50 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B58 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B60 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B64 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B74 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B7C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xA696 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16CC4 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x9C4E +Name:MAF Load Limit +Unit1:Mg/Stroke +TableSize:4x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xAE4C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14678 +ROMLocationY:0x1447C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14688 +ROMLocationY:0x1447C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14858 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14870 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-PZD-A480.txt b/bin/Debug/Definitions/Generated/37805-PZD-A480_Honda_Element_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-PZD-A480.txt rename to bin/Debug/Definitions/Generated/37805-PZD-A480_Honda_Element_2010_2011.txt index 001b03e..389e01b 100644 --- a/bin/Debug/Definitions/Generated/37805-PZD-A480.txt +++ b/bin/Debug/Definitions/Generated/37805-PZD-A480_Honda_Element_2010_2011.txt @@ -1,164 +1,164 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZD-A480 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xA20A -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x15B40 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B48 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B50 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B58 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B60 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B64 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B74 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x15B7C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xA696 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16CC4 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x9C4E -Name:MAF Load Limit -Unit1:Mg/Stroke -TableSize:4x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xAE4C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14678 -ROMLocationY:0x1447C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14688 -ROMLocationY:0x1447C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14858 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14870 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Element_2010_2011_EX, LX_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZD-A480 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xA20A +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x15B40 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B48 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B50 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B58 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B60 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B64 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B74 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x15B7C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xA696 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16CC4 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x9C4E +Name:MAF Load Limit +Unit1:Mg/Stroke +TableSize:4x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xAE4C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14678 +ROMLocationY:0x1447C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14688 +ROMLocationY:0x1447C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14858 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14870 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-PZX-A080.txt b/bin/Debug/Definitions/Generated/37805-PZX-A080_Honda_S2000_2006_2007_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-PZX-A080.txt rename to bin/Debug/Definitions/Generated/37805-PZX-A080_Honda_S2000_2006_2007_2008.txt index 5ebc4a8..c495279 100644 --- a/bin/Debug/Definitions/Generated/37805-PZX-A080.txt +++ b/bin/Debug/Definitions/Generated/37805-PZX-A080_Honda_S2000_2006_2007_2008.txt @@ -1,69 +1,69 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZX-A080 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xA5D2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16154 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xADD4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x13B2C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x13B44 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_S2000_2006_2007_2008_Base, CR_Base_2.2L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZX-A080 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xA5D2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16154 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xADD4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x13B2C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x13B44 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-PZX-A210.txt b/bin/Debug/Definitions/Generated/37805-PZX-A210_Honda_S2000_2008_2009.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-PZX-A210.txt rename to bin/Debug/Definitions/Generated/37805-PZX-A210_Honda_S2000_2008_2009.txt index 87bf396..cc72e6f 100644 --- a/bin/Debug/Definitions/Generated/37805-PZX-A210.txt +++ b/bin/Debug/Definitions/Generated/37805-PZX-A210_Honda_S2000_2008_2009.txt @@ -1,1607 +1,1607 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-PZX-A210 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0ADD2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x0ADD0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x097B5 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A13E -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x143DC -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x09CBC -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14D52 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14D42 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x094BA -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094C8 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094C6 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x40F95 -Name:System control register 1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xA2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097E0 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14D6C -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14D74 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A6CE -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A6DE -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097A3 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097A8 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097AB -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x097AC -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097AD -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097A1 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097A5 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09799 -Name:Cruise control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097A2 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0976B -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A058 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A05A -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E31B -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097B0 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AD44 -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AD46 -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AD48 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AD22 -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0965C -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0978E -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0977D -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6CF88 -Name:Driving recorder enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3BE -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C5D8 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C5DA -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C5DC -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0977A -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0977B -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A5D0 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A5D2 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A818 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AE3C -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B73C -Name:P0420 Malfunction Threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B658 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B65A -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09690 -Name:Knock P0606 test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0952C -Name:P0600 gauge comms test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B6BE -Name:P2A00 Minimun Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B6BC -Name:P2A00 Maximum Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0979E -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA22BE -Name:Active knock retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22BF -Name:Active knock retard method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22C0 -Name:Active knock retard step -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22C1 -Name:Active knock retard min -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22C2 -Name:Active knock retard max retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09776 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B752 -Name:CAT readiness max MAP fluctuation -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0B754 -Name:CAT readiness max AF fluctuation -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x098A0 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA02 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA04 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA3B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A0F4 -Name:Secondary oxygen sensor heater enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6E6 -Name:P2270/P2271 secondary 02 rich or lean enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F6A0 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11DC0 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1256E -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3966B -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x9E8D4 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0FF04 -Name:1st gear throttle dampening enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2954 -Name:Active fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2955 -Name:Tuning method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2956 -Name:Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2957 -Name:Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2958 -Name:Use corrected wideband -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2960 -Name:Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2962 -Name:Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2965 -Name:Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2966 -Name:Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2968 -Name:Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2964 -Name:Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2970 -Name:Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2971 -Name:Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2972 -Name:Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2974 -Name:Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2976 -Name:Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2978 -Name:Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297A -Name:Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297C -Name:Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297E -Name:Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2980 -Name:Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2982 -Name:Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2984 -Name:Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2986 -Name:Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2988 -Name:Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2959 -Name:Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295A -Name:Maximum cam angle delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295C -Name:Maximum load delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295E -Name:Maximum rpm delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB296A -Name:Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1EDFE -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1EE02 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12384 -Name:Injector flow for dash -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11D46 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F2C8 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F684 -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x16118 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16154 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB06B8 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB09D8 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x143E6 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13B2C -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13B14 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13D44 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB0CF8 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB1018 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14498 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1563C -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16F90 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15774 -ROMLocationX:0x15904 -ROMLocationY:0x159CC -Name:WOT lambda adjustment low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x156AC -ROMLocationX:0x1583C -ROMLocationY:0x15A94 -Name:WOT lambda adjustment high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14C22 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1759E -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17594 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15540 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1554A -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15554 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1555E -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1558E -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x15648 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1567A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15658 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1568A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15668 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1569A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15A94 -Name:WOT lambda adjustment low (cat protect) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x159CC -Name:WOT lambda adjustment high (cat protect) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15904 -Name:WOT lambda adjustment low (regular) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1583C -Name:WOT lambda adjustment high (regular) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x16A16 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16A68 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x175DA -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x175D0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x175C6 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x175BC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x17602 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x175F8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x175EE -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x175E4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13A98 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13AB8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13AA8 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13AC8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15D76 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13018 -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1303E -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16A56 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16A4C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16A0E -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16A60 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x14DD4 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14DE0 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14DDA -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x14C30 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14C48 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14C3A -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14C52 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14BD8 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14BD0 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x14BE8 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14BE0 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x14BF8 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14BF0 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x14C08 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA2220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x179B4 -Name:Knock sensitivity low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17824 -Name:Knock sensitivity high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16430 -Name:Knock retard low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16368 -Name:Knock retard high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1506E -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15010 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1507E -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15020 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1505E -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15000 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xA210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA20FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xA2150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA21EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA21D6 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x1760C -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA22AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA22A8 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x16EF0 -Name:Minimum ignition low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16F18 -Name:Minimum ignition high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA22D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA247C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14704 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14434 -Name:Throttle index calculation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA3B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA3B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0xA3B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA3B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA3B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA3EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC7148 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246C4 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xC7468 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246CE -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1FC5C -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x297C4 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x297C0 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246C4 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246CE -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2620 -Name:Target lambda low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB27C4 -Name:Target lambda high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2A14 -Name:Active fuel tuning low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB3248 -Name:Active fuel tuning high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1F672 -Name:High speed throttle reduction -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_S2000_2008_2009_Base, CR_2.2L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-PZX-A210 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0ADD2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x0ADD0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x097B5 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A13E +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x143DC +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x09CBC +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14D52 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14D42 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x094BA +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094C8 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094C6 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x40F95 +Name:System control register 1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xA2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097E0 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14D6C +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14D74 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A6CE +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A6DE +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097A3 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097A8 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097AB +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x097AC +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097AD +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097A1 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097A5 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09799 +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097A2 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0976B +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A058 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A05A +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E31B +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097B0 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AD44 +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AD46 +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AD48 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AD22 +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0965C +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0978E +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0977D +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6CF88 +Name:Driving recorder enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3BE +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C5D8 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C5DA +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C5DC +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0977A +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0977B +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A5D0 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A5D2 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A818 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AE3C +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B73C +Name:P0420 Malfunction Threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B658 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B65A +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09690 +Name:Knock P0606 test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0952C +Name:P0600 gauge comms test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B6BE +Name:P2A00 Minimun Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B6BC +Name:P2A00 Maximum Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0979E +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BE +Name:Active knock retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22BF +Name:Active knock retard method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22C0 +Name:Active knock retard step +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22C1 +Name:Active knock retard min +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22C2 +Name:Active knock retard max retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09776 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B752 +Name:CAT readiness max MAP fluctuation +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0B754 +Name:CAT readiness max AF fluctuation +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x098A0 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA02 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA04 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA3B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A0F4 +Name:Secondary oxygen sensor heater enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6E6 +Name:P2270/P2271 secondary 02 rich or lean enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F6A0 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11DC0 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1256E +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3966B +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x9E8D4 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0FF04 +Name:1st gear throttle dampening enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2954 +Name:Active fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2955 +Name:Tuning method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2956 +Name:Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2957 +Name:Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2958 +Name:Use corrected wideband +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2960 +Name:Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2962 +Name:Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2965 +Name:Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2966 +Name:Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2968 +Name:Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2964 +Name:Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2970 +Name:Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2971 +Name:Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2972 +Name:Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2974 +Name:Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2976 +Name:Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2978 +Name:Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297A +Name:Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297C +Name:Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297E +Name:Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2980 +Name:Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2982 +Name:Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2984 +Name:Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2986 +Name:Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2988 +Name:Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2959 +Name:Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295A +Name:Maximum cam angle delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295C +Name:Maximum load delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295E +Name:Maximum rpm delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB296A +Name:Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1EDFE +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1EE02 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12384 +Name:Injector flow for dash +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11D46 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F2C8 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F684 +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x16118 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16154 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB06B8 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB09D8 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x143E6 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13B2C +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13B14 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13D44 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0CF8 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1018 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14498 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1563C +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16F90 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15774 +ROMLocationX:0x15904 +ROMLocationY:0x159CC +Name:WOT lambda adjustment low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x156AC +ROMLocationX:0x1583C +ROMLocationY:0x15A94 +Name:WOT lambda adjustment high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14C22 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1759E +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17594 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15540 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1554A +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15554 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1555E +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1558E +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x15648 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1567A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15658 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1568A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15668 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1569A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15A94 +Name:WOT lambda adjustment low (cat protect) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x159CC +Name:WOT lambda adjustment high (cat protect) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15904 +Name:WOT lambda adjustment low (regular) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1583C +Name:WOT lambda adjustment high (regular) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x16A16 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16A68 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x175DA +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x175D0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x175C6 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x175BC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x17602 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x175F8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x175EE +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x175E4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13A98 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13AB8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13AA8 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13AC8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15D76 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13018 +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1303E +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16A56 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16A4C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16A0E +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16A60 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x14DD4 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14DE0 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14DDA +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x14C30 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14C48 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14C3A +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14C52 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14BD8 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14BD0 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x14BE8 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14BE0 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x14BF8 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14BF0 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x14C08 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA2220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x179B4 +Name:Knock sensitivity low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17824 +Name:Knock sensitivity high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16430 +Name:Knock retard low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16368 +Name:Knock retard high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1506E +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15010 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1507E +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15020 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1505E +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15000 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xA210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA20FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xA2150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA21EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA21D6 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x1760C +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA22AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA22A8 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x16EF0 +Name:Minimum ignition low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16F18 +Name:Minimum ignition high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA22D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA247C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14704 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14434 +Name:Throttle index calculation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA3B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA3B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0xA3B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA3B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA3B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA3EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC7148 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246C4 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xC7468 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246CE +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1FC5C +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x297C4 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x297C0 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246C4 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246CE +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2620 +Name:Target lambda low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB27C4 +Name:Target lambda high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2A14 +Name:Active fuel tuning low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB3248 +Name:Active fuel tuning high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1F672 +Name:High speed throttle reduction +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A190.txt b/bin/Debug/Definitions/Generated/37805-R40-A190_Honda_Accord_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A190.txt rename to bin/Debug/Definitions/Generated/37805-R40-A190_Honda_Accord_2008_2009.txt index 09d35a8..c42977d 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A190.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A190_Honda_Accord_2008_2009.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A190 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17AFE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15C22 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB948 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11952 -ROMLocationY:0x1171C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11962 -ROMLocationY:0x1171C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1281C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12834 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A190 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17AFE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15C22 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB948 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11952 +ROMLocationY:0x1171C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11962 +ROMLocationY:0x1171C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1281C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12834 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A240.txt b/bin/Debug/Definitions/Generated/37805-R40-A240_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A240.txt rename to bin/Debug/Definitions/Generated/37805-R40-A240_Honda_Accord_2010.txt index d78e930..d98f138 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A240.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A240_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A240 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D2 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB928 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128EE -ROMLocationY:0x16160 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128FE -ROMLocationY:0x16160 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x137D0 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137E8 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A240 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D2 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB928 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128EE +ROMLocationY:0x16160 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128FE +ROMLocationY:0x16160 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x137D0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137E8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A340.txt b/bin/Debug/Definitions/Generated/37805-R40-A340_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A340.txt rename to bin/Debug/Definitions/Generated/37805-R40-A340_Honda_Accord_2012.txt index e83ec7e..9d3b7c4 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A340.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A340_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A340 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18A16 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16B36 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB97C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129FE -ROMLocationY:0x161A0 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x12A0E -ROMLocationY:0x161A0 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138E0 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138F8 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_LX_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A340 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18A16 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16B36 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB97C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129FE +ROMLocationY:0x161A0 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x12A0E +ROMLocationY:0x161A0 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138E0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138F8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A590.txt b/bin/Debug/Definitions/Generated/37805-R40-A590_Honda_Accord_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A590.txt rename to bin/Debug/Definitions/Generated/37805-R40-A590_Honda_Accord_2008_2009.txt index 1634089..b2fb43c 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A590.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A590_Honda_Accord_2008_2009.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17ABE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15BE2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB954 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1191A -ROMLocationY:0x116E4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1192A -ROMLocationY:0x116E4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x127E4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x127FC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17ABE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15BE2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB954 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1191A +ROMLocationY:0x116E4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1192A +ROMLocationY:0x116E4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x127E4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x127FC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A730.txt b/bin/Debug/Definitions/Generated/37805-R40-A730_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A730.txt rename to bin/Debug/Definitions/Generated/37805-R40-A730_Honda_Accord_2010.txt index e44322a..5af0a1c 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A730.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A730_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A730 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18992 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AB6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB934 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128B6 -ROMLocationY:0x16128 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128C6 -ROMLocationY:0x16128 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13798 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137B0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A730 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18992 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AB6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB934 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128B6 +ROMLocationY:0x16128 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128C6 +ROMLocationY:0x16128 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13798 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137B0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R40-A830.txt b/bin/Debug/Definitions/Generated/37805-R40-A830_Honda_Accord_2011_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R40-A830.txt rename to bin/Debug/Definitions/Generated/37805-R40-A830_Honda_Accord_2011_2012.txt index 3c28db2..3dfc9cd 100644 --- a/bin/Debug/Definitions/Generated/37805-R40-A830.txt +++ b/bin/Debug/Definitions/Generated/37805-R40-A830_Honda_Accord_2011_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R40-A830 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB988 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129C6 -ROMLocationY:0x16168 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x129D6 -ROMLocationY:0x16168 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138A8 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138C0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2011_2012_LX, LX-P, SE_LX_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R40-A830 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB988 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129C6 +ROMLocationY:0x16168 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x129D6 +ROMLocationY:0x16168 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138A8 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138C0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R41-L590.txt b/bin/Debug/Definitions/Generated/37805-R41-L590_Honda_Accord_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R41-L590.txt rename to bin/Debug/Definitions/Generated/37805-R41-L590_Honda_Accord_2008_2009.txt index a7b9d7b..cad0b42 100644 --- a/bin/Debug/Definitions/Generated/37805-R41-L590.txt +++ b/bin/Debug/Definitions/Generated/37805-R41-L590_Honda_Accord_2008_2009.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R41-L590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17ABE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15BE2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB954 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1191A -ROMLocationY:0x116E4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1192A -ROMLocationY:0x116E4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x127E4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x127FC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R41-L590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17ABE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15BE2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB954 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1191A +ROMLocationY:0x116E4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1192A +ROMLocationY:0x116E4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x127E4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x127FC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R41-L630.txt b/bin/Debug/Definitions/Generated/37805-R41-L630_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R41-L630.txt rename to bin/Debug/Definitions/Generated/37805-R41-L630_Honda_Accord_2010.txt index 668af43..16bc61b 100644 --- a/bin/Debug/Definitions/Generated/37805-R41-L630.txt +++ b/bin/Debug/Definitions/Generated/37805-R41-L630_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R41-L630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18992 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AB6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB934 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128B6 -ROMLocationY:0x16128 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128C6 -ROMLocationY:0x16128 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13798 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137B0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R41-L630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18992 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AB6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB934 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128B6 +ROMLocationY:0x16128 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128C6 +ROMLocationY:0x16128 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13798 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137B0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R41-L730.txt b/bin/Debug/Definitions/Generated/37805-R41-L730_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R41-L730.txt rename to bin/Debug/Definitions/Generated/37805-R41-L730_Honda_Accord_2012.txt index 645cb0c..1e0f808 100644 --- a/bin/Debug/Definitions/Generated/37805-R41-L730.txt +++ b/bin/Debug/Definitions/Generated/37805-R41-L730_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R41-L730 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB988 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129C6 -ROMLocationY:0x16168 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x129D6 -ROMLocationY:0x16168 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138A8 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138C0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_LX, LX-P, SE_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R41-L730 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB988 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129C6 +ROMLocationY:0x16168 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x129D6 +ROMLocationY:0x16168 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138A8 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138C0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A090.txt b/bin/Debug/Definitions/Generated/37805-R42-A090_Honda_Accord_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A090.txt rename to bin/Debug/Definitions/Generated/37805-R42-A090_Honda_Accord_2008_2009.txt index c097719..bc66064 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A090.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A090_Honda_Accord_2008_2009.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A090 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17AFE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15C22 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB948 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11952 -ROMLocationY:0x1171C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11962 -ROMLocationY:0x1171C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1281C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12834 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2008_2009_EX, EX-L, LX-S_EX, EX-L, LX_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A090 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17AFE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15C22 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB948 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11952 +ROMLocationY:0x1171C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11962 +ROMLocationY:0x1171C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1281C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12834 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A140.txt b/bin/Debug/Definitions/Generated/37805-R42-A140_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A140.txt rename to bin/Debug/Definitions/Generated/37805-R42-A140_Honda_Accord_2010.txt index 1c9880f..5c61f3f 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A140.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A140_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A140 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D2 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB928 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128EE -ROMLocationY:0x16160 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128FE -ROMLocationY:0x16160 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x137D0 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137E8 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A140 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D2 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB928 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128EE +ROMLocationY:0x16160 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128FE +ROMLocationY:0x16160 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x137D0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137E8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A240.txt b/bin/Debug/Definitions/Generated/37805-R42-A240_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A240.txt rename to bin/Debug/Definitions/Generated/37805-R42-A240_Honda_Accord_2012.txt index e6ae3ed..8368720 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A240.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A240_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A240 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18A16 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16B36 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB97C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129FE -ROMLocationY:0x161A0 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x12A0E -ROMLocationY:0x161A0 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138E0 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138F8 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_EX, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A240 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18A16 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16B36 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB97C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129FE +ROMLocationY:0x161A0 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x12A0E +ROMLocationY:0x161A0 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138E0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138F8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A590.txt b/bin/Debug/Definitions/Generated/37805-R42-A590_Honda_Accord_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A590.txt rename to bin/Debug/Definitions/Generated/37805-R42-A590_Honda_Accord_2008_2009.txt index c54a483..4fd1940 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A590.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A590_Honda_Accord_2008_2009.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17ABE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15BE2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB954 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1191A -ROMLocationY:0x116E4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1192A -ROMLocationY:0x116E4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x127E4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x127FC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2008_2009_EX, EX-L, LX-S_EX, EX-L, LX_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17ABE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15BE2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB954 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1191A +ROMLocationY:0x116E4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1192A +ROMLocationY:0x116E4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x127E4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x127FC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A630.txt b/bin/Debug/Definitions/Generated/37805-R42-A630_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A630.txt rename to bin/Debug/Definitions/Generated/37805-R42-A630_Honda_Accord_2010.txt index 0687661..eeb8d1b 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A630.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A630_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18992 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AB6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB934 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128B6 -ROMLocationY:0x16128 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128C6 -ROMLocationY:0x16128 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13798 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137B0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18992 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AB6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB934 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128B6 +ROMLocationY:0x16128 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128C6 +ROMLocationY:0x16128 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13798 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137B0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R42-A730.txt b/bin/Debug/Definitions/Generated/37805-R42-A730_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R42-A730.txt rename to bin/Debug/Definitions/Generated/37805-R42-A730_Honda_Accord_2012.txt index 65c28b5..d58bcc8 100644 --- a/bin/Debug/Definitions/Generated/37805-R42-A730.txt +++ b/bin/Debug/Definitions/Generated/37805-R42-A730_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R42-A730 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB988 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129C6 -ROMLocationY:0x16168 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x129D6 -ROMLocationY:0x16168 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138A8 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138C0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R42-A730 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB988 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129C6 +ROMLocationY:0x16168 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x129D6 +ROMLocationY:0x16168 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138A8 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138C0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R43-L590.txt b/bin/Debug/Definitions/Generated/37805-R43-L590_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R43-L590.txt rename to bin/Debug/Definitions/Generated/37805-R43-L590_Honda_Accord_2012.txt index 057595e..d173b4e 100644 --- a/bin/Debug/Definitions/Generated/37805-R43-L590.txt +++ b/bin/Debug/Definitions/Generated/37805-R43-L590_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R43-L590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17ABE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15BE2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB954 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1191A -ROMLocationY:0x116E4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1192A -ROMLocationY:0x116E4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x127E4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x127FC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R43-L590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17ABE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15BE2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB954 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1191A +ROMLocationY:0x116E4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1192A +ROMLocationY:0x116E4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x127E4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x127FC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R43-L630.txt b/bin/Debug/Definitions/Generated/37805-R43-L630_Honda_Accord_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R43-L630.txt rename to bin/Debug/Definitions/Generated/37805-R43-L630_Honda_Accord_2010.txt index d9546dd..4b2b24e 100644 --- a/bin/Debug/Definitions/Generated/37805-R43-L630.txt +++ b/bin/Debug/Definitions/Generated/37805-R43-L630_Honda_Accord_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R43-L630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18992 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB26E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AB6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB934 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x128B6 -ROMLocationY:0x16128 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x128C6 -ROMLocationY:0x16128 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13798 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x137B0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R43-L630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18992 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB26E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AB6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB934 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x128B6 +ROMLocationY:0x16128 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x128C6 +ROMLocationY:0x16128 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13798 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x137B0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R43-L730.txt b/bin/Debug/Definitions/Generated/37805-R43-L730_Honda_Accord_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R43-L730.txt rename to bin/Debug/Definitions/Generated/37805-R43-L730_Honda_Accord_2012.txt index ab3fd24..7cbb496 100644 --- a/bin/Debug/Definitions/Generated/37805-R43-L730.txt +++ b/bin/Debug/Definitions/Generated/37805-R43-L730_Honda_Accord_2012.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R43-L730 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x189D6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB2C2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16AF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB988 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x129C6 -ROMLocationY:0x16168 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x129D6 -ROMLocationY:0x16168 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138A8 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x138C0 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Accord_2012_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R43-L730 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x189D6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB2C2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16AF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB988 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x129C6 +ROMLocationY:0x16168 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x129D6 +ROMLocationY:0x16168 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138A8 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x138C0 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R8A-A560.txt b/bin/Debug/Definitions/Generated/37805-R8A-A560_Acura_RDX_2013_2014_2015.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R8A-A560.txt rename to bin/Debug/Definitions/Generated/37805-R8A-A560_Acura_RDX_2013_2014_2015.txt index c5eaf74..66dfd33 100644 --- a/bin/Debug/Definitions/Generated/37805-R8A-A560.txt +++ b/bin/Debug/Definitions/Generated/37805-R8A-A560_Acura_RDX_2013_2014_2015.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R8A-A560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x13320 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13328 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13330 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13338 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13340 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13344 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13354 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1335C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13BDA -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x13BC4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x132F6 -ROMLocationY:0xB7B8 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13306 -ROMLocationY:0xB7B8 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_RDX_2013_2014_2015_Base_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R8A-A560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x13320 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13328 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13330 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13338 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13340 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13344 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13354 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1335C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13BDA +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x13BC4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x132F6 +ROMLocationY:0xB7B8 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13306 +ROMLocationY:0xB7B8 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-R8A-A660.txt b/bin/Debug/Definitions/Generated/37805-R8A-A660_Acura_RDX_2013_2014_2015.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-R8A-A660.txt rename to bin/Debug/Definitions/Generated/37805-R8A-A660_Acura_RDX_2013_2014_2015.txt index d2456a4..6c8fc56 100644 --- a/bin/Debug/Definitions/Generated/37805-R8A-A660.txt +++ b/bin/Debug/Definitions/Generated/37805-R8A-A660_Acura_RDX_2013_2014_2015.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-R8A-A660 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x13320 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13328 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13330 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13338 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13340 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13344 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13354 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1335C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13BDA -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x13BC4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x132F6 -ROMLocationY:0xB7B8 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13306 -ROMLocationY:0xB7B8 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_RDX_2013_2014_2015_Base_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-R8A-A660 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x13320 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13328 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13330 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13338 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13340 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13344 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13354 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1335C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13BDA +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x13BC4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x132F6 +ROMLocationY:0xB7B8 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13306 +ROMLocationY:0xB7B8 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBB-A210.txt b/bin/Debug/Definitions/Generated/37805-RBB-A210_Acura_TSX_2007_2008.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RBB-A210.txt rename to bin/Debug/Definitions/Generated/37805-RBB-A210_Acura_TSX_2007_2008.txt index b2277b4..5919835 100644 --- a/bin/Debug/Definitions/Generated/37805-RBB-A210.txt +++ b/bin/Debug/Definitions/Generated/37805-RBB-A210_Acura_TSX_2007_2008.txt @@ -1,1393 +1,1393 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBB-A210 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x83F8 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x122B2 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x122BE -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FE4E -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x1F1FC -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FB92 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBA2 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBC4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBCC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x102FC -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x102FE -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12575 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9D33A -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x9D3F8 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10514 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x103FA -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1040A -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1256C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12568 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12563 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12570 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1254E -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10B5E -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10B5C -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x122C0 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FA10 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x121D4 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x121D6 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x121D8 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10A24 -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A26 -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A28 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A02 -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1244C -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FDBC -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0FDBE -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x66BF5 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12561 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7F6A0 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11DC0 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1256D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1256E -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3966B -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1253B -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1253A -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1252B -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1253D -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB22BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x115B4 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x115B6 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9E8D4 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0FF04 -Name:1st gear throttle dampening enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB22BE -Name:Active knock retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BF -Name:Active knock retard method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C0 -Name:Active knock retard step -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C1 -Name:Active knock retard min -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C2 -Name:Active knock retard max retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2954 -Name:Active fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2955 -Name:Tuning method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2956 -Name:Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2957 -Name:Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2958 -Name:Use corrected wideband -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2960 -Name:Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2962 -Name:Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2965 -Name:Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2966 -Name:Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2968 -Name:Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2964 -Name:Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2970 -Name:Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2971 -Name:Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2972 -Name:Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2974 -Name:Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2976 -Name:Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2978 -Name:Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297A -Name:Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297C -Name:Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297E -Name:Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2980 -Name:Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2982 -Name:Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2984 -Name:Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2986 -Name:Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2988 -Name:Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2959 -Name:Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295A -Name:Maximum cam angle delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295C -Name:Maximum load delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295E -Name:Maximum rpm delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB296A -Name:Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1EDFE -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1EE02 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12536 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12384 -Name:Injector flow for dash -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0F5F0 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11D46 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F2C8 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F684 -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB3B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xC1FB8 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC2F58 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0078 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1018 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC4858 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC57F8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6798 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6928 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC3EF8 -ROMLocationX:0xC4088 -ROMLocationY:0xC4218 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC43A8 -ROMLocationX:0xC4538 -ROMLocationY:0xC46C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC7148 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246C4 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xC7468 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246CE -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1EBC4 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E9AC -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E994 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x21C18 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x2312A -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x2317C -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1F206 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FA7A -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x21C54 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1F2B8 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6AE0 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6E00 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E918 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E938 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1E928 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E948 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A5E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A54 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A4A -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A40 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A86 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A7C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A72 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A68 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FC5C -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x236B8 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x204AA -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203AE -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203B8 -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203C2 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203CC -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x203FC -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x204B6 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x204E8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x204C6 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x204F8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x204D6 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x20508 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A22 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x24A18 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FE48 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE38 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FE68 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE58 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FE88 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE78 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24AA2 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x2C60C -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x2C632 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1FA88 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FAA0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FA92 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FAAA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xB20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB2220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB20FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB21EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB21D6 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x2316A -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x23160 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x23122 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x23174 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1FC2C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FC38 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FC32 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1FA60 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FA50 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA48 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FA40 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA38 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FA30 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA28 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x20BE2 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x297C4 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x297C0 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246C4 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246CE -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB22A8 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB22D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB247C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2620 -Name:Target lambda low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB27C4 -Name:Target lambda high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2A14 -Name:Active fuel tuning low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB3248 -Name:Active fuel tuning high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1F672 -Name:High speed throttle reduction -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB3B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB3B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0xB3B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2007_2008_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBB-A210 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x83F8 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x122B2 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x122BE +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FE4E +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x1F1FC +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FB92 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBA2 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBC4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBCC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x102FC +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x102FE +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12575 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9D33A +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x9D3F8 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10514 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x103FA +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1040A +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1256C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12568 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12563 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12570 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1254E +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10B5E +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10B5C +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x122C0 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FA10 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x121D4 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x121D6 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x121D8 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10A24 +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A26 +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A28 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A02 +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1244C +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FDBC +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0FDBE +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x66BF5 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12561 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7F6A0 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11DC0 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1256D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1256E +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3966B +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1253B +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1253A +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1252B +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1253D +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB22BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x115B4 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x115B6 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9E8D4 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0FF04 +Name:1st gear throttle dampening enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB22BE +Name:Active knock retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BF +Name:Active knock retard method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C0 +Name:Active knock retard step +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C1 +Name:Active knock retard min +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C2 +Name:Active knock retard max retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2954 +Name:Active fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2955 +Name:Tuning method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2956 +Name:Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2957 +Name:Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2958 +Name:Use corrected wideband +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2960 +Name:Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2962 +Name:Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2965 +Name:Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2966 +Name:Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2968 +Name:Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2964 +Name:Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2970 +Name:Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2971 +Name:Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2972 +Name:Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2974 +Name:Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2976 +Name:Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2978 +Name:Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297A +Name:Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297C +Name:Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297E +Name:Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2980 +Name:Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2982 +Name:Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2984 +Name:Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2986 +Name:Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2988 +Name:Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2959 +Name:Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295A +Name:Maximum cam angle delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295C +Name:Maximum load delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295E +Name:Maximum rpm delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB296A +Name:Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1EDFE +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1EE02 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12536 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12384 +Name:Injector flow for dash +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0F5F0 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11D46 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F2C8 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F684 +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB3B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xC1FB8 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC2F58 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0078 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1018 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC4858 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC57F8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6798 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6928 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC3EF8 +ROMLocationX:0xC4088 +ROMLocationY:0xC4218 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC43A8 +ROMLocationX:0xC4538 +ROMLocationY:0xC46C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC7148 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246C4 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xC7468 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246CE +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1EBC4 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E9AC +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E994 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x21C18 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x2312A +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x2317C +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1F206 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FA7A +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x21C54 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1F2B8 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6AE0 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6E00 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E918 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E938 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1E928 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E948 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A5E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A54 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A4A +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A40 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A86 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A7C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A72 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A68 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FC5C +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x236B8 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x204AA +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203AE +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203B8 +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203C2 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203CC +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x203FC +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x204B6 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x204E8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x204C6 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x204F8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x204D6 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x20508 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A22 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x24A18 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FE48 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE38 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FE68 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE58 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FE88 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE78 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24AA2 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x2C60C +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x2C632 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1FA88 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FAA0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FA92 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FAAA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xB20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB2220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB20FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB21EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB21D6 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x2316A +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x23160 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x23122 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x23174 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1FC2C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FC38 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FC32 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1FA60 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FA50 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA48 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FA40 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA38 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FA30 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA28 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x20BE2 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x297C4 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x297C0 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246C4 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246CE +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB22A8 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB22D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB247C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2620 +Name:Target lambda low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB27C4 +Name:Target lambda high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2A14 +Name:Active fuel tuning low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB3248 +Name:Active fuel tuning high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1F672 +Name:High speed throttle reduction +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB3B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB3B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0xB3B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBB-A710.txt b/bin/Debug/Definitions/Generated/37805-RBB-A710_Acura_TSX_2007_2008.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RBB-A710.txt rename to bin/Debug/Definitions/Generated/37805-RBB-A710_Acura_TSX_2007_2008.txt index e78ca39..0d99d4d 100644 --- a/bin/Debug/Definitions/Generated/37805-RBB-A710.txt +++ b/bin/Debug/Definitions/Generated/37805-RBB-A710_Acura_TSX_2007_2008.txt @@ -1,1387 +1,1387 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBB-A710 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x83F8 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x122B2 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x122BE -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FE4E -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x1F1FC -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FB92 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBA2 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBC4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FBCC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x102FC -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x102FE -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12575 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9D33A -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x9D3F8 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10514 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x103FA -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1040A -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1256C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12568 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12563 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12570 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1254E -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10B5E -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10B5C -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x122C0 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FA10 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x121D4 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x121D6 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x121D8 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10A24 -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A26 -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A28 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10A02 -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1244C -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FDBC -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0FDBE -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x66BF5 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12561 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7F6A0 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11DC0 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1256D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1256E -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3966B -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1253B -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1253A -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1252B -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1253D -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB22BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x115B4 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x115B6 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9E8D4 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB22BE -Name:Active knock retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BF -Name:Active knock retard method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C0 -Name:Active knock retard step -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C1 -Name:Active knock retard min -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22C2 -Name:Active knock retard max retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2954 -Name:Active fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2955 -Name:Tuning method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2956 -Name:Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2957 -Name:Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2958 -Name:Use corrected wideband -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2960 -Name:Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2962 -Name:Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2965 -Name:Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2966 -Name:Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2968 -Name:Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2964 -Name:Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2970 -Name:Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2971 -Name:Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2972 -Name:Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2974 -Name:Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2976 -Name:Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2978 -Name:Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297A -Name:Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297C -Name:Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB297E -Name:Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2980 -Name:Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2982 -Name:Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2984 -Name:Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2986 -Name:Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2988 -Name:Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2959 -Name:Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295A -Name:Maximum cam angle delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295C -Name:Maximum load delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB295E -Name:Maximum rpm delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB296A -Name:Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1EDFE -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1EE02 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12536 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x12384 -Name:Injector flow for dash -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0F5F0 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11D46 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F2C8 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7F684 -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB3B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xC1FB8 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC2F58 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0078 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1018 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC4858 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC57F8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6798 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6928 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC3EF8 -ROMLocationX:0xC4088 -ROMLocationY:0xC4218 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC43A8 -ROMLocationX:0xC4538 -ROMLocationY:0xC46C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC7148 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246C4 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xC7468 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x246CE -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1EBC4 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E9AC -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E994 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x21C18 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x2312A -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x2317C -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1F206 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FA7A -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x21C54 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1F2B8 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6AE0 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC6E00 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1E918 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E938 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1E928 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E948 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A5E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A54 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A4A -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A40 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A86 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A7C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A72 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x24A68 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FC5C -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x236B8 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x204AA -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203AE -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203B8 -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203C2 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x203CC -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x203FC -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x204B6 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x204E8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x204C6 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x204F8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x204D6 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x20508 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24A22 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x24A18 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FE48 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE38 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FE68 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE58 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FE88 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FE78 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x24AA2 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x2C60C -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x2C632 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1FA88 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FAA0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1FA92 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FAAA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xB20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB2220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB20FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB21EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB21D6 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x2316A -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x23160 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x23122 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x23174 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1FC2C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FC38 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FC32 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x1FA60 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1FA50 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA48 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FA40 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA38 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1FA30 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1FA28 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x20BE2 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x297C4 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x297C0 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246C4 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x246CE -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB22A8 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB22D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB247C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2620 -Name:Target lambda low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB27C4 -Name:Target lambda high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2A14 -Name:Active fuel tuning low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB3248 -Name:Active fuel tuning high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1F672 -Name:High speed throttle reduction -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB3B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB3B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0xB3B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2007_2008_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBB-A710 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x83F8 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x122B2 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x122BE +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FE4E +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x1F1FC +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FB92 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBA2 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBC4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FBCC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x102FC +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x102FE +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12575 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9D33A +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x9D3F8 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10514 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x103FA +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1040A +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1256C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12568 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12563 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12570 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1254E +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10B5E +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10B5C +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x122C0 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FA10 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x121D4 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x121D6 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x121D8 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10A24 +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A26 +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A28 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10A02 +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1244C +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FDBC +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0FDBE +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x66BF5 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12561 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7F6A0 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11DC0 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1256D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1256E +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3966B +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1253B +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1253A +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1252B +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1253D +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB22BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x115B4 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x115B6 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9E8D4 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB22BE +Name:Active knock retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BF +Name:Active knock retard method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C0 +Name:Active knock retard step +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C1 +Name:Active knock retard min +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22C2 +Name:Active knock retard max retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2954 +Name:Active fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2955 +Name:Tuning method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2956 +Name:Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2957 +Name:Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2958 +Name:Use corrected wideband +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2960 +Name:Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2962 +Name:Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2965 +Name:Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2966 +Name:Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2968 +Name:Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2964 +Name:Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2970 +Name:Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2971 +Name:Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2972 +Name:Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2974 +Name:Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2976 +Name:Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2978 +Name:Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297A +Name:Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297C +Name:Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB297E +Name:Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2980 +Name:Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2982 +Name:Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2984 +Name:Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2986 +Name:Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2988 +Name:Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2959 +Name:Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295A +Name:Maximum cam angle delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295C +Name:Maximum load delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB295E +Name:Maximum rpm delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB296A +Name:Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1EDFE +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1EE02 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12536 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x12384 +Name:Injector flow for dash +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0F5F0 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11D46 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F2C8 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7F684 +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB3B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xC1FB8 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC2F58 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0078 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1018 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC4858 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC57F8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6798 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6928 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC3EF8 +ROMLocationX:0xC4088 +ROMLocationY:0xC4218 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC43A8 +ROMLocationX:0xC4538 +ROMLocationY:0xC46C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC7148 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246C4 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xC7468 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x246CE +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1EBC4 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E9AC +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E994 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x21C18 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x2312A +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x2317C +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1F206 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FA7A +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x21C54 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1F2B8 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6AE0 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC6E00 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1E918 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E938 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1E928 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E948 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A5E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A54 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A4A +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A40 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A86 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A7C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A72 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x24A68 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FC5C +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x236B8 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x204AA +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203AE +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203B8 +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203C2 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x203CC +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x203FC +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x204B6 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x204E8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x204C6 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x204F8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x204D6 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x20508 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24A22 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x24A18 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FE48 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE38 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FE68 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE58 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FE88 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FE78 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x24AA2 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x2C60C +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x2C632 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1FA88 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FAA0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1FA92 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FAAA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xB20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB2220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB20FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB21EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB21D6 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x2316A +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x23160 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x23122 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x23174 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1FC2C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FC38 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FC32 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x1FA60 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1FA50 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA48 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FA40 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA38 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1FA30 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1FA28 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x20BE2 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x297C4 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x297C0 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246C4 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x246CE +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB22A8 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB22D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB247C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2620 +Name:Target lambda low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB27C4 +Name:Target lambda high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2A14 +Name:Active fuel tuning low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB3248 +Name:Active fuel tuning high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1F672 +Name:High speed throttle reduction +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB3B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB3B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0xB3B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBJ-3090.txt b/bin/Debug/Definitions/Generated/37805-RBJ-3090_Honda_Insight_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RBJ-3090.txt rename to bin/Debug/Definitions/Generated/37805-RBJ-3090_Honda_Insight_2010.txt index ccce1f6..8b97bdb 100644 --- a/bin/Debug/Definitions/Generated/37805-RBJ-3090.txt +++ b/bin/Debug/Definitions/Generated/37805-RBJ-3090_Honda_Insight_2010.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBJ-3090 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x114A8 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B0 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B8 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C0 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C8 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114CC -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114DC -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114E4 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12020 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x12008 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xC468 -ROMLocationY:0xE00E -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xC478 -ROMLocationY:0xE00E -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Insight_2010_EX_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBJ-3090 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x114A8 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B0 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B8 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C0 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C8 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114CC +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114DC +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114E4 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12020 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x12008 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xC468 +ROMLocationY:0xE00E +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xC478 +ROMLocationY:0xE00E +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBJ-4050.txt b/bin/Debug/Definitions/Generated/37805-RBJ-4050_Honda_Insight_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RBJ-4050.txt rename to bin/Debug/Definitions/Generated/37805-RBJ-4050_Honda_Insight_2010.txt index 508dc38..197862f 100644 --- a/bin/Debug/Definitions/Generated/37805-RBJ-4050.txt +++ b/bin/Debug/Definitions/Generated/37805-RBJ-4050_Honda_Insight_2010.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBJ-4050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x114A8 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B0 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B8 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C0 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C8 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114CC -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114DC -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114E4 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12020 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x12008 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xC468 -ROMLocationY:0xE00E -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xC478 -ROMLocationY:0xE00E -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Insight_2010_EX_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBJ-4050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x114A8 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B0 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B8 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C0 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C8 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114CC +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114DC +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114E4 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12020 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x12008 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xC468 +ROMLocationY:0xE00E +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xC478 +ROMLocationY:0xE00E +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBJ-A560.txt b/bin/Debug/Definitions/Generated/37805-RBJ-A560_Honda_Insight_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RBJ-A560.txt rename to bin/Debug/Definitions/Generated/37805-RBJ-A560_Honda_Insight_2010.txt index bd049f9..d54f12e 100644 --- a/bin/Debug/Definitions/Generated/37805-RBJ-A560.txt +++ b/bin/Debug/Definitions/Generated/37805-RBJ-A560_Honda_Insight_2010.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBJ-A560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x114A8 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B0 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B8 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C0 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C8 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114CC -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114DC -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114E4 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12020 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x12008 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xC468 -ROMLocationY:0xE00E -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xC478 -ROMLocationY:0xE00E -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Insight_2010_LX_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBJ-A560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x114A8 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B0 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B8 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C0 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C8 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114CC +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114DC +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114E4 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12020 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x12008 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xC468 +ROMLocationY:0xE00E +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xC478 +ROMLocationY:0xE00E +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RBJ-L560.txt b/bin/Debug/Definitions/Generated/37805-RBJ-L560_Honda_Insight_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RBJ-L560.txt rename to bin/Debug/Definitions/Generated/37805-RBJ-L560_Honda_Insight_2010.txt index d716d3a..d646ccd 100644 --- a/bin/Debug/Definitions/Generated/37805-RBJ-L560.txt +++ b/bin/Debug/Definitions/Generated/37805-RBJ-L560_Honda_Insight_2010.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RBJ-L560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x114A8 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B0 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114B8 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C0 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114C8 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114CC -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114DC -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114E4 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12020 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x12008 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xC468 -ROMLocationY:0xE00E -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xC478 -ROMLocationY:0xE00E -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Insight_2010_LX_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RBJ-L560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x114A8 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B0 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114B8 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C0 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114C8 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114CC +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114DC +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114E4 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12020 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x12008 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xC468 +ROMLocationY:0xE00E +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xC478 +ROMLocationY:0xE00E +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RC030.txt b/bin/Debug/Definitions/Generated/37805-RC0-M130.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RC030.txt rename to bin/Debug/Definitions/Generated/37805-RC0-M130.txt index 1921ab6..542154e 100644 --- a/bin/Debug/Definitions/Generated/37805-RC030.txt +++ b/bin/Debug/Definitions/Generated/37805-RC0-M130.txt @@ -1,87 +1,87 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RC030 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB582 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x168DC -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBD7C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11822 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11832 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12308 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12320 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +####################################################################### +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RC0-M130 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB582 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x168DC +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBD7C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11822 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11832 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12308 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12320 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RDB-A040.txt b/bin/Debug/Definitions/Generated/37805-RDB-A040_Acura_TL_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RDB-A040.txt rename to bin/Debug/Definitions/Generated/37805-RDB-A040_Acura_TL_2007.txt index ed6e720..04be71b 100644 --- a/bin/Debug/Definitions/Generated/37805-RDB-A040.txt +++ b/bin/Debug/Definitions/Generated/37805-RDB-A040_Acura_TL_2007.txt @@ -1,156 +1,156 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RDB-A040 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xC4DE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x163AC -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163B4 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163BC -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163C4 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163CC -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163D0 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163E0 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163E8 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xFFFFD -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x18296 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB9C0 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x16932 -ROMLocationY:0x1000A5 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x16942 -ROMLocationY:0x1000A5 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x10002F -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x100047 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Acura_TL_2007_Type-S_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RDB-A040 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xC4DE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x163AC +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163B4 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163BC +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163C4 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163CC +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163D0 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163E0 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163E8 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xFFFFD +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x18296 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB9C0 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x16932 +ROMLocationY:0x1000A5 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x16942 +ROMLocationY:0x1000A5 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x10002F +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x100047 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RDB-A120.txt b/bin/Debug/Definitions/Generated/37805-RDB-A120_Acura_TL_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RDB-A120.txt rename to bin/Debug/Definitions/Generated/37805-RDB-A120_Acura_TL_2008.txt index 731be0b..cc35790 100644 --- a/bin/Debug/Definitions/Generated/37805-RDB-A120.txt +++ b/bin/Debug/Definitions/Generated/37805-RDB-A120_Acura_TL_2008.txt @@ -1,156 +1,156 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RDB-A120 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xC4DE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x163AC -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163B4 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163BC -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163C4 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163CC -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163D0 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163E0 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x163E8 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xFFFFD -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x18296 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB9C0 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x16932 -ROMLocationY:0x1000A5 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x16942 -ROMLocationY:0x1000A5 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x10002F -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x100047 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Acura_TL_2008_Type-S_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RDB-A120 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xC4DE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x163AC +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163B4 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163BC +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163C4 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163CC +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163D0 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163E0 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x163E8 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xFFFFD +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x18296 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB9C0 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x16932 +ROMLocationY:0x1000A5 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x16942 +ROMLocationY:0x1000A5 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x10002F +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x100047 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-REZ-A570.txt b/bin/Debug/Definitions/Generated/37805-REZ-A570_Honda_CR-V_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-REZ-A570.txt rename to bin/Debug/Definitions/Generated/37805-REZ-A570_Honda_CR-V_2011.txt index 2c8cc68..66fbf6b 100644 --- a/bin/Debug/Definitions/Generated/37805-REZ-A570.txt +++ b/bin/Debug/Definitions/Generated/37805-REZ-A570_Honda_CR-V_2011.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-REZ-A570 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x18AD6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB58A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x174CE -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBC58 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x12A1A -ROMLocationY:0x16B24 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x12A2A -ROMLocationY:0x16B24 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x138FC -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x13914 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_CR-V_2011_EX, EX-L, LX, SE_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-REZ-A570 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x18AD6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB58A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x174CE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBC58 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x12A1A +ROMLocationY:0x16B24 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x12A2A +ROMLocationY:0x16B24 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x138FC +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x13914 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGL-A020.txt b/bin/Debug/Definitions/Generated/37805-RGL-A020_Honda_Odyssey_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGL-A020.txt rename to bin/Debug/Definitions/Generated/37805-RGL-A020_Honda_Odyssey_2009_2010.txt index f3ef473..18ac758 100644 --- a/bin/Debug/Definitions/Generated/37805-RGL-A020.txt +++ b/bin/Debug/Definitions/Generated/37805-RGL-A020_Honda_Odyssey_2009_2010.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGL-A020 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB012 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x11B8A -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B92 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B9A -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BA2 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BAA -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BAE -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BBE -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BC6 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xB536 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x12C32 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBD64 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11B8A -ROMLocationY:0xF820 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11B9A -ROMLocationY:0xF820 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2009_2010_EX, LX_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGL-A020 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB012 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x11B8A +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B92 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B9A +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BA2 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BAA +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BAE +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BBE +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BC6 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xB536 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x12C32 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBD64 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11B8A +ROMLocationY:0xF820 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11B9A +ROMLocationY:0xF820 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGL-A840.txt b/bin/Debug/Definitions/Generated/37805-RGL-A840_Honda_Odyssey_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGL-A840.txt rename to bin/Debug/Definitions/Generated/37805-RGL-A840_Honda_Odyssey_2007.txt index 7a91fc6..a2aaac2 100644 --- a/bin/Debug/Definitions/Generated/37805-RGL-A840.txt +++ b/bin/Debug/Definitions/Generated/37805-RGL-A840_Honda_Odyssey_2007.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGL-A840 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x10E02 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E0A -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E12 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E1A -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E22 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E26 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E36 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10E3E -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBACA -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x1275A -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB348 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x10E02 -ROMLocationY:0xFD44 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x10E12 -ROMLocationY:0xFD44 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2007_EX, LX_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGL-A840 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x10E02 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E0A +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E12 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E1A +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E22 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E26 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E36 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10E3E +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBACA +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x1275A +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB348 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x10E02 +ROMLocationY:0xFD44 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x10E12 +ROMLocationY:0xFD44 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGL-A930.txt b/bin/Debug/Definitions/Generated/37805-RGL-A930_Honda_Odyssey_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGL-A930.txt rename to bin/Debug/Definitions/Generated/37805-RGL-A930_Honda_Odyssey_2008.txt index 1b42d7c..ed5733f 100644 --- a/bin/Debug/Definitions/Generated/37805-RGL-A930.txt +++ b/bin/Debug/Definitions/Generated/37805-RGL-A930_Honda_Odyssey_2008.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGL-A930 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB012 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x11B7A -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B82 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B8A -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B92 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B9A -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11B9E -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BAE -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11BB6 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xB536 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x12C22 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBD64 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11B7A -ROMLocationY:0xF820 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11B8A -ROMLocationY:0xF820 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2008_EX, LX_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGL-A930 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB012 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x11B7A +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B82 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B8A +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B92 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B9A +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11B9E +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BAE +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11BB6 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xB536 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x12C22 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBD64 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11B7A +ROMLocationY:0xF820 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11B8A +ROMLocationY:0xF820 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGM-A840.txt b/bin/Debug/Definitions/Generated/37805-RGM-A840_Honda_Odyssey_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGM-A840.txt rename to bin/Debug/Definitions/Generated/37805-RGM-A840_Honda_Odyssey_2007.txt index d741506..9a90d4a 100644 --- a/bin/Debug/Definitions/Generated/37805-RGM-A840.txt +++ b/bin/Debug/Definitions/Generated/37805-RGM-A840_Honda_Odyssey_2007.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGM-A840 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x11F8E -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11F96 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11F9E -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11FA6 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11FAE -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11FB2 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11FC2 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11FCA -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBF66 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x133E2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB858 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11F8E -ROMLocationY:0x10544 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11F9E -ROMLocationY:0x10544 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2007_EX-L, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGM-A840 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x11F8E +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11F96 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11F9E +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11FA6 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11FAE +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11FB2 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11FC2 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11FCA +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBF66 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x133E2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB858 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11F8E +ROMLocationY:0x10544 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11F9E +ROMLocationY:0x10544 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGW-A060.txt b/bin/Debug/Definitions/Generated/37805-RGW-A060_Honda_Odyssey_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGW-A060.txt rename to bin/Debug/Definitions/Generated/37805-RGW-A060_Honda_Odyssey_2009_2010.txt index 3f8a056..abf800b 100644 --- a/bin/Debug/Definitions/Generated/37805-RGW-A060.txt +++ b/bin/Debug/Definitions/Generated/37805-RGW-A060_Honda_Odyssey_2009_2010.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGW-A060 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17DB2 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DBA -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DC2 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DCA -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DD2 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DD6 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DE6 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DEE -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xC6E6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x185C2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xCEE8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x17DB2 -ROMLocationY:0x11EF4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x17DC2 -ROMLocationY:0x11EF4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2009_2010_EX-L, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGW-A060 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17DB2 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DBA +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DC2 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DCA +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DD2 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DD6 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DE6 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DEE +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xC6E6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x185C2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xCEE8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x17DB2 +ROMLocationY:0x11EF4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x17DC2 +ROMLocationY:0x11EF4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RGW-A960.txt b/bin/Debug/Definitions/Generated/37805-RGW-A960_Honda_Odyssey_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RGW-A960.txt rename to bin/Debug/Definitions/Generated/37805-RGW-A960_Honda_Odyssey_2008.txt index b704f0e..852290e 100644 --- a/bin/Debug/Definitions/Generated/37805-RGW-A960.txt +++ b/bin/Debug/Definitions/Generated/37805-RGW-A960_Honda_Odyssey_2008.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RGW-A960 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x17DB2 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DBA -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DC2 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DCA -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DD2 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DD6 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DE6 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x17DEE -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xC6E6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x185C2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xCEE8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x17DB2 -ROMLocationY:0x11EF4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x17DC2 -ROMLocationY:0x11EF4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Odyssey_2008_EX-L, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RGW-A960 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x17DB2 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DBA +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DC2 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DCA +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DD2 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DD6 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DE6 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x17DEE +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xC6E6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x185C2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xCEE8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x17DB2 +ROMLocationY:0x11EF4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x17DC2 +ROMLocationY:0x11EF4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RJE-A840.txt b/bin/Debug/Definitions/Generated/37805-RJE-A840_Honda_Ridgeline_2009_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RJE-A840.txt rename to bin/Debug/Definitions/Generated/37805-RJE-A840_Honda_Ridgeline_2009_2010_2011.txt index ddb97b5..347dbbe 100644 --- a/bin/Debug/Definitions/Generated/37805-RJE-A840.txt +++ b/bin/Debug/Definitions/Generated/37805-RJE-A840_Honda_Ridgeline_2009_2010_2011.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RJE-A840 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAAD2 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x147AA -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147B2 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147BA -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147C2 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147CA -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147CE -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147DE -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x147E6 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xB246 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15062 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB984 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x147AA -ROMLocationY:0x109C0 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x147BA -ROMLocationY:0x109C0 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Ridgeline_2009_2010_2011_RT, RTL, RTS_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RJE-A840 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAAD2 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x147AA +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147B2 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147BA +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147C2 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147CA +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147CE +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147DE +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x147E6 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xB246 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15062 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB984 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x147AA +ROMLocationY:0x109C0 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x147BA +ROMLocationY:0x109C0 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RKG-A560.txt b/bin/Debug/Definitions/Generated/37805-RKG-A560_Acura_RL_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RKG-A560.txt rename to bin/Debug/Definitions/Generated/37805-RKG-A560_Acura_RL_2009_2010.txt index 5432396..0228d09 100644 --- a/bin/Debug/Definitions/Generated/37805-RKG-A560.txt +++ b/bin/Debug/Definitions/Generated/37805-RKG-A560_Acura_RL_2009_2010.txt @@ -1,156 +1,156 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RKG-A560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD386 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x1F47C -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F484 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F48C -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F494 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F49C -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F4A0 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F4B0 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1F4B8 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xFFFFD -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x20C74 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC3F0 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1FA06 -ROMLocationY:0x1000A5 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1FA16 -ROMLocationY:0x1000A5 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x10002F -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x100047 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Acura_RL_2009_2010_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RKG-A560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD386 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x1F47C +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F484 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F48C +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F494 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F49C +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F4A0 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F4B0 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1F4B8 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xFFFFD +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x20C74 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC3F0 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1FA06 +ROMLocationY:0x1000A5 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1FA16 +ROMLocationY:0x1000A5 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x10002F +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x100047 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RKG-A720.txt b/bin/Debug/Definitions/Generated/37805-RKG-A720_Acura_RL_2011_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RKG-A720.txt rename to bin/Debug/Definitions/Generated/37805-RKG-A720_Acura_RL_2011_2012.txt index 7b01103..4b18f62 100644 --- a/bin/Debug/Definitions/Generated/37805-RKG-A720.txt +++ b/bin/Debug/Definitions/Generated/37805-RKG-A720_Acura_RL_2011_2012.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RKG-A720 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD746 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x1034A -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10352 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1035A -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10362 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1036A -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1036E -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1037E -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10386 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10ECE -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10EB8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1034A -ROMLocationY:0xB560 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1035A -ROMLocationY:0xB560 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_RL_2011_2012_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RKG-A720 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD746 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x1034A +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10352 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1035A +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10362 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1036A +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1036E +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1037E +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10386 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10ECE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10EB8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1034A +ROMLocationY:0xB560 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1035A +ROMLocationY:0xB560 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL5-A030.txt b/bin/Debug/Definitions/Generated/37805-RL5-A030_Acura_TSX_2009_2010.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RL5-A030.txt rename to bin/Debug/Definitions/Generated/37805-RL5-A030_Acura_TSX_2009_2010.txt index c59840d..078d975 100644 --- a/bin/Debug/Definitions/Generated/37805-RL5-A030.txt +++ b/bin/Debug/Definitions/Generated/37805-RL5-A030_Acura_TSX_2009_2010.txt @@ -1,1073 +1,1073 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL5-A030 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0DFC6 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFC8 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFCA -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AACE -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x13664 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B5C4 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B5C6 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159A6 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159B6 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159D0 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159D8 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x37194 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x371B8 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x92080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6C6 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6C8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D1D -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FA68 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A638 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09880 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BCD2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BCD0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09882 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13276 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13272 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D0D -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CA44 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09F78 -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D006 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x71604 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D11 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D08 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D15 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D13 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B7D0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9F6 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9F8 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09BBC -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D06 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D12 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x2FF39 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CFF -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0986C -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C736 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C738 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x922BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CC7 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CCB -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CEF -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CDB -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD9 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x387E0 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE2 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD2 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CDD -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4A1D8 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CF86 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x71262 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD8 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xA00B8 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA1058 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x169D0 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16994 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4898 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4A28 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA2958 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA38F8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17F16 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F68 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x13032 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA0098 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18418 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA5248 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19424 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xA5568 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1942E -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x13744 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12D24 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12D0C -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11E34 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11E54 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11E44 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11E64 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15D70 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1366E -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12F44 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A68 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xA4BE0 -Name:Knock sensitivity high cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4F00 -Name:Knock sensitivity high cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA1FF8 -ROMLocationX:0xA2188 -ROMLocationY:0xA2318 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA24A8 -ROMLocationX:0xA2638 -ROMLocationY:0xA27C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19752 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19748 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1978E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19784 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1977A -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19770 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197B6 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x197AC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197A2 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19798 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16158 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16146 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x16212 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16244 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16222 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16254 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16232 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16264 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16206 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15C54 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C44 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15C74 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C64 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15C94 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C84 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197D2 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1586E -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19424 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1942E -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1D7F0 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1D7EC -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA5950 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA68F0 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10E1C -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10E14 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1587C -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15894 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15886 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1589E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x920AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x92226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x9210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x920FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x92150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x921EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x921D6 -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15A38 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A44 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A3E -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x15854 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15844 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1583C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x15834 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1582C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x15824 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1581C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x17F56 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F4C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x17F0E -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F60 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x92258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0xA78A0 -Name:Knock sensitivity low cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA7BC0 -Name:Knock sensitivity low cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x9228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2009_2010_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL5-A030 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0DFC6 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFC8 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFCA +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AACE +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x13664 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B5C4 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B5C6 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159A6 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159B6 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159D0 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159D8 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x37194 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x371B8 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x92080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6C6 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6C8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D1D +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FA68 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A638 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09880 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BCD2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BCD0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09882 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13276 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13272 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D0D +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CA44 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09F78 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D006 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x71604 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D11 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D08 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D15 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D13 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B7D0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F6 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F8 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09BBC +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D06 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D12 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x2FF39 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CFF +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0986C +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C736 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C738 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x922BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CC7 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CCB +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CEF +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CDB +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD9 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x387E0 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE2 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD2 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CDD +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4A1D8 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CF86 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x71262 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD8 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xA00B8 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA1058 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x169D0 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16994 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4898 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4A28 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA2958 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA38F8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17F16 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F68 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x13032 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA0098 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18418 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA5248 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19424 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xA5568 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1942E +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x13744 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D24 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D0C +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11E34 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11E54 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11E44 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11E64 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15D70 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1366E +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12F44 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A68 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xA4BE0 +Name:Knock sensitivity high cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4F00 +Name:Knock sensitivity high cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA1FF8 +ROMLocationX:0xA2188 +ROMLocationY:0xA2318 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA24A8 +ROMLocationX:0xA2638 +ROMLocationY:0xA27C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19752 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19748 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1978E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19784 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1977A +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19770 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197B6 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x197AC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197A2 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19798 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16158 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16146 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x16212 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16244 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16222 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16254 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16232 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16264 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16206 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15C54 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C44 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15C74 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C64 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15C94 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C84 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197D2 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1586E +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19424 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1942E +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1D7F0 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1D7EC +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA5950 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA68F0 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10E1C +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10E14 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1587C +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15894 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15886 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1589E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x920AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x92226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x9210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x920FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x92150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x921EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x921D6 +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15A38 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A44 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A3E +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x15854 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15844 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1583C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x15834 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1582C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x15824 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1581C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x17F56 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F4C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x17F0E +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F60 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x92258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0xA78A0 +Name:Knock sensitivity low cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA7BC0 +Name:Knock sensitivity low cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x9228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL5-A070.txt b/bin/Debug/Definitions/Generated/37805-RL5-A070_Acura_TSX_2011_2012_2013_2014.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RL5-A070.txt rename to bin/Debug/Definitions/Generated/37805-RL5-A070_Acura_TSX_2011_2012_2013_2014.txt index 6a38f69..138287b 100644 --- a/bin/Debug/Definitions/Generated/37805-RL5-A070.txt +++ b/bin/Debug/Definitions/Generated/37805-RL5-A070_Acura_TSX_2011_2012_2013_2014.txt @@ -1,1044 +1,1044 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL5-A070 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x09874 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09C10 -Name:P0606 knock test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE2 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE4 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE5 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CE6 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CE9 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CEA -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CEB -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CED -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF0 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF3 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CF4 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF5 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09CF6 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CF8 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D09 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A624 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA02 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA04 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AADA -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x141F8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B5D8 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5DA -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6DA -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6DC -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B79C -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BC90 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BC92 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C6DC -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C6DE -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CA34 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D014 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0E02E -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E030 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E032 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x13F0A -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13F0E -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1656A -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1656C -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3951E -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x39570 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16542 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16552 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16574 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09888 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0988A -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09F50 -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09BB8 -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3AE88 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x32305 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CA3 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CA8 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD0 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB8 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB6 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CBF -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CAF -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x790A6 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4FB6E -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CF56 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x78C82 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB5 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x13990 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x139A8 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13BCC -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14202 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163BC -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163B4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x163CC -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163C4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x163DC -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163D4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x163EC -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16406 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x165D4 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x165E0 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x165DA -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x16604 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x16700 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x166F0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16720 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16710 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16740 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16730 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1681C -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16C04 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16BF2 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x17448 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17484 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18A0E -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18A04 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1A234 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A23E -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A266 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A25C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A27A -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A270 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A28E -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A284 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A2A2 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A298 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A2BE -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11754 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1175C -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12AB8 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12AD8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x12AC8 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12AE8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13CBA -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x142D8 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1641E -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16436 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16414 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1642C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CBE -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CF0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CCE -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16D00 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CDE -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16D10 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xB44B0 -ROMLocationX:0xB4640 -ROMLocationY:0xB47D0 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB4000 -ROMLocationX:0xB4190 -ROMLocationY:0xB4320 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6A30 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB68A0 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB4960 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB5900 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x189C6 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18A18 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x189CE -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18A20 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB1018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB7228 -Name:Knock sensitivity high cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6BE8 -Name:Knock sensitivity low cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB7BB0 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19F12 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xB7890 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19F08 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xB1FD8 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB7548 -Name:Knock sensitivity high cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6F08 -Name:Knock sensitivity low cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA2220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xA2258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0xA228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18EFC -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16CB2 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19F08 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x19F12 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1E830 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E82C -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB205C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3060 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2011_2012_2013_2014_Special Edition_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL5-A070 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x09874 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09C10 +Name:P0606 knock test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE2 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE4 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE5 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CE6 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CE9 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CEA +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CEB +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CED +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF0 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF3 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CF4 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF5 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09CF6 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CF8 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D09 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A624 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA02 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA04 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AADA +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x141F8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B5D8 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5DA +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6DA +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6DC +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B79C +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BC90 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BC92 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C6DC +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C6DE +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CA34 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D014 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0E02E +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E030 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E032 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x13F0A +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13F0E +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1656A +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1656C +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3951E +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x39570 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16542 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16552 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16574 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09888 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0988A +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09F50 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09BB8 +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3AE88 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x32305 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CA3 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CA8 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD0 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB8 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB6 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CBF +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CAF +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x790A6 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4FB6E +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CF56 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x78C82 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB5 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x13990 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x139A8 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13BCC +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14202 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163BC +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163B4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x163CC +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163C4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x163DC +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163D4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x163EC +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16406 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x165D4 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x165E0 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x165DA +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x16604 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x16700 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x166F0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16720 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16710 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16740 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16730 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1681C +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16C04 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16BF2 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x17448 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17484 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18A0E +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18A04 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1A234 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A23E +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A266 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A25C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A27A +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A270 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A28E +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A284 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A2A2 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A298 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A2BE +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11754 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1175C +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12AB8 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AD8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12AC8 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AE8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13CBA +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x142D8 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1641E +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16436 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16414 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1642C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CBE +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CF0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CCE +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16D00 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CDE +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16D10 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xB44B0 +ROMLocationX:0xB4640 +ROMLocationY:0xB47D0 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB4000 +ROMLocationX:0xB4190 +ROMLocationY:0xB4320 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6A30 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB68A0 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB4960 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB5900 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x189C6 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18A18 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x189CE +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18A20 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB7228 +Name:Knock sensitivity high cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6BE8 +Name:Knock sensitivity low cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB7BB0 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19F12 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xB7890 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19F08 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xB1FD8 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB7548 +Name:Knock sensitivity high cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6F08 +Name:Knock sensitivity low cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA2220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xA2258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0xA228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18EFC +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16CB2 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19F08 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x19F12 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1E830 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E82C +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB205C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3060 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL5-A120.txt b/bin/Debug/Definitions/Generated/37805-RL5-A120_Acura_TSX_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RL5-A120.txt rename to bin/Debug/Definitions/Generated/37805-RL5-A120_Acura_TSX_2009_2010.txt index 649b2ae..f9a07cc 100644 --- a/bin/Debug/Definitions/Generated/37805-RL5-A120.txt +++ b/bin/Debug/Definitions/Generated/37805-RL5-A120_Acura_TSX_2009_2010.txt @@ -1,100 +1,100 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL5-A120 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x1800E -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xB5C6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16A06 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBCC8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11E7A -ROMLocationY:0x11C44 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11E8A -ROMLocationY:0x11C44 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x12D5C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12D74 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Acura_TSX_2009_2010_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL5-A120 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x1800E +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xB5C6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16A06 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBCC8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11E7A +ROMLocationY:0x11C44 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11E8A +ROMLocationY:0x11C44 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x12D5C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12D74 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL5-A560.txt b/bin/Debug/Definitions/Generated/37805-RL5-A560_Acura_TSX_2011_2012_2013_2014.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RL5-A560.txt rename to bin/Debug/Definitions/Generated/37805-RL5-A560_Acura_TSX_2011_2012_2013_2014.txt index 8f58216..853f4c2 100644 --- a/bin/Debug/Definitions/Generated/37805-RL5-A560.txt +++ b/bin/Debug/Definitions/Generated/37805-RL5-A560_Acura_TSX_2011_2012_2013_2014.txt @@ -1,1037 +1,1037 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL5-A560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x09874 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09888 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0988A -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CA3 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CA8 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CAF -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB6 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB8 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CE2 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE4 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE5 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CE6 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CE9 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CEA -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CEB -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CED -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF0 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF3 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CF4 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CF5 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09CF6 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CF8 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D09 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A624 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA02 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA04 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AADA -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x141C0 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B5D8 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5DA -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6DA -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6DC -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B79C -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BC9C -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BC9E -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C6E8 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C6EA -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CA40 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0CFDC -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0DFF6 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFF8 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFFA -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x13ED2 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13ED6 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16532 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16534 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09C10 -Name:P0606 knock test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x39152 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x391A4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09F50 -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09BB8 -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3AABC -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x31F39 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CD0 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CBF -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x78C5A -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1650A -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1651A -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1653C -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CF62 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x788B2 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CB5 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x13958 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13970 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13B94 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x141CA -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16384 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1637C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16394 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1638C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x163A4 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1639C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x163B4 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163CE -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1659C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x165A8 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x165A2 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x165CC -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x166C8 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x166B8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x166E8 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x166D8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16708 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x166F8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x167E4 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16BCC -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16BBA -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x17408 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17444 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1F4 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A1FE -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1A226 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A21C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A23A -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A230 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A24E -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A244 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A262 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1A258 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1A27E -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1171C -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11724 -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12A80 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12AA0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x12A90 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12AB0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13C82 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x142A0 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163E6 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163FE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x163DC -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163F4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16C86 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CB8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16C96 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CC8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CA6 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CD8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xB44B0 -ROMLocationX:0xB4640 -ROMLocationY:0xB47D0 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB4000 -ROMLocationX:0xB4190 -ROMLocationY:0xB4320 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6A30 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB68A0 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB4960 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB5900 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18986 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x189D8 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x1898E -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x189E0 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xB0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB1018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB7BB0 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19ED2 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xB7890 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19EC8 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xA20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA2220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0xA2258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xA2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0xA228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18EBC -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16C7A -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x189CE -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x189C4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0xB7228 -Name:Knock sensitivity high cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6BE8 -Name:Knock sensitivity low cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB1FD8 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB7548 -Name:Knock sensitivity high cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB6F08 -Name:Knock sensitivity low cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19EC8 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x19ED2 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1E480 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1E47C -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB205C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB3060 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2011_2012_2013_2014_Base, Special Edition_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL5-A560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x09874 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09888 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0988A +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CA3 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CA8 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CAF +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB6 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB8 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CE2 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE4 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE5 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CE6 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CE9 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CEA +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CEB +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CED +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF0 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF3 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CF4 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CF5 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09CF6 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CF8 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D09 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A624 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA02 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA04 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AADA +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x141C0 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B5D8 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5DA +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6DA +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6DC +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B79C +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BC9C +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BC9E +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C6E8 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C6EA +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CA40 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0CFDC +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0DFF6 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFF8 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFFA +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x13ED2 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13ED6 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16532 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16534 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09C10 +Name:P0606 knock test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x39152 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x391A4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09F50 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09BB8 +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3AABC +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x31F39 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CD0 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CBF +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x78C5A +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1650A +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1651A +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1653C +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CF62 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x788B2 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CB5 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x13958 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13970 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13B94 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x141CA +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16384 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1637C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16394 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1638C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x163A4 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1639C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x163B4 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163CE +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1659C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x165A8 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x165A2 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x165CC +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x166C8 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x166B8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x166E8 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x166D8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16708 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x166F8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x167E4 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16BCC +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16BBA +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x17408 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17444 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1F4 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A1FE +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1A226 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A21C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A23A +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A230 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A24E +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A244 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A262 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1A258 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1A27E +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1171C +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11724 +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12A80 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AA0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12A90 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AB0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13C82 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x142A0 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163E6 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163FE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x163DC +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163F4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16C86 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CB8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16C96 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CC8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CA6 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CD8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xB44B0 +ROMLocationX:0xB4640 +ROMLocationY:0xB47D0 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB4000 +ROMLocationX:0xB4190 +ROMLocationY:0xB4320 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6A30 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB68A0 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB4960 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB5900 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18986 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x189D8 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x1898E +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x189E0 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xB0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB7BB0 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19ED2 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xB7890 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19EC8 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xA20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA2220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0xA2258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xA2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0xA228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18EBC +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16C7A +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x189CE +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x189C4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0xB7228 +Name:Knock sensitivity high cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6BE8 +Name:Knock sensitivity low cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1FD8 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB7548 +Name:Knock sensitivity high cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB6F08 +Name:Knock sensitivity low cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19EC8 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x19ED2 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1E480 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1E47C +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB205C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB3060 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL5-A710.txt b/bin/Debug/Definitions/Generated/37805-RL5-A710_Acura_TSX_2009_2010.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RL5-A710.txt rename to bin/Debug/Definitions/Generated/37805-RL5-A710_Acura_TSX_2009_2010.txt index ccd8fa3..cd7ed63 100644 --- a/bin/Debug/Definitions/Generated/37805-RL5-A710.txt +++ b/bin/Debug/Definitions/Generated/37805-RL5-A710_Acura_TSX_2009_2010.txt @@ -1,1074 +1,1074 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL5-A710 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0DFC6 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFC8 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0DFCA -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AACE -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x13664 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B5C4 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B5C6 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159A6 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159B6 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159D0 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x159D8 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x37194 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x371B8 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x92080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6C6 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B6C8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D1D -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1FA68 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A638 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09880 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BCD2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BCD0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09882 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13276 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13272 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D0D -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CA44 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09F78 -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D006 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x71604 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D11 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D08 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D15 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09D13 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B7D0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9F6 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9F8 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09BBC -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D06 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09D12 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x2FF39 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CFF -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0986C -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C736 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C738 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x922BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CC7 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CCB -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CEF -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CDB -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD9 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x387E0 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09CE2 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD2 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4A1D8 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CF86 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x71262 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CDD -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09CD8 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xA00B8 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA1058 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x169D0 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16994 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4898 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4A28 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA2958 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA38F8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17F16 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F68 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x13032 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA0098 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18418 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA5248 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19424 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0xA5568 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1942E -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x13744 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12D24 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12D0C -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11E34 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11E54 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11E44 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11E64 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15D70 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1366E -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12F44 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A68 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xA1FF8 -ROMLocationX:0xA2188 -ROMLocationY:0xA2318 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA24A8 -ROMLocationX:0xA2638 -ROMLocationY:0xA27C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19752 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19748 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1978E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19784 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1977A -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19770 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197B6 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x197AC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197A2 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19798 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16158 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16146 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x16212 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16244 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16222 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16254 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16232 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16264 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16206 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15C54 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C44 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15C74 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C64 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15C94 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15C84 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x197D2 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1586E -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19424 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1942E -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1D7F0 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1D7EC -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10E1C -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10E14 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1587C -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15894 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15886 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1589E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x920AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x92226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x9210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x920FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x92150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x921EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x921D6 -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15A38 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15A44 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A3E -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x15854 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15844 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1583C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x15834 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1582C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x15824 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1581C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0xA5950 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA68F0 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17F56 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F4C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x17F0E -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x17F60 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x92258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0xA4BE0 -Name:Knock sensitivity high cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA4F00 -Name:Knock sensitivity high cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA78A0 -Name:Knock sensitivity low cylinder 1-2 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA7BC0 -Name:Knock sensitivity low cylinder 3-4 -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x9228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Acura_TSX_2009_2010_Base_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL5-A710 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0DFC6 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFC8 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0DFCA +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AACE +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x13664 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B5C4 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B5C6 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159A6 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159B6 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159D0 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x159D8 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x37194 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x371B8 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x92080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6C6 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B6C8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D1D +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1FA68 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A638 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09880 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BCD2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BCD0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09882 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13276 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13272 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D0D +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CA44 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09F78 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D006 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x71604 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D11 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D08 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D15 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09D13 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B7D0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F6 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F8 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09BBC +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D06 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09D12 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x2FF39 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CFF +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0986C +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C736 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C738 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x922BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CC7 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CCB +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CEF +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CDB +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD9 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x387E0 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09CE2 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD2 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4A1D8 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CF86 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x71262 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CDD +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09CD8 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xA00B8 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA1058 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x169D0 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16994 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4898 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4A28 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA2958 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA38F8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17F16 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F68 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x13032 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA0098 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18418 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA5248 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19424 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0xA5568 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1942E +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x13744 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D24 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D0C +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11E34 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11E54 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11E44 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11E64 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15D70 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1366E +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12F44 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A68 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xA1FF8 +ROMLocationX:0xA2188 +ROMLocationY:0xA2318 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA24A8 +ROMLocationX:0xA2638 +ROMLocationY:0xA27C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19752 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19748 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1978E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19784 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1977A +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19770 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197B6 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x197AC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197A2 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19798 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16158 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16146 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x16212 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16244 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16222 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16254 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16232 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16264 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16206 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15C54 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C44 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15C74 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C64 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15C94 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15C84 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x197D2 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1586E +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19424 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1942E +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1D7F0 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1D7EC +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10E1C +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10E14 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1587C +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15894 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15886 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1589E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x920AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x92226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x9210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x920FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x92150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x921EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x921D6 +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15A38 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15A44 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A3E +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x15854 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15844 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1583C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x15834 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1582C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x15824 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1581C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0xA5950 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA68F0 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17F56 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F4C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x17F0E +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x17F60 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x92258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0xA4BE0 +Name:Knock sensitivity high cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA4F00 +Name:Knock sensitivity high cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA78A0 +Name:Knock sensitivity low cylinder 1-2 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA7BC0 +Name:Knock sensitivity low cylinder 3-4 +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x9228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL8-A520.txt b/bin/Debug/Definitions/Generated/37805-RL8-A520_Acura_TSX_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RL8-A520.txt rename to bin/Debug/Definitions/Generated/37805-RL8-A520_Acura_TSX_2010.txt index 14e5923..beea491 100644 --- a/bin/Debug/Definitions/Generated/37805-RL8-A520.txt +++ b/bin/Debug/Definitions/Generated/37805-RL8-A520_Acura_TSX_2010.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL8-A520 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAAE6 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x14C28 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C30 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C38 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C40 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C48 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C4C -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C5C -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x14C64 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xB272 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x154D2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB9BC -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14C1A -ROMLocationY:0xBA6A -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x14C2A -ROMLocationY:0xBA6A -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_TSX_2010_V6_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL8-A520 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAAE6 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x14C28 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C30 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C38 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C40 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C48 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C4C +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C5C +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x14C64 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xB272 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x154D2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB9BC +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14C1A +ROMLocationY:0xBA6A +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x14C2A +ROMLocationY:0xBA6A +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RL8-A730.txt b/bin/Debug/Definitions/Generated/37805-RL8-A730_Acura_TSX_2011_2012_2013_2014.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RL8-A730.txt rename to bin/Debug/Definitions/Generated/37805-RL8-A730_Acura_TSX_2011_2012_2013_2014.txt index a500883..bba4222 100644 --- a/bin/Debug/Definitions/Generated/37805-RL8-A730.txt +++ b/bin/Debug/Definitions/Generated/37805-RL8-A730_Acura_TSX_2011_2012_2013_2014.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RL8-A730 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD446 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x10004 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1000C -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10014 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1001C -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10024 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10028 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10038 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10040 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10B7A -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10B64 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xFFF6 -ROMLocationY:0xB270 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x10006 -ROMLocationY:0xB270 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_TSX_2011_2012_2013_2014_V6_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RL8-A730 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD446 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x10004 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1000C +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10014 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1001C +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10024 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10028 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10038 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10040 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10B7A +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10B64 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xFFF6 +ROMLocationY:0xB270 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x10006 +ROMLocationY:0xB270 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A180.txt b/bin/Debug/Definitions/Generated/37805-RME-A180_Honda_Fit_2008.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RME-A180.txt rename to bin/Debug/Definitions/Generated/37805-RME-A180_Honda_Fit_2008.txt index d3938f6..8e7fa5c 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A180.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A180_Honda_Fit_2008.txt @@ -1,1025 +1,1025 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A180 -37805-RME-A690 -37805-RME-A890 -37805-RME-C410 -37805-RME-C890 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0972B -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x093FC -Name:CVNRPM speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09404 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A15C -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AB90 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AB92 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AC8A -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AC9A -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BCF4 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BCF6 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A6FE -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x15990 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16306 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162F6 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1631E -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x16310 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1630C -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3A2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3A0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094C2 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094D0 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094CE -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x43C61 -Name:System control register 1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09719 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0971E -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09721 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09722 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09717 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0971B -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0970F -Name:Cruise control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09718 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x096D9 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A636 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A638 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x559C3 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09726 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B314 -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B316 -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B318 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B2F2 -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0967C -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x096FE -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x096EB -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0BA28 -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C8AE -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C8B0 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C8B2 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x096E8 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x096E9 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09714 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0ADA4 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B410 -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BDD8 -Name:P0420 Malfunction Threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x096B0 -Name:Knock P0606 test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BD5A -Name:P2A00 Minimun Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BD58 -Name:P2A00 Maximum Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09536 -Name:P0600 gauge comms test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09713 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x1779C -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x177D8 -Name:Injector opening time -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A4C -Name:Target throttle plate -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14D20 -Name:TPS WOT determination high -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14D38 -Name:TPS WOT determination low -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16394 -Name:Tip in fuel throttle compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1638E -Unit1:TPS -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x165A4 -Name:Closed loop target lambda low load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16594 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x165C4 -Name:Closed loop target lambda high load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x165B4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x165E4 -Name:Closed loop target lambda limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x165D4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xC11A8 -ROMLocationX:0xC1338 -ROMLocationY:0xC14C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0CF8 -ROMLocationX:0xC0E88 -ROMLocationY:0xC1018 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC06B8 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC09D8 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1E28 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1C98 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1658 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1978 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191D8 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191E2 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1920A -Name:Water temperature ignition compensation hot high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19200 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1921E -Name:Water temperature ignition compensation hot low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19214 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x19232 -Name:Water temperature ignition compensation cold high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19228 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x19246 -Name:Water temperature ignition compensation cold low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1923C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x19262 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14CA4 -Name:Idle speed (normal) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14CC4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14CB4 -Name:Idle speed (after start) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14CD4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CC4 -Name:Water temperature fuel compensation low -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CF6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CD4 -Name:Water temperature fuel compensation high -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16D06 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CE4 -Name:Water temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16D16 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16BBC -Name:Air temperature fuel compensation low flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BC6 -Name:Air temperature fuel compensation medium flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BD0 -Name:Air temperature fuel compensation high flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BDA -Name:Air temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16C0A -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x14F50 -Name:MAP WOT determination pressure -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC2300 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1FE0 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x161D6 -Name:Overrun fuel cut delay -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18392 -Name:Ignition retard gear compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x183E4 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x18BD4 -Name:Individual cylinder ignition trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16CB8 -Name:Individual cylinder fuel trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x183D2 -Name:Ignition retard rpm compensation -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x183C8 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1599A -Name:VTEC window pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x173FA -Name:Injector phase (WOT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13AFC -Name:Ignition dwell angle -TableSize:12x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13B22 -Name:Ignition dwell angle voltage compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1838A -Name:Ignition retard throttle compensation -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x183DC -Unit1:Throttle -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x161E4 -Name:Overrun injector restart rpm (cut) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x161FC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x161EE -Name:Overrun injector restart rpm (recover) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16206 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1618C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16184 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1619C -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16194 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x161AC -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x161A4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x161BC -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16388 -Name:Tip in fuel ECT compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20AC -Name:Wideband lambda -TableSize:2x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB2226 -Name:Gear ignition compensation -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB2220 -Unit1:Gear -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB210C -Name:Boost control duty to pressure -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB20FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB21EC -Name:Boost control air temperature compensation -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB21D6 -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22AE -Name:Boost control quick spool -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB22A8 -Unit1:Gear -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Fit_2008_Base, Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A180 +37805-RME-A690 +37805-RME-A890 +37805-RME-C410 +37805-RME-C890 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0972B +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x093FC +Name:CVNRPM speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09404 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A15C +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AB90 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AB92 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AC8A +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AC9A +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BCF4 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BCF6 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A6FE +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x15990 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16306 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162F6 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1631E +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x16310 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1630C +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3A2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3A0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094C2 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094D0 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094CE +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x43C61 +Name:System control register 1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09719 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0971E +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09721 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09722 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09717 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0971B +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0970F +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09718 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x096D9 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A636 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A638 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x559C3 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09726 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B314 +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B316 +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B318 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B2F2 +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0967C +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x096FE +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x096EB +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0BA28 +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C8AE +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C8B0 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C8B2 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x096E8 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x096E9 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09714 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0ADA4 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B410 +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BDD8 +Name:P0420 Malfunction Threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x096B0 +Name:Knock P0606 test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BD5A +Name:P2A00 Minimun Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BD58 +Name:P2A00 Maximum Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09536 +Name:P0600 gauge comms test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09713 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x1779C +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x177D8 +Name:Injector opening time +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A4C +Name:Target throttle plate +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14D20 +Name:TPS WOT determination high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14D38 +Name:TPS WOT determination low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16394 +Name:Tip in fuel throttle compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1638E +Unit1:TPS +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x165A4 +Name:Closed loop target lambda low load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16594 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x165C4 +Name:Closed loop target lambda high load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x165B4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x165E4 +Name:Closed loop target lambda limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x165D4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xC11A8 +ROMLocationX:0xC1338 +ROMLocationY:0xC14C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0CF8 +ROMLocationX:0xC0E88 +ROMLocationY:0xC1018 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC06B8 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC09D8 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1E28 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1C98 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1658 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1978 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191D8 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191E2 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1920A +Name:Water temperature ignition compensation hot high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19200 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1921E +Name:Water temperature ignition compensation hot low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19214 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x19232 +Name:Water temperature ignition compensation cold high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19228 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x19246 +Name:Water temperature ignition compensation cold low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1923C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x19262 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14CA4 +Name:Idle speed (normal) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14CC4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14CB4 +Name:Idle speed (after start) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14CD4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CC4 +Name:Water temperature fuel compensation low +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CF6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CD4 +Name:Water temperature fuel compensation high +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16D06 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CE4 +Name:Water temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16D16 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16BBC +Name:Air temperature fuel compensation low flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BC6 +Name:Air temperature fuel compensation medium flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BD0 +Name:Air temperature fuel compensation high flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BDA +Name:Air temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16C0A +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x14F50 +Name:MAP WOT determination pressure +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC2300 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1FE0 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x161D6 +Name:Overrun fuel cut delay +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18392 +Name:Ignition retard gear compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x183E4 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x18BD4 +Name:Individual cylinder ignition trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16CB8 +Name:Individual cylinder fuel trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x183D2 +Name:Ignition retard rpm compensation +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x183C8 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1599A +Name:VTEC window pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x173FA +Name:Injector phase (WOT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13AFC +Name:Ignition dwell angle +TableSize:12x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13B22 +Name:Ignition dwell angle voltage compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1838A +Name:Ignition retard throttle compensation +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x183DC +Unit1:Throttle +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x161E4 +Name:Overrun injector restart rpm (cut) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x161FC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x161EE +Name:Overrun injector restart rpm (recover) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16206 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1618C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16184 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1619C +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16194 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x161AC +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x161A4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x161BC +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16388 +Name:Tip in fuel ECT compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20AC +Name:Wideband lambda +TableSize:2x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2226 +Name:Gear ignition compensation +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB2220 +Unit1:Gear +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB210C +Name:Boost control duty to pressure +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB20FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB21EC +Name:Boost control air temperature compensation +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB21D6 +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22AE +Name:Boost control quick spool +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB22A8 +Unit1:Gear +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A220.txt b/bin/Debug/Definitions/Generated/37805-RME-A220_Honda_Fit_2007.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RME-A220.txt rename to bin/Debug/Definitions/Generated/37805-RME-A220_Honda_Fit_2007.txt index 7e188fc..28cf7c4 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A220.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A220_Honda_Fit_2007.txt @@ -1,2209 +1,2209 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A220 -37805-RME-A520 -37805-RME-A720 -37805-RME-C220 -37805-RME-C520 -37805-RME-C720 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x09733 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09404 -Name:CVNRPM speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0940C -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A164 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AB98 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AB9A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AC92 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0ACA2 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BCFC -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BCFE -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A706 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x15954 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x162CA -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162BA -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162E2 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x162D4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162D0 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3AA -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3A8 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094CA -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094D8 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x094D6 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x43349 -Name:System control register 1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x09721 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09726 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09729 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0972A -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0971F -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09723 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09717 -Name:Cruise control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x09720 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x096E1 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A63E -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A640 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x55067 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0972E -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B31C -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B31E -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B320 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B2FA -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09684 -Name:Maximum ignition dwell angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x09704 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x096F3 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0BA30 -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C8B8 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C8BA -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0C8BC -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x096F0 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x096F1 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0971C -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0ADAC -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B418 -Name:VLFFCR calculation factor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BDE0 -Name:P0420 Malfunction Threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x096B8 -Name:Knock P0606 test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BD62 -Name:P2A00 Minimun Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BD60 -Name:P2A00 Maximum Voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0953E -Name:P0600 gauge comms test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xB20D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0971B -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021367C -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021367E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F84 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275F85 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275F8F -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F90 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275FDB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE4 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FE9 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80276117 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FFA -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276001 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213C20 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276008 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212FCC -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027781A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277488 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277492 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277850 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277852 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277870 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277872 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FEB -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802139E8 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128C6 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B6 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B2 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732AA -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x802125CC -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D2 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125CE -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D0 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x17760 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1779C -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A10 -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14F14 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16B80 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16B8A -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16B94 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16B9E -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16BCE -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x16C88 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CBA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16C98 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CCA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16CA8 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16CDA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xC11A8 -ROMLocationX:0xC1338 -ROMLocationY:0xC14C8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC0CF8 -ROMLocationX:0xC0E88 -ROMLocationY:0xC1018 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC06B8 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC09D8 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1E28 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1C98 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1658 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1978 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14C68 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14C88 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14C78 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14C98 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14CE4 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14CFC -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1919C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191A6 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191CE -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x191C4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x191E2 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x191D8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x191F6 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x191EC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1920A -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x19200 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x19226 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16358 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16352 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x16568 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16558 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16588 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16578 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x165A8 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16598 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xC2300 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC1FE0 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1619A -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18356 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x183A8 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x18B98 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16C7C -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18396 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1838C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1595E -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x173BE -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13AC0 -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13AE6 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1834E -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x183A0 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x161A8 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x161C0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x161B2 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x161CA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16150 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16148 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16160 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16158 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16170 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16168 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x16180 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1634C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB20AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB2226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB2220 -Unit1:Gear -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB210C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB20FC -Unit1:Duty -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xB2150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB21EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB21D6 -Unit1:IAT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB22AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xB22A8 -Unit1:Gear -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C74 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C7C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802431D0 -ROMLocationX:0x80243450 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D402 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D42A -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802165FA -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802185EC -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FAE2 -ROMLocationX:0x8021FA7E -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80218740 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80263110 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FA1A -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021502C -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x8023A5D8 -ROMLocationX:0x8023A2B8 -ROMLocationY:0x80239F98 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80274968 -ROMLocationX:0x80274328 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80241DD0 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C872 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80225EA8 -ROMLocationX:0x80225D18 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236438 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021527A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215270 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021703E -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021705E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8002B3BC -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80237248 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237568 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D8DA -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD8A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD62 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021D88A -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266950 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D9F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026A7D0 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021DEF2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802774EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802774DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x8027754C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8027755C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80277568 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277580 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802775C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277828 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277844 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802774A0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277860 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027788C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8002CB2C -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B614 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C692 -Unit1:Speed -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B86C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BAC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BD1C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BF74 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C1CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C67C -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021D452 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D452 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022214E -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80222496 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233B98 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D28 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802691F0 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80273522 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80226678 -Name:Temperature based boost limit -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C912 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 11 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002CFDC -Name:Driving force 12 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D234 -Name:Driving force 13 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D48C -Name:Driving force 14 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D6E4 -Name:Driving force 15 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D93C -Name:Driving force 16 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DB94 -Name:Driving force 17 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DDEC -Name:Driving force 18 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E044 -Name:Driving force 19 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E29C -Name:Driving force 20 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E4F4 -Name:Driving force 21 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E74C -Name:Driving force 22 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E9A4 -Name:Driving force 23 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 24 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EE54 -Name:Driving force 25 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F0AC -Name:Driving force 26 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F304 -Name:Driving force 27 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023BDB8 -Name:Driving force 28 new set -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C010 -Name:Driving force 29 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C268 -Name:Driving force 30 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C4C0 -Name:Driving force 31 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C718 -Name:Driving force 32 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C970 -Name:Driving force 33 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CBC8 -Name:Driving force 34 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CE20 -Name:Driving force 35 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D078 -Name:Driving force 36 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D2D0 -Name:Driving force 37 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D528 -Name:Driving force 38 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D780 -Name:Driving force 39 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D9D8 -Name:Driving force 40 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DC30 -Name:Driving force 41 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DE88 -Name:Driving force 42 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E0E0 -Name:Driving force 43 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E338 -Name:Driving force 44 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E590 -Name:Driving force 45 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E7E8 -Name:Driving force 46 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EA40 -Name:Driving force 47 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EC98 -Name:Driving force 48 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EEF0 -Name:Driving force 49 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F148 -Name:Driving force 50 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F3A0 -Name:Driving force 51 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F5F8 -Name:Driving force 52 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F850 -Name:Driving force 53 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FAA8 -Name:Driving force 54 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FD00 -Name:Driving force 55 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802152E8 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802152F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Fit_2007_Base, Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A220 +37805-RME-A520 +37805-RME-A720 +37805-RME-C220 +37805-RME-C520 +37805-RME-C720 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x09733 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09404 +Name:CVNRPM speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0940C +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A164 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AB98 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AB9A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AC92 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0ACA2 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BCFC +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BCFE +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A706 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x15954 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x162CA +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162BA +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162E2 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x162D4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162D0 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3AA +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3A8 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094CA +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094D8 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x094D6 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x43349 +Name:System control register 1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x09721 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09726 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09729 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0972A +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0971F +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09723 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09717 +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x09720 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x096E1 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A63E +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A640 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x55067 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0972E +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B31C +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B31E +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B320 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B2FA +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09684 +Name:Maximum ignition dwell angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x09704 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x096F3 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0BA30 +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C8B8 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C8BA +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0C8BC +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x096F0 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x096F1 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0971C +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0ADAC +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B418 +Name:VLFFCR calculation factor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BDE0 +Name:P0420 Malfunction Threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x096B8 +Name:Knock P0606 test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BD62 +Name:P2A00 Minimun Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BD60 +Name:P2A00 Maximum Voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0953E +Name:P0600 gauge comms test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xB20D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0971B +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021367C +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021367E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F84 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275F85 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275F8F +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F90 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275FDB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE4 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FE9 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80276117 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FFA +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276001 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213C20 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276008 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212FCC +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027781A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277488 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277492 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277850 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277852 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277870 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277872 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FEB +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802139E8 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128C6 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B6 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B2 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732AA +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x802125CC +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D2 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125CE +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D0 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x17760 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1779C +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A10 +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14F14 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16B80 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16B8A +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16B94 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16B9E +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16BCE +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x16C88 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CBA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16C98 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CCA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16CA8 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16CDA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xC11A8 +ROMLocationX:0xC1338 +ROMLocationY:0xC14C8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC0CF8 +ROMLocationX:0xC0E88 +ROMLocationY:0xC1018 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC06B8 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC09D8 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1E28 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1C98 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1658 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1978 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14C68 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14C88 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14C78 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14C98 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14CE4 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14CFC +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1919C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191A6 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191CE +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x191C4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x191E2 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x191D8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x191F6 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x191EC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1920A +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x19200 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x19226 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16358 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16352 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x16568 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16558 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16588 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16578 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x165A8 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16598 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xC2300 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC1FE0 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1619A +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18356 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x183A8 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x18B98 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16C7C +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18396 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1838C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1595E +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x173BE +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13AC0 +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13AE6 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1834E +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x183A0 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x161A8 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x161C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x161B2 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x161CA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16150 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16148 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16160 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16158 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16170 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16168 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x16180 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1634C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB20AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB2220 +Unit1:Gear +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB210C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB20FC +Unit1:Duty +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xB2150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB21EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB21D6 +Unit1:IAT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB22AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xB22A8 +Unit1:Gear +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C74 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C7C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802431D0 +ROMLocationX:0x80243450 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D402 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D42A +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802165FA +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802185EC +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FAE2 +ROMLocationX:0x8021FA7E +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80218740 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80263110 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FA1A +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021502C +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x8023A5D8 +ROMLocationX:0x8023A2B8 +ROMLocationY:0x80239F98 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80274968 +ROMLocationX:0x80274328 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80241DD0 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C872 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80225EA8 +ROMLocationX:0x80225D18 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236438 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021527A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215270 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021703E +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021705E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8002B3BC +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80237248 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237568 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D8DA +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD8A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD62 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021D88A +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266950 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D9F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026A7D0 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021DEF2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802774EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802774DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x8027754C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8027755C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80277568 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277580 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802775C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277828 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277844 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802774A0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277860 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027788C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8002CB2C +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B614 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C692 +Unit1:Speed +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B86C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BAC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BD1C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BF74 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C1CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C67C +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021D452 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D452 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022214E +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80222496 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233B98 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D28 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802691F0 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80273522 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80226678 +Name:Temperature based boost limit +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C912 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 11 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002CFDC +Name:Driving force 12 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D234 +Name:Driving force 13 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D48C +Name:Driving force 14 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D6E4 +Name:Driving force 15 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D93C +Name:Driving force 16 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DB94 +Name:Driving force 17 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DDEC +Name:Driving force 18 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E044 +Name:Driving force 19 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E29C +Name:Driving force 20 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E4F4 +Name:Driving force 21 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E74C +Name:Driving force 22 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E9A4 +Name:Driving force 23 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 24 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EE54 +Name:Driving force 25 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F0AC +Name:Driving force 26 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F304 +Name:Driving force 27 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023BDB8 +Name:Driving force 28 new set +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C010 +Name:Driving force 29 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C268 +Name:Driving force 30 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C4C0 +Name:Driving force 31 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C718 +Name:Driving force 32 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C970 +Name:Driving force 33 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CBC8 +Name:Driving force 34 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CE20 +Name:Driving force 35 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D078 +Name:Driving force 36 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D2D0 +Name:Driving force 37 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D528 +Name:Driving force 38 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D780 +Name:Driving force 39 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D9D8 +Name:Driving force 40 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DC30 +Name:Driving force 41 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DE88 +Name:Driving force 42 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E0E0 +Name:Driving force 43 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E338 +Name:Driving force 44 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E590 +Name:Driving force 45 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E7E8 +Name:Driving force 46 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EA40 +Name:Driving force 47 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EC98 +Name:Driving force 48 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EEF0 +Name:Driving force 49 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F148 +Name:Driving force 50 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F3A0 +Name:Driving force 51 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F5F8 +Name:Driving force 52 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F850 +Name:Driving force 53 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FAA8 +Name:Driving force 54 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FD00 +Name:Driving force 55 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802152E8 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802152F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A520.txt b/bin/Debug/Definitions/Generated/37805-RME-A520_Honda_Fit_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RME-A520.txt rename to bin/Debug/Definitions/Generated/37805-RME-A520_Honda_Fit_2007.txt index 9a5f20d..d41ea15 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A520.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A520_Honda_Fit_2007.txt @@ -1,69 +1,69 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A520 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAB9A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x17792 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB3AC -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14CFC -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14D14 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2007_Base_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A520 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAB9A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x17792 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB3AC +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14CFC +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14D14 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A690.txt b/bin/Debug/Definitions/Generated/37805-RME-A690_Honda_Fit_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RME-A690.txt rename to bin/Debug/Definitions/Generated/37805-RME-A690_Honda_Fit_2008.txt index ca780da..fe76966 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A690.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A690_Honda_Fit_2008.txt @@ -1,69 +1,69 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A690 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAB92 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x177CE -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB3A4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14D38 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14D50 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2008_Base_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A690 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAB92 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x177CE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB3A4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14D38 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14D50 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A720.txt b/bin/Debug/Definitions/Generated/37805-RME-A720_Honda_Fit_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RME-A720.txt rename to bin/Debug/Definitions/Generated/37805-RME-A720_Honda_Fit_2007.txt index 3ebea1d..91dc561 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A720.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A720_Honda_Fit_2007.txt @@ -1,69 +1,69 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A720 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAB9A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x17792 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB3AC -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14CFC -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14D14 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2007_Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A720 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAB9A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x17792 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB3AC +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14CFC +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14D14 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RME-A890.txt b/bin/Debug/Definitions/Generated/37805-RME-A890_Honda_Fit_2008.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RME-A890.txt rename to bin/Debug/Definitions/Generated/37805-RME-A890_Honda_Fit_2008.txt index 1462377..e287782 100644 --- a/bin/Debug/Definitions/Generated/37805-RME-A890.txt +++ b/bin/Debug/Definitions/Generated/37805-RME-A890_Honda_Fit_2008.txt @@ -1,69 +1,69 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RME-A890 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAB92 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x177CE -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB3A4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x14D38 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x14D50 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2008_Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RME-A890 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAB92 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x177CE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB3A4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x14D38 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x14D50 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RMX-A130.txt b/bin/Debug/Definitions/Generated/37805-RMX-A130_Honda_Civic_2009_2010_2011.txt similarity index 92% rename from bin/Debug/Definitions/Generated/37805-RMX-A130.txt rename to bin/Debug/Definitions/Generated/37805-RMX-A130_Honda_Civic_2009_2010_2011.txt index 5fe51a3..0e76c53 100644 --- a/bin/Debug/Definitions/Generated/37805-RMX-A130.txt +++ b/bin/Debug/Definitions/Generated/37805-RMX-A130_Honda_Civic_2009_2010_2011.txt @@ -1,60 +1,60 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RMX-A130 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x14996 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC5F8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x112B8 -ROMLocationY:0x10F80 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x112C8 -ROMLocationY:0x10F80 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Civic_2009_2010_2011_Hybrid, Hybrid-L_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RMX-A130 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x14996 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC5F8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x112B8 +ROMLocationY:0x10F80 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x112C8 +ROMLocationY:0x10F80 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RMX-A630.txt b/bin/Debug/Definitions/Generated/37805-RMX-A630_Honda_Civic_2006.txt similarity index 92% rename from bin/Debug/Definitions/Generated/37805-RMX-A630.txt rename to bin/Debug/Definitions/Generated/37805-RMX-A630_Honda_Civic_2006.txt index 6dfa163..07ac977 100644 --- a/bin/Debug/Definitions/Generated/37805-RMX-A630.txt +++ b/bin/Debug/Definitions/Generated/37805-RMX-A630_Honda_Civic_2006.txt @@ -1,60 +1,60 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RMX-A630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x143BE -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBA78 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x106C0 -ROMLocationY:0x12430 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x106D0 -ROMLocationY:0x12430 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Civic_2006_Hybrid_1.3L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RMX-A630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x143BE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBA78 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x106C0 +ROMLocationY:0x12430 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x106D0 +ROMLocationY:0x12430 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RN0-A570.txt b/bin/Debug/Definitions/Generated/37805-RN0-A570_Honda_Pilot_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RN0-A570.txt rename to bin/Debug/Definitions/Generated/37805-RN0-A570_Honda_Pilot_2009_2010.txt index 0225586..2ae7d9d 100644 --- a/bin/Debug/Definitions/Generated/37805-RN0-A570.txt +++ b/bin/Debug/Definitions/Generated/37805-RN0-A570_Honda_Pilot_2009_2010.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RN0-A570 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x183E6 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183EE -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183F6 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183FE -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x18406 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1840A -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1841A -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x18422 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBF16 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x18BF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC718 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x183E6 -ROMLocationY:0x124C4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x183F6 -ROMLocationY:0x124C4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Pilot_2009_2010_EX, EX-L, LX, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RN0-A570 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x183E6 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183EE +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183F6 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183FE +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x18406 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1840A +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1841A +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x18422 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBF16 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x18BF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC718 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x183E6 +ROMLocationY:0x124C4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x183F6 +ROMLocationY:0x124C4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RN0-A630.txt b/bin/Debug/Definitions/Generated/37805-RN0-A630_Honda_Pilot_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RN0-A630.txt rename to bin/Debug/Definitions/Generated/37805-RN0-A630_Honda_Pilot_2011.txt index b272996..e7ea0e6 100644 --- a/bin/Debug/Definitions/Generated/37805-RN0-A630.txt +++ b/bin/Debug/Definitions/Generated/37805-RN0-A630_Honda_Pilot_2011.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RN0-A630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x19866 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1986E -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x19876 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1987E -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x19886 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1988A -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1989A -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x198A2 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBF1E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x1A076 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC720 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x19866 -ROMLocationY:0x13944 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x19876 -ROMLocationY:0x13944 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Pilot_2011_EX, EX-L, LX, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RN0-A630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x19866 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1986E +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x19876 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1987E +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x19886 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1988A +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1989A +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x198A2 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBF1E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x1A076 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC720 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x19866 +ROMLocationY:0x13944 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x19876 +ROMLocationY:0x13944 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RN0-A770.txt b/bin/Debug/Definitions/Generated/37805-RN0-A770_Honda_Pilot_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RN0-A770.txt rename to bin/Debug/Definitions/Generated/37805-RN0-A770_Honda_Pilot_2009_2010.txt index d3f9aa6..07532db 100644 --- a/bin/Debug/Definitions/Generated/37805-RN0-A770.txt +++ b/bin/Debug/Definitions/Generated/37805-RN0-A770_Honda_Pilot_2009_2010.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RN0-A770 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x183E6 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183EE -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183F6 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x183FE -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x18406 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1840A -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1841A -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x18422 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBF16 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x18BF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC718 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x183E6 -ROMLocationY:0x124C4 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x183F6 -ROMLocationY:0x124C4 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Pilot_2009_2010_EX, EX-L, LX, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RN0-A770 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x183E6 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183EE +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183F6 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x183FE +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x18406 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1840A +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1841A +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x18422 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBF16 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x18BF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC718 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x183E6 +ROMLocationY:0x124C4 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x183F6 +ROMLocationY:0x124C4 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RN0-A830.txt b/bin/Debug/Definitions/Generated/37805-RN0-A830_Honda_Pilot_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RN0-A830.txt rename to bin/Debug/Definitions/Generated/37805-RN0-A830_Honda_Pilot_2011.txt index 75b87de..7f0764c 100644 --- a/bin/Debug/Definitions/Generated/37805-RN0-A830.txt +++ b/bin/Debug/Definitions/Generated/37805-RN0-A830_Honda_Pilot_2011.txt @@ -1,123 +1,123 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RN0-A830 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x19866 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1986E -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x19876 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1987E -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x19886 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1988A -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1989A -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x198A2 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBF1E -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x1A076 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xC720 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x19866 -ROMLocationY:0x13944 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x19876 -ROMLocationY:0x13944 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_Pilot_2011_EX, EX-L, LX, Touring_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RN0-A830 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x19866 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1986E +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x19876 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1987E +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x19886 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1988A +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1989A +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x198A2 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBF1E +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x1A076 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC720 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x19866 +ROMLocationY:0x13944 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x19876 +ROMLocationY:0x13944 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RN030.txt b/bin/Debug/Definitions/Generated/37805-RN0-M130.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RN030.txt rename to bin/Debug/Definitions/Generated/37805-RN0-M130.txt index 3f5ff79..42bed84 100644 --- a/bin/Debug/Definitions/Generated/37805-RN030.txt +++ b/bin/Debug/Definitions/Generated/37805-RN0-M130.txt @@ -1,116 +1,116 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RN030 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x13186 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1318E -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13196 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1319E -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x131A6 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x131AA -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x131BA -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x131C2 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13E56 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x13D88 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x13186 -ROMLocationY:0x12846 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x13196 -ROMLocationY:0x12846 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +####################################################################### +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RN0-M130 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x13186 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1318E +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13196 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1319E +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x131A6 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x131AA +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x131BA +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x131C2 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13E56 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x13D88 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x13186 +ROMLocationY:0x12846 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x13196 +ROMLocationY:0x12846 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-3450.txt b/bin/Debug/Definitions/Generated/37805-RNA-3450_Honda_Civic_2006.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RNA-3450.txt rename to bin/Debug/Definitions/Generated/37805-RNA-3450_Honda_Civic_2006.txt index 015e39b..9c0a404 100644 --- a/bin/Debug/Definitions/Generated/37805-RNA-3450.txt +++ b/bin/Debug/Definitions/Generated/37805-RNA-3450_Honda_Civic_2006.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RNA-3450 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xDA0A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x135B2 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBD88 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xF81C -ROMLocationY:0x10470 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xF82C -ROMLocationY:0x10470 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xFA18 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0xFA30 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Civic_2006_DX, EX, LX_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-3450 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xDA0A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x135B2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBD88 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xF81C +ROMLocationY:0x10470 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF82C +ROMLocationY:0x10470 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xFA18 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0xFA30 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-A330.txt b/bin/Debug/Definitions/Generated/37805-RNA-A330_Honda_Civic_2009_2010.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RNA-A330.txt rename to bin/Debug/Definitions/Generated/37805-RNA-A330_Honda_Civic_2009_2010.txt index 06660fb..e6710d2 100644 --- a/bin/Debug/Definitions/Generated/37805-RNA-A330.txt +++ b/bin/Debug/Definitions/Generated/37805-RNA-A330_Honda_Civic_2009_2010.txt @@ -1,1056 +1,1056 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RNA-A330 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0AA07 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA0F -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x28E19 -Name:System control register 1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AC66 -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A570 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A580 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A582 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1282E -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1283E -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5D0 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BF6A -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BF6C -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA0B -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA0C -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B044 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9F7 -Name:Cruise control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C5CA -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C5EC -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C5EE -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C5F0 -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C67A -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C678 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA16 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A42C -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D708 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A423 -Name:Speed sensor adjustment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3428C -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9FF -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA05 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20B8 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20B4 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6AFEA -Name:Driving recorder enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B594 -Name:Intake runner low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B592 -Name:Intake runner high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10772 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12850 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1284C -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA2200 -Name:Pit lane speed limit enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA2202 -Name:Pit lane speed limit speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA1C -Name:Secondary intake runner enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9FD -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9E1 -Name:Coil test enabled (P351 P352 P353 P354) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9D0 -Name:Secondary intake runner low rpm error enabled (P1077) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47547 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B4DC -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B4E0 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9CF -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C074 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9BB -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9E4 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9FE -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10776 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CFA4 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CFA6 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA22BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9BF -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A52C -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A52E -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9FB -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA04 -Name:Engine oil pressure sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9D6 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9C6 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BE60 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BE62 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AB30 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA2270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xB0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10440 -Name:AFM flow -TableSize:64x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB06B8 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB09D8 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13A50 -Name:Injector opening time -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x126F2 -Name:Overrun fuel cut delay -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13154 -Name:Air temperature fuel compensation low flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1315E -Name:Air temperature fuel compensation medium flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13168 -Name:Air temperature fuel compensation high flow -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13172 -Name:Air temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13142 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x1322C -Name:Water temperature fuel compensation low -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1325E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1323C -Name:Water temperature fuel compensation high -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1326E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1324C -Name:Water temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1327E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14B58 -Name:Individual cylinder ignition trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13220 -Name:Individual cylinder fuel trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15166 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1515C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x151A2 -Name:Water temperature ignition compensation hot low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15198 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1518E -Name:Water temperature ignition compensation hot high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15184 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x151CA -Name:Water temperature ignition compensation cold low -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x151C0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x151B6 -Name:Water temperature ignition compensation cold high -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x151AC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13A14 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1103C -Name:Target throttle plate -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10098 -Name:TPS WOT determination low -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10080 -Name:TPS WOT determination high -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x102B0 -Name:MAP WOT determination pressure -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12D84 -Name:Purge fuel -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB1FD8 -Name:AFM fuel -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0FECC -Name:Idle speed (normal) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0FEEC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0FEDC -Name:Idle speed (after start) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0FEFC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x12908 -Name:LAF voltage to lambda -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB0CF8 -ROMLocationX:0xB1338 -ROMLocationY:0xB1978 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB1018 -ROMLocationX:0xB1658 -ROMLocationY:0xB1C98 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0F3DE -Name:Ignition dwell angle -TableSize:12x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0F404 -Name:Ignition dwell angle voltage compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13948 -Name:Injector phase (high load) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13952 -Name:Injector phase (WOT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1460E -Name:Ignition retard gear compensation -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14660 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1148E -Name:High speed throttle reduction -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11486 -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x126D8 -Name:Overrun cutoff MAP low cam hys low -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x126D0 -Unit1:rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x126C8 -Name:Overrun cutoff MAP high cam hys low -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x126C0 -Unit1:rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x126B8 -Name:Overrun cutoff MAP low cam hys high -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x126B0 -Unit1:rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x126A8 -Name:Overrun cutoff MAP high cam hys high -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x126A0 -Unit1:rpm -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1464E -Name:Ignition retard rpm compensation -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14644 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x14606 -Name:Ignition retard throttle compensation -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14658 -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x128D8 -Name:Tip in fuel ECT compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x128E4 -Name:Tip in fuel throttle compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x128DE -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x0FFC8 -Name:AFM PLS throttle -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x153E0 -Name:Knock sensitivity low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15570 -Name:Knock sensitivity high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13F24 -Name:Knock retard low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13E5C -Name:Knock retard high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15300 -Name:Knock gate start low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15350 -Name:Knock gate end low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x152D8 -Name:Knock gate start high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15328 -Name:Knock gate end high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x12AF4 -Name:Closed loop target lambda low load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12AE4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x12B14 -Name:Closed loop target lambda high load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12B04 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x12B34 -Name:Closed loop target lambda limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12B24 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x151E6 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xB2028 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xB2348 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10EFC -Name:R18 VTEC table -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10EF0 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10EE4 -Name:R18 VTEC TABLE 2 -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11378 -Name:Throttle flow vs opening -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA228C -Name:Traction control ignition retard -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2009_2010_EX-L_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-A330 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0AA07 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA0F +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x28E19 +Name:System control register 1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AC66 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A570 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A580 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A582 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1282E +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1283E +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5D0 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BF6A +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BF6C +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA0B +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA0C +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B044 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F7 +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C5CA +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5EC +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5EE +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5F0 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C67A +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C678 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA16 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A42C +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D708 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A423 +Name:Speed sensor adjustment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3428C +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FF +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA05 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6AFEA +Name:Driving recorder enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B594 +Name:Intake runner low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B592 +Name:Intake runner high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10772 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12850 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1284C +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2200 +Name:Pit lane speed limit enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2202 +Name:Pit lane speed limit speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA1C +Name:Secondary intake runner enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FD +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9E1 +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9D0 +Name:Secondary intake runner low rpm error enabled (P1077) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47547 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B4DC +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B4E0 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9CF +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C074 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BB +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9E4 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FE +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10776 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CFA4 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CFA6 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BF +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A52C +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A52E +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FB +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA04 +Name:Engine oil pressure sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9D6 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9C6 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE60 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE62 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AB30 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xB0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10440 +Name:AFM flow +TableSize:64x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB06B8 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB09D8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13A50 +Name:Injector opening time +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x126F2 +Name:Overrun fuel cut delay +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13154 +Name:Air temperature fuel compensation low flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1315E +Name:Air temperature fuel compensation medium flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13168 +Name:Air temperature fuel compensation high flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13172 +Name:Air temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13142 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x1322C +Name:Water temperature fuel compensation low +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1325E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1323C +Name:Water temperature fuel compensation high +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1326E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1324C +Name:Water temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1327E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14B58 +Name:Individual cylinder ignition trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13220 +Name:Individual cylinder fuel trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15166 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1515C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x151A2 +Name:Water temperature ignition compensation hot low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15198 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1518E +Name:Water temperature ignition compensation hot high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15184 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151CA +Name:Water temperature ignition compensation cold low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x151C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151B6 +Name:Water temperature ignition compensation cold high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x151AC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13A14 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1103C +Name:Target throttle plate +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10098 +Name:TPS WOT determination low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10080 +Name:TPS WOT determination high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x102B0 +Name:MAP WOT determination pressure +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D84 +Name:Purge fuel +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB1FD8 +Name:AFM fuel +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0FECC +Name:Idle speed (normal) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FEEC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0FEDC +Name:Idle speed (after start) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FEFC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12908 +Name:LAF voltage to lambda +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0CF8 +ROMLocationX:0xB1338 +ROMLocationY:0xB1978 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1018 +ROMLocationX:0xB1658 +ROMLocationY:0xB1C98 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F3DE +Name:Ignition dwell angle +TableSize:12x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0F404 +Name:Ignition dwell angle voltage compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13948 +Name:Injector phase (high load) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13952 +Name:Injector phase (WOT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1460E +Name:Ignition retard gear compensation +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14660 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1148E +Name:High speed throttle reduction +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11486 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x126D8 +Name:Overrun cutoff MAP low cam hys low +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126D0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126C8 +Name:Overrun cutoff MAP high cam hys low +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126C0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126B8 +Name:Overrun cutoff MAP low cam hys high +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126B0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126A8 +Name:Overrun cutoff MAP high cam hys high +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126A0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1464E +Name:Ignition retard rpm compensation +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14644 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x14606 +Name:Ignition retard throttle compensation +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14658 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x128D8 +Name:Tip in fuel ECT compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x128E4 +Name:Tip in fuel throttle compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x128DE +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x0FFC8 +Name:AFM PLS throttle +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x153E0 +Name:Knock sensitivity low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15570 +Name:Knock sensitivity high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13F24 +Name:Knock retard low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13E5C +Name:Knock retard high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15300 +Name:Knock gate start low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15350 +Name:Knock gate end low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x152D8 +Name:Knock gate start high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15328 +Name:Knock gate end high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x12AF4 +Name:Closed loop target lambda low load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AE4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12B14 +Name:Closed loop target lambda high load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12B04 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12B34 +Name:Closed loop target lambda limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12B24 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151E6 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2028 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2348 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10EFC +Name:R18 VTEC table +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10EF0 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10EE4 +Name:R18 VTEC TABLE 2 +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11378 +Name:Throttle flow vs opening +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA228C +Name:Traction control ignition retard +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-A680_Honda_Civic_2007_2008.txt b/bin/Debug/Definitions/Generated/37805-RNA-A680_Honda_Civic_2007_2008.txt new file mode 100644 index 0000000..64d0fc0 --- /dev/null +++ b/bin/Debug/Definitions/Generated/37805-RNA-A680_Honda_Civic_2007_2008.txt @@ -0,0 +1,91 @@ +####################################################################### +# Honda_Civic_2007_2008_DX, EX, LX_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-A680 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xDA4A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x136B2 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBDE4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xF8F8 +ROMLocationY:0x10564 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF908 +ROMLocationY:0x10564 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xFC5C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0xFC74 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-A740_Honda_Civic_2009_2010_2011.txt b/bin/Debug/Definitions/Generated/37805-RNA-A740_Honda_Civic_2009_2010_2011.txt new file mode 100644 index 0000000..85f565e --- /dev/null +++ b/bin/Debug/Definitions/Generated/37805-RNA-A740_Honda_Civic_2009_2010_2011.txt @@ -0,0 +1,91 @@ +####################################################################### +# Honda_Civic_2009_2010_2011_DX, EX, LX, LX-S_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-A740 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD642 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x13AFC +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC6B4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xFF04 +ROMLocationY:0xFD68 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xFF14 +ROMLocationY:0xFD68 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x100D0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x100E8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-A830_Honda_Civic_2009_2010_2011.txt b/bin/Debug/Definitions/Generated/37805-RNA-A830_Honda_Civic_2009_2010_2011.txt new file mode 100644 index 0000000..9dbf784 --- /dev/null +++ b/bin/Debug/Definitions/Generated/37805-RNA-A830_Honda_Civic_2009_2010_2011.txt @@ -0,0 +1,990 @@ +####################################################################### +# Honda_Civic_2009_2010_2011_EX-L_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-A830 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0AA07 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA0F +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x28E19 +Name:System control register 1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AC66 +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A570 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A580 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A582 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1282E +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1283E +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5D0 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BF6A +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BF6C +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA0B +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA0C +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B044 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9F7 +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C5CA +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5EC +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5EE +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C5F0 +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C67A +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C678 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA16 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A42C +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D708 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A423 +Name:Speed sensor adjustment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3428C +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FF +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA05 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20B8 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20B4 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6AFEA +Name:Driving recorder enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B594 +Name:Intake runner low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B592 +Name:Intake runner high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10772 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12850 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1284C +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA2200 +Name:Pit lane speed limit enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2202 +Name:Pit lane speed limit speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA1C +Name:Secondary intake runner enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FD +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9E1 +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9D0 +Name:Secondary intake runner low rpm error enabled (P1077) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47547 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B4DC +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B4E0 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9CF +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C074 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BB +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9E4 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FE +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10776 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CFA4 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CFA6 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA22BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BF +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A52C +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A52E +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9FB +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA04 +Name:Engine oil pressure sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9D6 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE60 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE62 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xB0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10440 +Name:AFM flow +TableSize:64x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB06B8 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB09D8 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13A50 +Name:Injector opening time +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x126F2 +Name:Overrun fuel cut delay +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13154 +Name:Air temperature fuel compensation low flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1315E +Name:Air temperature fuel compensation medium flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13168 +Name:Air temperature fuel compensation high flow +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13172 +Name:Air temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13142 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x1322C +Name:Water temperature fuel compensation low +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1325E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1323C +Name:Water temperature fuel compensation high +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1326E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1324C +Name:Water temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1327E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14B58 +Name:Individual cylinder ignition trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13220 +Name:Individual cylinder fuel trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15166 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1515C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x151A2 +Name:Water temperature ignition compensation hot low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15198 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1518E +Name:Water temperature ignition compensation hot high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15184 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151CA +Name:Water temperature ignition compensation cold low +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x151C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151B6 +Name:Water temperature ignition compensation cold high +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x151AC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13A14 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1103C +Name:Target throttle plate +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10098 +Name:TPS WOT determination low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10080 +Name:TPS WOT determination high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x102B0 +Name:MAP WOT determination pressure +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12D84 +Name:Purge fuel +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB1FD8 +Name:AFM fuel +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0FECC +Name:Idle speed (normal) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FEEC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0FEDC +Name:Idle speed (after start) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FEFC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12908 +Name:LAF voltage to lambda +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB0CF8 +ROMLocationX:0xB1338 +ROMLocationY:0xB1978 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB1018 +ROMLocationX:0xB1658 +ROMLocationY:0xB1C98 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0F3DE +Name:Ignition dwell angle +TableSize:12x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0F404 +Name:Ignition dwell angle voltage compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13948 +Name:Injector phase (high load) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13952 +Name:Injector phase (WOT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1460E +Name:Ignition retard gear compensation +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14660 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1148E +Name:High speed throttle reduction +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11486 +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x126D8 +Name:Overrun cutoff MAP low cam hys low +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126D0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126C8 +Name:Overrun cutoff MAP high cam hys low +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126C0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126B8 +Name:Overrun cutoff MAP low cam hys high +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126B0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x126A8 +Name:Overrun cutoff MAP high cam hys high +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x126A0 +Unit1:rpm +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1464E +Name:Ignition retard rpm compensation +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14644 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x14606 +Name:Ignition retard throttle compensation +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14658 +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x128D8 +Name:Tip in fuel ECT compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x128E4 +Name:Tip in fuel throttle compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x128DE +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x0FFC8 +Name:AFM PLS throttle +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x153E0 +Name:Knock sensitivity low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15570 +Name:Knock sensitivity high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13F24 +Name:Knock retard low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13E5C +Name:Knock retard high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15300 +Name:Knock gate start low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15350 +Name:Knock gate end low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x152D8 +Name:Knock gate start high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15328 +Name:Knock gate end high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x12AF4 +Name:Closed loop target lambda low load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12AE4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12B14 +Name:Closed loop target lambda high load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12B04 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x12B34 +Name:Closed loop target lambda limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12B24 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x151E6 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xB2028 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xB2348 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNA-A840_Honda_Civic_2009_2010_2011.txt b/bin/Debug/Definitions/Generated/37805-RNA-A840_Honda_Civic_2009_2010_2011.txt new file mode 100644 index 0000000..934f79a --- /dev/null +++ b/bin/Debug/Definitions/Generated/37805-RNA-A840_Honda_Civic_2009_2010_2011.txt @@ -0,0 +1,91 @@ +####################################################################### +# Honda_Civic_2009_2010_2011_EX-L_1.8L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNA-A840 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD642 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x13AFC +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC6B4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xFF04 +ROMLocationY:0xFD68 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xFF14 +ROMLocationY:0xFD68 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x100D0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x100E8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RNE-A550_Honda_Civic_2006_2007_2008_2009_2010_2011.txt b/bin/Debug/Definitions/Generated/37805-RNE-A550_Honda_Civic_2006_2007_2008_2009_2010_2011.txt new file mode 100644 index 0000000..4a5bd99 --- /dev/null +++ b/bin/Debug/Definitions/Generated/37805-RNE-A550_Honda_Civic_2006_2007_2008_2009_2010_2011.txt @@ -0,0 +1,84 @@ +####################################################################### +# Honda_Civic_2006_2007_2008_2009_2010_2011_GX_1.8L L4 - CNG +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RNE-A550 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x125BE +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xC3F0 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xF604 +ROMLocationY:0xF404 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF614 +ROMLocationY:0xF404 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF7D0 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0xF7E8 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP3-3050.txt b/bin/Debug/Definitions/Generated/37805-RP3-3050_Honda_Fit_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP3-3050.txt rename to bin/Debug/Definitions/Generated/37805-RP3-3050_Honda_Fit_2009.txt index bb595f5..94345b7 100644 --- a/bin/Debug/Definitions/Generated/37805-RP3-3050.txt +++ b/bin/Debug/Definitions/Generated/37805-RP3-3050_Honda_Fit_2009.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP3-3050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB4F6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15EF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBC00 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11B22 -ROMLocationY:0x14C60 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11B32 -ROMLocationY:0x14C60 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1261C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12634 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2009_Base, Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP3-3050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB4F6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15EF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBC00 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11B22 +ROMLocationY:0x14C60 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11B32 +ROMLocationY:0x14C60 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1261C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12634 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP3-3070.txt b/bin/Debug/Definitions/Generated/37805-RP3-3070_Honda_Fit_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP3-3070.txt rename to bin/Debug/Definitions/Generated/37805-RP3-3070_Honda_Fit_2009.txt index 34f4cdf..7f0c1b1 100644 --- a/bin/Debug/Definitions/Generated/37805-RP3-3070.txt +++ b/bin/Debug/Definitions/Generated/37805-RP3-3070_Honda_Fit_2009.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP3-3070 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB4F6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15EF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBC00 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11B22 -ROMLocationY:0x14C60 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11B32 -ROMLocationY:0x14C60 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1261C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12634 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2009_Base_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP3-3070 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB4F6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15EF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBC00 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11B22 +ROMLocationY:0x14C60 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11B32 +ROMLocationY:0x14C60 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1261C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12634 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP3-4050.txt b/bin/Debug/Definitions/Generated/37805-RP3-4050_Honda_Fit_2009_2010.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP3-4050.txt rename to bin/Debug/Definitions/Generated/37805-RP3-4050_Honda_Fit_2009_2010.txt index d639c2c..c43ce34 100644 --- a/bin/Debug/Definitions/Generated/37805-RP3-4050.txt +++ b/bin/Debug/Definitions/Generated/37805-RP3-4050_Honda_Fit_2009_2010.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP3-4050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB4F6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x15EF6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBC00 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x11B22 -ROMLocationY:0x14C60 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x11B32 -ROMLocationY:0x14C60 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1261C -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x12634 -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2009_2010_Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP3-4050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB4F6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x15EF6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBC00 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x11B22 +ROMLocationY:0x14C60 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x11B32 +ROMLocationY:0x14C60 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1261C +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x12634 +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP3-A170.txt b/bin/Debug/Definitions/Generated/37805-RP3-A170_Honda_Fit_2012_2013.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP3-A170.txt rename to bin/Debug/Definitions/Generated/37805-RP3-A170_Honda_Fit_2012_2013.txt index 22cf8fa..bc02d91 100644 --- a/bin/Debug/Definitions/Generated/37805-RP3-A170.txt +++ b/bin/Debug/Definitions/Generated/37805-RP3-A170_Honda_Fit_2012_2013.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP3-A170 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB4F2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16D1A -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBBF8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1290A -ROMLocationY:0x15A74 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1291A -ROMLocationY:0x15A74 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x133A4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x133BC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2012_2013_Base, Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP3-A170 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB4F2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16D1A +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBBF8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1290A +ROMLocationY:0x15A74 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1291A +ROMLocationY:0x15A74 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x133A4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x133BC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP3-A770.txt b/bin/Debug/Definitions/Generated/37805-RP3-A770_Honda_Fit_2012_2013.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP3-A770.txt rename to bin/Debug/Definitions/Generated/37805-RP3-A770_Honda_Fit_2012_2013.txt index 82fb0d2..4b6495d 100644 --- a/bin/Debug/Definitions/Generated/37805-RP3-A770.txt +++ b/bin/Debug/Definitions/Generated/37805-RP3-A770_Honda_Fit_2012_2013.txt @@ -1,91 +1,91 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP3-A770 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB4F2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x16D1A -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBBF8 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1290A -ROMLocationY:0x15A74 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x1291A -ROMLocationY:0x15A74 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x133A4 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0x133BC -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_Fit_2012_2013_Sport_1.5L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP3-A770 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB4F2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x16D1A +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBBF8 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1290A +ROMLocationY:0x15A74 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x1291A +ROMLocationY:0x15A74 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x133A4 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0x133BC +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP6-A560.txt b/bin/Debug/Definitions/Generated/37805-RP6-A560_Acura_ZDX_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP6-A560.txt rename to bin/Debug/Definitions/Generated/37805-RP6-A560_Acura_ZDX_2010_2011.txt index 44a3c4e..d6f4380 100644 --- a/bin/Debug/Definitions/Generated/37805-RP6-A560.txt +++ b/bin/Debug/Definitions/Generated/37805-RP6-A560_Acura_ZDX_2010_2011.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP6-A560 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD846 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103F0 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F8 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10400 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10408 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10414 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10424 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1042C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F66 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F50 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103E2 -ROMLocationY:0xB630 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103F2 -ROMLocationY:0xB630 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_ZDX_2010_2011_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP6-A560 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD846 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103F0 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F8 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10400 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10408 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10414 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10424 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1042C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F66 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F50 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103E2 +ROMLocationY:0xB630 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103F2 +ROMLocationY:0xB630 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP6-A640.txt b/bin/Debug/Definitions/Generated/37805-RP6-A640_Acura_ZDX_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP6-A640.txt rename to bin/Debug/Definitions/Generated/37805-RP6-A640_Acura_ZDX_2012.txt index 72f62ae..5ac4519 100644 --- a/bin/Debug/Definitions/Generated/37805-RP6-A640.txt +++ b/bin/Debug/Definitions/Generated/37805-RP6-A640_Acura_ZDX_2012.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP6-A640 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD846 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103F0 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F8 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10400 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10408 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10414 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10424 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1042C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F66 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F50 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103E2 -ROMLocationY:0xB630 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103F2 -ROMLocationY:0xB630 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_ZDX_2012_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP6-A640 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD846 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103F0 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F8 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10400 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10408 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10414 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10424 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1042C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F66 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F50 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103E2 +ROMLocationY:0xB630 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103F2 +ROMLocationY:0xB630 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP6-A760.txt b/bin/Debug/Definitions/Generated/37805-RP6-A760_Acura_ZDX_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP6-A760.txt rename to bin/Debug/Definitions/Generated/37805-RP6-A760_Acura_ZDX_2010_2011.txt index ca6d164..15b21da 100644 --- a/bin/Debug/Definitions/Generated/37805-RP6-A760.txt +++ b/bin/Debug/Definitions/Generated/37805-RP6-A760_Acura_ZDX_2010_2011.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP6-A760 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD846 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103F0 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F8 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10400 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10408 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10414 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10424 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1042C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F66 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F50 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103E2 -ROMLocationY:0xB630 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103F2 -ROMLocationY:0xB630 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_ZDX_2010_2011_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP6-A760 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD846 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103F0 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F8 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10400 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10408 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10414 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10424 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1042C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F66 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F50 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103E2 +ROMLocationY:0xB630 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103F2 +ROMLocationY:0xB630 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RP6-A840.txt b/bin/Debug/Definitions/Generated/37805-RP6-A840_Acura_ZDX_2012.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RP6-A840.txt rename to bin/Debug/Definitions/Generated/37805-RP6-A840_Acura_ZDX_2012.txt index 497d1a0..30e65d6 100644 --- a/bin/Debug/Definitions/Generated/37805-RP6-A840.txt +++ b/bin/Debug/Definitions/Generated/37805-RP6-A840_Acura_ZDX_2012.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RP6-A840 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD846 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103F0 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F8 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10400 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10408 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10414 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10424 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1042C -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F66 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F50 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103E2 -ROMLocationY:0xB630 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103F2 -ROMLocationY:0xB630 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_ZDX_2012_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RP6-A840 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD846 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103F0 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F8 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10400 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10408 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10414 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10424 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1042C +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F66 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F50 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103E2 +ROMLocationY:0xB630 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103F2 +ROMLocationY:0xB630 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RRB-A140.txt b/bin/Debug/Definitions/Generated/37805-RRB-A140_Honda_Civic_2007_2008_2009_2010_2011.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RRB-A140.txt rename to bin/Debug/Definitions/Generated/37805-RRB-A140_Honda_Civic_2007_2008_2009_2010_2011.txt index e422d54..eb21368 100644 --- a/bin/Debug/Definitions/Generated/37805-RRB-A140.txt +++ b/bin/Debug/Definitions/Generated/37805-RRB-A140_Honda_Civic_2007_2008_2009_2010_2011.txt @@ -1,2510 +1,2510 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RRB-A140 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A9C4 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9B1 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9B2 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9B3 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9B7 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9BA -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9BB -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9BC -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1C044 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x60946 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AFD8 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B08C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5C2 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x10D04 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0D218 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BA48 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BA4A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9A8 -Name:Cruise control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A564 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A574 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1168A -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1169A -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x116B4 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x116BC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A9AF -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C272 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C270 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AE46 -Name:Idle speed minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x28FDD -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x34770 -Name:Speed adjustment (dash) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A428 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A41F -Name:Speedometer divisor (US -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x69AD6 -Name:Driving recorder enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0CA70 -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A444 -Name:THTOHANH -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A446 -Name:THTOHANL -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A448 -Name:VPTOHANCH -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A44A -Name:VPTOHANCL -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A44C -Name:TMTOHAND -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A968 -Name:RSSWENGOILLIFE -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A969 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A96B -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A96C -Name:RSSWGO14B -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A96D -Name:RSSWGO45 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A96E -Name:RSSWGO48S -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A96F -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A970 -Name:RSSWGO61AC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A971 -Name:RSSWGO61E -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A972 -Name:RSSWGO63BL -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A973 -Name:RSSWGO63BR -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A974 -Name:RSSWGO63D -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A975 -Name:RSSWGO67 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A976 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A977 -Name:UNKNOWN_A977 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97A -Name:UNKNOWN_A97A -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97B -Name:UNKNOWN_A97B -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97C -Name:UNKNOWN_A97C -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97D -Name:UNKNOWN_A97D -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97E -Name:UNKNOWN_A97E -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A97F -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A983 -Name:UNKNOWN_A983 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A986 -Name:RSSWGOF322 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A98F -Name:RSSWGO00AB -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A990 -Name:RSSWGO13C -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A994 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A995 -Name:RSSWGOF121 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A9A4 -Name:RSFIECUID5 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A9A6 -Name:OBD MODE $01 PID $1C value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A9BF -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9C6 -Name:OBD region (0 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A9CA -Name:Readiness codes enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CCDA -Name:TMFS41GA -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDAC -Name:UNKNOWN_CDAC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDAE -Name:UNKNOWN_CDAE -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDB0 -Name:UNKNOWN_CDB0 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDB2 -Name:UNKNOWN_CDB2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDB4 -Name:UNKNOWN_CDB4 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CDB6 -Name:UNKNOWN_CDB6 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CE74 -Name:SWMFPTN -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0D4D4 -Name:KQPGB -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E0F4 -Name:FRZENLVL -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E164 -Name:OBDII mode 6 support -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E165 -Name:OBDII mode 9 support -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E166 -Name:IPT_FLAG -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x7B0C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0D4 -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0D2 -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0D0 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0D8 -Name:Boost control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E13A -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E13C -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E13E -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1880E -Name:UNKNOWN_1880E -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18812 -Name:UNKNOWN_18812 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D020 -Name:MFTDCB -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A9AE -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104EE -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9B5 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104F2 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BB5E -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BB60 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0BC -Name:Use speed/density (MAP) fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9AB -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A576 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x327B2 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x327CC -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0ABCC -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B4FE -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B500 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47443 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5BE -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5B8 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5BA -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BC68 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B734 -Name:High speed throttle reduction smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B0EA -Name:Boost control activation pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0D9 -Name:Boost control type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0E8 -Name:Boost control frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0EC -Name:Boost control fixed duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0DA -Name:Boost control solenoid is normally open -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B66C -Name:1st gear throttle dampening enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C1D2 -Name:Injector phase (idle) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C1F4 -Name:Injector phase (after start) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C1F6 -Name:Injector phase (warm up) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C1FA -Name:Injector phase (cruise) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x52B90 -Name:Ignition IAT retard applied to ignition knock limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B26C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B26E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2BA -Name:Boost control max duty -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0CD14 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CD16 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2BC -Name:Flash check engine for knock enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2BD -Name:Flash alternator light when TC active -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D53A -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x60520 -Name:Zero VTC upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x6092A -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B5B6 -Name:VTEC gearshift delay -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104C6 -Name:1st gear speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104CA -Name:1st gear rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104CE -Name:2nd gear speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104D2 -Name:2nd gear rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104D6 -Name:3rd gear speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104DA -Name:3rd gear rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104DE -Name:4th gear speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104E2 -Name:4th gear rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104E6 -Name:5th gear speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x104EA -Name:5th gear rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BEA8 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BEB6 -Name:AF learned value 1 maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0BEB8 -Name:AF learned value 1 minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0BEBA -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BEBC -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CC0C -Name:Knock gate start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0CC0E -Name:Knock gate end -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x7B2BE -Name:Active knock retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2BF -Name:Active knock retard method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2C0 -Name:Active knock retard step -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2C1 -Name:Active knock retard min -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B2C2 -Name:Active knock retard max retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B0BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A9BD -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B954 -Name:Active fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B956 -Name:Active Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B957 -Name:Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B960 -Name:Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B962 -Name:Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B965 -Name:Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B966 -Name:Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B968 -Name:Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B964 -Name:Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B970 -Name:Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B971 -Name:Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B972 -Name:Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B974 -Name:Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B976 -Name:Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B978 -Name:Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97A -Name:Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97C -Name:Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B97E -Name:Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B980 -Name:Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B982 -Name:Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B984 -Name:Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B986 -Name:Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B988 -Name:Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B959 -Name:Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95A -Name:Maximum cam angle delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95C -Name:Maximum load delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B95E -Name:Maximum rpm delta -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96A -Name:Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96C -Name:Delay in lambda reading -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96D -Name:Active Fuel Smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BB58 -Name:Closed loop derivative term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BB5A -Name:Closed loop integral term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BB5C -Name:Closed loop proportion term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC4 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7635E -Name:Replace Mode 6 CVN -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B234 -Name:Mode 6 CVN -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A97C -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA18 -Name:Launch min rpm for ign retard and fuel enrichment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1A -Name:Launch rpm ign retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x116B2 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1C -Name:Launch rpm additional fuel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D57C -Name:VTC base duty cycle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA1E -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CCEA -Name:Long term fuel trim error limit high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CCEC -Name:Long term fuel trim error limit low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA28 -Name:Active AFM fuel tuning enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2A -Name:Active AFM Closed loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2B -Name:Active AFM Open loop -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2C -Name:Active AFM Use corrected wideband -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA2D -Name:Active AFN Use fuel trims -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA34 -Name:Active AFM Minimum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA36 -Name:Active AFM Maximum lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA39 -Name:Active AFM Maximum change -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA41 -Name:Active AFM Fuel Smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA3A -Name:Active AFM Update frequency -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA3C -Name:Active AFM Delay after injector re-start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA3E -Name:Active AFM Delay after engine start -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA40 -Name:Active AFM Delay in lambda reading -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA38 -Name:Active AFM Change per tuning cyle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA44 -Name:Active AFM Minimum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA45 -Name:Active AFM Maximum gear -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA46 -Name:Active AFM Minimum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA48 -Name:Active AFM Maximum load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA4A -Name:Active AFM Minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA4C -Name:Active AFM Maximum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA4E -Name:Active AFM Minimum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA50 -Name:Active AFM Maximum TPS -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA52 -Name:Active AFM Minimum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA54 -Name:Active AFM Maximum VTC -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA56 -Name:Active AFM Minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA58 -Name:Active AFM Maximum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA5A -Name:Active AFM Minimum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA5C -Name:Active AFM Maximum IAT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96E -Name:Lambda target (open loop) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7B96F -Name:Lambda target (closed loop) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA42 -Name:Active AFM Lambda target (open loop) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CA43 -Name:Active AFM Lambda target (closed loop) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A5EE -Name:FCAN malfunction (U0073 U0155) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x7CB10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x80078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x81018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x128B8 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10D0E -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x128F4 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11546 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11BF0 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x81FD8 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x87250 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15688 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x87570 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15692 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1467C -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x120C2 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x84000 -ROMLocationX:0x84190 -ROMLocationY:0x84320 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x844B0 -ROMLocationX:0x84640 -ROMLocationY:0x847D0 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x84960 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x85900 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x101D2 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10064 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x192DC -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x192D8 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FC6C -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0FC8C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0FC7C -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0FC9C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11774 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B0AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11FC6 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11FD0 -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11FDA -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11FE4 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12014 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x120CE -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12100 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x120DE -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12110 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x120EE -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x12120 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10DC0 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x159E6 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x159DC -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15A22 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A18 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15A0E -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A04 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15A4A -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A40 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15A36 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x15A2C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14172 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14168 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1412A -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1417C -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x14132 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14184 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x11744 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11750 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1174A -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x11142 -Name:High speed throttle reduction -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1113A -Unit1:Speed -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x86BE8 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x86F08 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x868A0 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x86A30 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11960 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11950 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11980 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11970 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x119A0 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11990 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15A66 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15688 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15692 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8205C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x83060 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0FE4C -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0FE34 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B10C -Name:Boost control duty to pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B0FC -Unit1:Duty -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B150 -Name:Boost control duty lookup -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B1EC -Name:Boost control air temperature compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B1D6 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x7B226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x113B8 -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x112C0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x114A0 -Name:Cranking (seq mode) wall deposit ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x114C0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x113A8 -Name:Cranking (batch mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x112B0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x114B0 -Name:Cranking (batch mode) wall deposit ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x114D0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x127F8 -Name:Injector phase (high load) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12802 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12816 -Name:Injector phase (VTC compensation) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0F142 -Name:Ignition dwell angle -TableSize:12x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0F168 -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11554 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1156C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1155E -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11576 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x114FC -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x114F4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1150C -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11504 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1151C -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11514 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1152C -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1453C -Name:Cranking base ignition -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1452E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x116C0 -Name:TMNHDL -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x7B28C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B2AE -Name:Boost control quick spool -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7B2A8 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x0DAB8 -Name:CC Gear Ratios -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B2D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x7B47C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15BE4 -Name:Knock gate start low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15B94 -Name:Knock gate end low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15BBC -Name:Knock gate start high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x15B6C -Name:Knock gate end high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x7B620 -Name:Target lambda low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7B7C4 -Name:Target lambda high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7BA14 -Name:Active fuel tuning low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7C248 -Name:Active fuel tuning high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1102C -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11888 -Name:Closed loop rich > lean reversal delay -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x118B0 -Name:Closed loop lean > rich reversal delay -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x118D8 -Name:Closed loop lean > rich delay -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x11900 -Name:Closed loop rich > lean delay -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0ECFC -Name:Maximum plate deviation (P2101) -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191FC -Name:VTC P -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191F6 -Name:VTC I -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x191F0 -Name:VTC D -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10D5C -Name:Throttle index calculation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x11924 -Name:After start fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11914 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x7CB24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x7CB34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x7CB40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7CB58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7CB78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x7CEA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_Civic_2007_2008_2009_2010_2011_Si_2.0L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RRB-A140 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A9C4 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9B1 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9B2 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9B3 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9B7 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BA +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9BB +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BC +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1C044 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x60946 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AFD8 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B08C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5C2 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x10D04 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0D218 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BA48 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BA4A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9A8 +Name:Cruise control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A564 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A574 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1168A +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1169A +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x116B4 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x116BC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A9AF +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C272 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C270 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AE46 +Name:Idle speed minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x28FDD +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x34770 +Name:Speed adjustment (dash) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A428 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A41F +Name:Speedometer divisor (US +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x69AD6 +Name:Driving recorder enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0CA70 +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A444 +Name:THTOHANH +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A446 +Name:THTOHANL +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A448 +Name:VPTOHANCH +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A44A +Name:VPTOHANCL +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A44C +Name:TMTOHAND +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A968 +Name:RSSWENGOILLIFE +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A969 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A96B +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A96C +Name:RSSWGO14B +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A96D +Name:RSSWGO45 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A96E +Name:RSSWGO48S +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A96F +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A970 +Name:RSSWGO61AC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A971 +Name:RSSWGO61E +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A972 +Name:RSSWGO63BL +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A973 +Name:RSSWGO63BR +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A974 +Name:RSSWGO63D +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A975 +Name:RSSWGO67 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A976 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A977 +Name:UNKNOWN_A977 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97A +Name:UNKNOWN_A97A +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97B +Name:UNKNOWN_A97B +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97C +Name:UNKNOWN_A97C +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97D +Name:UNKNOWN_A97D +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97E +Name:UNKNOWN_A97E +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A97F +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A983 +Name:UNKNOWN_A983 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A986 +Name:RSSWGOF322 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A98F +Name:RSSWGO00AB +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A990 +Name:RSSWGO13C +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A994 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A995 +Name:RSSWGOF121 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A9A4 +Name:RSFIECUID5 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A9A6 +Name:OBD MODE $01 PID $1C value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A9BF +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9C6 +Name:OBD region (0 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A9CA +Name:Readiness codes enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CCDA +Name:TMFS41GA +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDAC +Name:UNKNOWN_CDAC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDAE +Name:UNKNOWN_CDAE +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDB0 +Name:UNKNOWN_CDB0 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDB2 +Name:UNKNOWN_CDB2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDB4 +Name:UNKNOWN_CDB4 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CDB6 +Name:UNKNOWN_CDB6 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CE74 +Name:SWMFPTN +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0D4D4 +Name:KQPGB +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E0F4 +Name:FRZENLVL +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E164 +Name:OBDII mode 6 support +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E165 +Name:OBDII mode 9 support +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E166 +Name:IPT_FLAG +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x7B0C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0D4 +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0D2 +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0D0 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0D8 +Name:Boost control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E13A +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E13C +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E13E +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1880E +Name:UNKNOWN_1880E +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18812 +Name:UNKNOWN_18812 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D020 +Name:MFTDCB +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A9AE +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104EE +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9B5 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104F2 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BB5E +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BB60 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0BC +Name:Use speed/density (MAP) fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9AB +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A576 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x327B2 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x327CC +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0ABCC +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B4FE +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B500 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47443 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5BE +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5B8 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5BA +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BC68 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B734 +Name:High speed throttle reduction smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B0EA +Name:Boost control activation pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0D9 +Name:Boost control type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0E8 +Name:Boost control frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0EC +Name:Boost control fixed duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0DA +Name:Boost control solenoid is normally open +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B66C +Name:1st gear throttle dampening enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C1D2 +Name:Injector phase (idle) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C1F4 +Name:Injector phase (after start) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C1F6 +Name:Injector phase (warm up) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C1FA +Name:Injector phase (cruise) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x52B90 +Name:Ignition IAT retard applied to ignition knock limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B26C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B26E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2BA +Name:Boost control max duty +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0CD14 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CD16 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2BC +Name:Flash check engine for knock enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2BD +Name:Flash alternator light when TC active +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D53A +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x60520 +Name:Zero VTC upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x6092A +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B5B6 +Name:VTEC gearshift delay +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104C6 +Name:1st gear speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104CA +Name:1st gear rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104CE +Name:2nd gear speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104D2 +Name:2nd gear rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104D6 +Name:3rd gear speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104DA +Name:3rd gear rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104DE +Name:4th gear speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104E2 +Name:4th gear rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104E6 +Name:5th gear speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x104EA +Name:5th gear rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BEA8 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BEB6 +Name:AF learned value 1 maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0BEB8 +Name:AF learned value 1 minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0BEBA +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BEBC +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CC0C +Name:Knock gate start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0CC0E +Name:Knock gate end +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x7B2BE +Name:Active knock retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2BF +Name:Active knock retard method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2C0 +Name:Active knock retard step +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2C1 +Name:Active knock retard min +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B2C2 +Name:Active knock retard max retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B0BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A9BD +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B954 +Name:Active fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B956 +Name:Active Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B957 +Name:Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B960 +Name:Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B962 +Name:Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B965 +Name:Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B966 +Name:Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B968 +Name:Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B964 +Name:Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B970 +Name:Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B971 +Name:Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B972 +Name:Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B974 +Name:Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B976 +Name:Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B978 +Name:Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97A +Name:Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97C +Name:Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B97E +Name:Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B980 +Name:Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B982 +Name:Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B984 +Name:Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B986 +Name:Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B988 +Name:Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B959 +Name:Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95A +Name:Maximum cam angle delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95C +Name:Maximum load delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B95E +Name:Maximum rpm delta +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96A +Name:Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96C +Name:Delay in lambda reading +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96D +Name:Active Fuel Smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BB58 +Name:Closed loop derivative term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BB5A +Name:Closed loop integral term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BB5C +Name:Closed loop proportion term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC4 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7635E +Name:Replace Mode 6 CVN +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B234 +Name:Mode 6 CVN +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A97C +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA18 +Name:Launch min rpm for ign retard and fuel enrichment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1A +Name:Launch rpm ign retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x116B2 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1C +Name:Launch rpm additional fuel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D57C +Name:VTC base duty cycle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA1E +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CCEA +Name:Long term fuel trim error limit high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CCEC +Name:Long term fuel trim error limit low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA28 +Name:Active AFM fuel tuning enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2A +Name:Active AFM Closed loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2B +Name:Active AFM Open loop +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2C +Name:Active AFM Use corrected wideband +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA2D +Name:Active AFN Use fuel trims +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA34 +Name:Active AFM Minimum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA36 +Name:Active AFM Maximum lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA39 +Name:Active AFM Maximum change +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA41 +Name:Active AFM Fuel Smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA3A +Name:Active AFM Update frequency +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA3C +Name:Active AFM Delay after injector re-start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA3E +Name:Active AFM Delay after engine start +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA40 +Name:Active AFM Delay in lambda reading +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA38 +Name:Active AFM Change per tuning cyle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA44 +Name:Active AFM Minimum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA45 +Name:Active AFM Maximum gear +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA46 +Name:Active AFM Minimum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA48 +Name:Active AFM Maximum load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA4A +Name:Active AFM Minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA4C +Name:Active AFM Maximum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA4E +Name:Active AFM Minimum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA50 +Name:Active AFM Maximum TPS +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA52 +Name:Active AFM Minimum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA54 +Name:Active AFM Maximum VTC +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA56 +Name:Active AFM Minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA58 +Name:Active AFM Maximum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA5A +Name:Active AFM Minimum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA5C +Name:Active AFM Maximum IAT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96E +Name:Lambda target (open loop) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7B96F +Name:Lambda target (closed loop) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA42 +Name:Active AFM Lambda target (open loop) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CA43 +Name:Active AFM Lambda target (closed loop) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A5EE +Name:FCAN malfunction (U0073 U0155) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x7CB10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x80078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x81018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x128B8 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10D0E +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x128F4 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11546 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11BF0 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x81FD8 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x87250 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15688 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x87570 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15692 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1467C +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x120C2 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x84000 +ROMLocationX:0x84190 +ROMLocationY:0x84320 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x844B0 +ROMLocationX:0x84640 +ROMLocationY:0x847D0 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x84960 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x85900 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x101D2 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10064 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x192DC +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x192D8 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FC6C +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FC8C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0FC7C +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0FC9C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11774 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B0AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11FC6 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11FD0 +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11FDA +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11FE4 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12014 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x120CE +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12100 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x120DE +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12110 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x120EE +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x12120 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10DC0 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x159E6 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x159DC +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15A22 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A18 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15A0E +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A04 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15A4A +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A40 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15A36 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x15A2C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14172 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14168 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1412A +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1417C +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x14132 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14184 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x11744 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11750 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1174A +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x11142 +Name:High speed throttle reduction +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1113A +Unit1:Speed +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x86BE8 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x86F08 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x868A0 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x86A30 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11960 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11950 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11980 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11970 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x119A0 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11990 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15A66 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15688 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15692 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8205C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x83060 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0FE4C +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0FE34 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B10C +Name:Boost control duty to pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B0FC +Unit1:Duty +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B150 +Name:Boost control duty lookup +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B1EC +Name:Boost control air temperature compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B1D6 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x7B226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x113B8 +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x112C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x114A0 +Name:Cranking (seq mode) wall deposit ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x114C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x113A8 +Name:Cranking (batch mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x112B0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x114B0 +Name:Cranking (batch mode) wall deposit ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x114D0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x127F8 +Name:Injector phase (high load) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12802 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12816 +Name:Injector phase (VTC compensation) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0F142 +Name:Ignition dwell angle +TableSize:12x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0F168 +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11554 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1156C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1155E +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11576 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x114FC +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x114F4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1150C +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11504 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1151C +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11514 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1152C +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1453C +Name:Cranking base ignition +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1452E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x116C0 +Name:TMNHDL +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x7B28C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B2AE +Name:Boost control quick spool +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7B2A8 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x0DAB8 +Name:CC Gear Ratios +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B2D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x7B47C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15BE4 +Name:Knock gate start low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15B94 +Name:Knock gate end low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15BBC +Name:Knock gate start high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x15B6C +Name:Knock gate end high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x7B620 +Name:Target lambda low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7B7C4 +Name:Target lambda high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7BA14 +Name:Active fuel tuning low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7C248 +Name:Active fuel tuning high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1102C +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11888 +Name:Closed loop rich > lean reversal delay +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x118B0 +Name:Closed loop lean > rich reversal delay +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x118D8 +Name:Closed loop lean > rich delay +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x11900 +Name:Closed loop rich > lean delay +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0ECFC +Name:Maximum plate deviation (P2101) +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191FC +Name:VTC P +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191F6 +Name:VTC I +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x191F0 +Name:VTC D +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10D5C +Name:Throttle index calculation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x11924 +Name:After start fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11914 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x7CB24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x7CB34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x7CB40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7CB58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7CB78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x7CEA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RRD20.txt b/bin/Debug/Definitions/Generated/37805-RRD-M120.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RRD20.txt rename to bin/Debug/Definitions/Generated/37805-RRD-M120.txt index 0a97d39..51adf84 100644 --- a/bin/Debug/Definitions/Generated/37805-RRD20.txt +++ b/bin/Debug/Definitions/Generated/37805-RRD-M120.txt @@ -1,140 +1,140 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RRD20 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB5C2 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x11680 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11688 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11690 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11698 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x116A0 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x116A4 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x116B4 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x116BC -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBA4A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x128F4 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xAE82 -Name:MAF Load Limit -Unit1:Mg/Stroke -TableSize:4x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xC274 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xFC6C -ROMLocationY:0xFA70 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xFC7C -ROMLocationY:0xFA70 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +####################################################################### +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RRD-M120 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB5C2 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x11680 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11688 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11690 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11698 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x116A0 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x116A4 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x116B4 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x116BC +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBA4A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x128F4 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xAE82 +Name:MAF Load Limit +Unit1:Mg/Stroke +TableSize:4x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xC274 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xFC6C +ROMLocationY:0xFA70 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xFC7C +ROMLocationY:0xFA70 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RTW-3050.txt b/bin/Debug/Definitions/Generated/37805-RTW-3050_Honda_CR-Z_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RTW-3050.txt rename to bin/Debug/Definitions/Generated/37805-RTW-3050_Honda_CR-Z_2011.txt index 77bf84e..e32b98f 100644 --- a/bin/Debug/Definitions/Generated/37805-RTW-3050.txt +++ b/bin/Debug/Definitions/Generated/37805-RTW-3050_Honda_CR-Z_2011.txt @@ -1,80 +1,80 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RTW-3050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x123C4 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x123AC -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xC44C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xC45C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0xD236 -Name:WOT Determiniation 1(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# -ROMLocationTable:0xD24E -Name:WOT Determiniation 2(TPS) -Unit1:RPM -Unit2:TPS(%) -TableSize:6x1 -ValueMin:-50 -ValueMax:200 -MathTable:X*0.005 -FormatTable:0.00 -ChangeAmount:1 -Headers:1000,2000,3000,4000,5000,6000 -############################# +####################################################################### +# Honda_CR-Z_2011_Base, EX_1.5L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RTW-3050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x123C4 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x123AC +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xC44C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xC45C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0xD236 +Name:WOT Determiniation 1(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# +ROMLocationTable:0xD24E +Name:WOT Determiniation 2(TPS) +Unit1:RPM +Unit2:TPS(%) +TableSize:6x1 +ValueMin:-50 +ValueMax:200 +MathTable:X*0.005 +FormatTable:0.00 +ChangeAmount:1 +Headers:1000,2000,3000,4000,5000,6000 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RTW-A050.txt b/bin/Debug/Definitions/Generated/37805-RTW-A050_Honda_CR-Z_2011.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RTW-A050.txt rename to bin/Debug/Definitions/Generated/37805-RTW-A050_Honda_CR-Z_2011.txt index 7516006..fbf8c56 100644 --- a/bin/Debug/Definitions/Generated/37805-RTW-A050.txt +++ b/bin/Debug/Definitions/Generated/37805-RTW-A050_Honda_CR-Z_2011.txt @@ -1,2235 +1,2235 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RTW-A050 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A664 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A688 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A68A -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10C04 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10C0C -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10C02 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10C0A -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x15B1C -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0E320 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x0E328 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B3BA -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x41C44 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xC2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x123BA -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x123B8 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D9A2 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D220 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1111C -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xA0A1C -Name:Driving recorder enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D9A6 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B356 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10EAC -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10EF8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3A5 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x41B71 -Name:MAP scalar low byte -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x41B6B -Name:MAP scalar high byte -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A5F2 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A5F0 -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B393 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B35B -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B365 -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x15B26 -Name:AFM malfunction threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3A6 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0B3A9 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B395 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B39E -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x151A2 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x151A4 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3A1 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10C54 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10C56 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B383 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B36B -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B369 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B372 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B362 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802129BC -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129BE -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802129C0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021367C -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021367E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802142D4 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F85 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275F88 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275F8D -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275F90 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027618A -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027618B -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802760FA -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FDB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80276117 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF1 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FFA -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213C20 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276008 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212FCC -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027781A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277488 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277492 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277850 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277852 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277870 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277872 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802139E8 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128C6 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B6 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B2 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732AA -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x802125CC -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D2 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125CE -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D0 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4B660 -Name:Throttle/brake max speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3DA8A -Name:RSSWGO67 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3DAAC -Name:Evaporative Emission Canister Purge Valve Circuit (P0443) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3DA94 -Name:Evaporative Emission System Purge Flow Malfunction (P145C) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3DAAA -Name:Coil test enabled (P351 P352 P353 P354) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xF72AC -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x162094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0xD00B8 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD03D8 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0D698 -Name:AFM flow -TableSize:64x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x123A2 -Name:Injector opening time -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1058 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1378 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD06F8 -ROMLocationX:0xD0888 -ROMLocationY:0xD0A18 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD0BA8 -ROMLocationX:0xD0D38 -ROMLocationY:0xD0EC8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x113D6 -Name:Purge fuel -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xD0098 -Name:AFM fuel -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD19E0 -ROMLocationX:0xD1D00 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD2020 -ROMLocationX:0xD2340 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1698 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1828 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E332 -Name:VTEC window pressure -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1B95E -Name:IMA torque request high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x1BAEE -Name:IMA torque request low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x12350 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E5EC -Name:TPlate Normal -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E7AE -Name:TPlate Economy -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E970 -Name:TPlate Sport -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x109A0 -Name:Overrun fuel cut delay -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0D506 -Name:MAP WOT determination pressure -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10C2E -Name:Ignition retard gear compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10C3F -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x0C32C -Name:Idle speed (normal) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0C36C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0C34C -Name:Idle speed (after start) -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0C38C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10DA0 -Name:LAF voltage to lambda -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0B202 -Name:Ignition dwell angle -TableSize:12x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B1F6 -Name:Ignition dwell angle voltage compensation -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10D4C -Name:Tip in fuel ECT compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10D66 -Name:Tip in fuel throttle compensation -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10D60 -Unit1:Throttle -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11AB4 -Name:Water temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11AE6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11A94 -Name:Water temperature fuel compensation low -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11AC6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11AA4 -Name:Water temperature fuel compensation high -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11AD6 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11946 -Name:Air temperature fuel compensation cranking -TableSize:9x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11934 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x13D76 -Name:Individual cylinder ignition trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11A52 -Name:Individual cylinder fuel trim -TableSize:4x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0D22E -Name:TPS WOT determination low -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D222 -Name:TPS WOT determination high -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11068 -Name:Closed loop target lambda low load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11058 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x11094 -Name:Closed loop target lambda high load -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11084 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x110C0 -Name:Closed loop target lambda limit -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x110B0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x144F0 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xD2688 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD29A8 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xC2258 -Name:Air temperature fuel compensation -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xC2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x1061E -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1054E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1063E -Name:Cranking (seq mode) wall deposit ratio -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1056E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1060E -Name:Cranking (batch mode) fuel direct ratio -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1053E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1062E -Name:Cranking (batch mode) wall deposit ratio -TableSize:8x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1055E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C74 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C7C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C84 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C5C -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C8C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C54 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80215B3A -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215AFE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214CBC -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B1C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214CC6 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B30 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AB8 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B12 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AC2 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B26 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AEA -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B08 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802431D0 -ROMLocationX:0x80243450 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D402 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D42A -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802165FA -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802185EC -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FAE2 -ROMLocationX:0x8021FA7E -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80218740 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80263110 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FA1A -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021502C -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x8023A5D8 -ROMLocationX:0x8023A2B8 -ROMLocationY:0x80239F98 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80274968 -ROMLocationX:0x80274328 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80241DD0 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C872 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80225EA8 -ROMLocationX:0x80225D18 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236438 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021527A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215270 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021703E -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021705E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8002B3BC -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80237248 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237568 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D8DA -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD8A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD62 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021D88A -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266950 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D9F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026A7D0 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021DEF2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802774EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802774DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x8027754C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8027755C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80277568 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277580 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802775C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277828 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277844 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802774A0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277860 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027788C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8002CB2C -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B614 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C692 -Unit1:Speed -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B86C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BAC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BD1C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BF74 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C1CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C67C -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021D452 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D452 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022214E -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80222496 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233B98 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D28 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802215A2 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802691F0 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80273522 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80226678 -Name:Temperature based boost limit -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C912 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 11 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002CFDC -Name:Driving force 12 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D234 -Name:Driving force 13 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D48C -Name:Driving force 14 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D6E4 -Name:Driving force 15 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D93C -Name:Driving force 16 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DB94 -Name:Driving force 17 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DDEC -Name:Driving force 18 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E044 -Name:Driving force 19 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E29C -Name:Driving force 20 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E4F4 -Name:Driving force 21 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E74C -Name:Driving force 22 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E9A4 -Name:Driving force 23 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 24 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EE54 -Name:Driving force 25 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F0AC -Name:Driving force 26 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F304 -Name:Driving force 27 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023BDB8 -Name:Driving force 28 new set -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C010 -Name:Driving force 29 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C268 -Name:Driving force 30 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C4C0 -Name:Driving force 31 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C718 -Name:Driving force 32 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C970 -Name:Driving force 33 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CBC8 -Name:Driving force 34 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CE20 -Name:Driving force 35 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D078 -Name:Driving force 36 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D2D0 -Name:Driving force 37 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D528 -Name:Driving force 38 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D780 -Name:Driving force 39 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D9D8 -Name:Driving force 40 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DC30 -Name:Driving force 41 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DE88 -Name:Driving force 42 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E0E0 -Name:Driving force 43 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E338 -Name:Driving force 44 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E590 -Name:Driving force 45 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E7E8 -Name:Driving force 46 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EA40 -Name:Driving force 47 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EC98 -Name:Driving force 48 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EEF0 -Name:Driving force 49 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F148 -Name:Driving force 50 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F3A0 -Name:Driving force 51 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F5F8 -Name:Driving force 52 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F850 -Name:Driving force 53 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FAA8 -Name:Driving force 54 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FD00 -Name:Driving force 55 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802152E8 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802152F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42A78 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42AC0 -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42D60 -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42DA8 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47AB8 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47AAE -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4981C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x49826 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4CAE8 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x494D2 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x494DC -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1371E8 -ROMLocationX:0x137508 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136BA8 -ROMLocationX:0x136EC8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0NF[Table40]0x42) -ROMLocationX:80 -ROMLocationY:0y -Name:0 -TableSize:0x0 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_CR-Z_2011_Base, EX_1.5L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RTW-A050 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A664 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A688 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A68A +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10C04 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10C0C +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10C02 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10C0A +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x15B1C +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0E320 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x0E328 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B3BA +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x41C44 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xC2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x123BA +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x123B8 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D9A2 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D220 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1111C +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xA0A1C +Name:Driving recorder enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D9A6 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B356 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10EAC +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10EF8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3A5 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x41B71 +Name:MAP scalar low byte +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x41B6B +Name:MAP scalar high byte +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A5F2 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A5F0 +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B393 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B35B +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B365 +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x15B26 +Name:AFM malfunction threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3A6 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0B3A9 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B395 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B39E +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x151A2 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x151A4 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3A1 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10C54 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10C56 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B383 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B36B +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B369 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B372 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B362 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802129BC +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129BE +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802129C0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021367C +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021367E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802142D4 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F85 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275F88 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275F8D +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275F90 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027618A +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027618B +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802760FA +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FDB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80276117 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF1 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FFA +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213C20 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276008 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212FCC +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027781A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277488 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277492 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277850 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277852 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277870 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277872 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802139E8 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128C6 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B6 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B2 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732AA +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x802125CC +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D2 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125CE +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D0 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4B660 +Name:Throttle/brake max speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3DA8A +Name:RSSWGO67 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3DAAC +Name:Evaporative Emission Canister Purge Valve Circuit (P0443) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3DA94 +Name:Evaporative Emission System Purge Flow Malfunction (P145C) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3DAAA +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xF72AC +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x162094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0xD00B8 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD03D8 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0D698 +Name:AFM flow +TableSize:64x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x123A2 +Name:Injector opening time +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1058 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1378 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD06F8 +ROMLocationX:0xD0888 +ROMLocationY:0xD0A18 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD0BA8 +ROMLocationX:0xD0D38 +ROMLocationY:0xD0EC8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x113D6 +Name:Purge fuel +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xD0098 +Name:AFM fuel +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD19E0 +ROMLocationX:0xD1D00 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD2020 +ROMLocationX:0xD2340 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1698 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1828 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E332 +Name:VTEC window pressure +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1B95E +Name:IMA torque request high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x1BAEE +Name:IMA torque request low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x12350 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E5EC +Name:TPlate Normal +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E7AE +Name:TPlate Economy +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E970 +Name:TPlate Sport +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x109A0 +Name:Overrun fuel cut delay +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0D506 +Name:MAP WOT determination pressure +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10C2E +Name:Ignition retard gear compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10C3F +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x0C32C +Name:Idle speed (normal) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0C36C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0C34C +Name:Idle speed (after start) +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0C38C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10DA0 +Name:LAF voltage to lambda +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0B202 +Name:Ignition dwell angle +TableSize:12x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B1F6 +Name:Ignition dwell angle voltage compensation +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10D4C +Name:Tip in fuel ECT compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10D66 +Name:Tip in fuel throttle compensation +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10D60 +Unit1:Throttle +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11AB4 +Name:Water temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11AE6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11A94 +Name:Water temperature fuel compensation low +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11AC6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11AA4 +Name:Water temperature fuel compensation high +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11AD6 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11946 +Name:Air temperature fuel compensation cranking +TableSize:9x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11934 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x13D76 +Name:Individual cylinder ignition trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11A52 +Name:Individual cylinder fuel trim +TableSize:4x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0D22E +Name:TPS WOT determination low +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D222 +Name:TPS WOT determination high +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11068 +Name:Closed loop target lambda low load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11058 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x11094 +Name:Closed loop target lambda high load +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11084 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x110C0 +Name:Closed loop target lambda limit +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x110B0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x144F0 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xD2688 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD29A8 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xC2258 +Name:Air temperature fuel compensation +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xC2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x1061E +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1054E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1063E +Name:Cranking (seq mode) wall deposit ratio +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1056E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1060E +Name:Cranking (batch mode) fuel direct ratio +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1053E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1062E +Name:Cranking (batch mode) wall deposit ratio +TableSize:8x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1055E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C74 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C7C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C84 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C5C +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C8C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C54 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80215B3A +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215AFE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214CBC +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B1C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214CC6 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B30 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AB8 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B12 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AC2 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B26 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AEA +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B08 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802431D0 +ROMLocationX:0x80243450 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D402 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D42A +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802165FA +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802185EC +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FAE2 +ROMLocationX:0x8021FA7E +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80218740 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80263110 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FA1A +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021502C +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x8023A5D8 +ROMLocationX:0x8023A2B8 +ROMLocationY:0x80239F98 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80274968 +ROMLocationX:0x80274328 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80241DD0 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C872 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80225EA8 +ROMLocationX:0x80225D18 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236438 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021527A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215270 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021703E +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021705E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8002B3BC +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80237248 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237568 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D8DA +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD8A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD62 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021D88A +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266950 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D9F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026A7D0 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021DEF2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802774EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802774DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x8027754C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8027755C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80277568 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277580 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802775C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277828 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277844 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802774A0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277860 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027788C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8002CB2C +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B614 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C692 +Unit1:Speed +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B86C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BAC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BD1C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BF74 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C1CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C67C +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021D452 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D452 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022214E +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80222496 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233B98 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D28 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802215A2 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802691F0 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80273522 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80226678 +Name:Temperature based boost limit +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C912 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 11 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002CFDC +Name:Driving force 12 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D234 +Name:Driving force 13 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D48C +Name:Driving force 14 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D6E4 +Name:Driving force 15 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D93C +Name:Driving force 16 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DB94 +Name:Driving force 17 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DDEC +Name:Driving force 18 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E044 +Name:Driving force 19 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E29C +Name:Driving force 20 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E4F4 +Name:Driving force 21 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E74C +Name:Driving force 22 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E9A4 +Name:Driving force 23 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 24 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EE54 +Name:Driving force 25 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F0AC +Name:Driving force 26 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F304 +Name:Driving force 27 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023BDB8 +Name:Driving force 28 new set +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C010 +Name:Driving force 29 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C268 +Name:Driving force 30 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C4C0 +Name:Driving force 31 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C718 +Name:Driving force 32 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C970 +Name:Driving force 33 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CBC8 +Name:Driving force 34 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CE20 +Name:Driving force 35 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D078 +Name:Driving force 36 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D2D0 +Name:Driving force 37 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D528 +Name:Driving force 38 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D780 +Name:Driving force 39 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D9D8 +Name:Driving force 40 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DC30 +Name:Driving force 41 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DE88 +Name:Driving force 42 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E0E0 +Name:Driving force 43 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E338 +Name:Driving force 44 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E590 +Name:Driving force 45 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E7E8 +Name:Driving force 46 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EA40 +Name:Driving force 47 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EC98 +Name:Driving force 48 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EEF0 +Name:Driving force 49 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F148 +Name:Driving force 50 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F3A0 +Name:Driving force 51 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F5F8 +Name:Driving force 52 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F850 +Name:Driving force 53 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FAA8 +Name:Driving force 54 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FD00 +Name:Driving force 55 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802152E8 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802152F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42A78 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42AC0 +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42D60 +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42DA8 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47AB8 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47AAE +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4981C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x49826 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4CAE8 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x494D2 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x494DC +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1371E8 +ROMLocationX:0x137508 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136BA8 +ROMLocationX:0x136EC8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0NF[Table40]0x42) +ROMLocationX:80 +ROMLocationY:0y +Name:0 +TableSize:0x0 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RTW-A060.txt b/bin/Debug/Definitions/Generated/37805-RTW-A060_Honda_CR-Z_2012.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RTW-A060.txt rename to bin/Debug/Definitions/Generated/37805-RTW-A060_Honda_CR-Z_2012.txt index f013dcf..dfef811 100644 --- a/bin/Debug/Definitions/Generated/37805-RTW-A060.txt +++ b/bin/Debug/Definitions/Generated/37805-RTW-A060_Honda_CR-Z_2012.txt @@ -1,2181 +1,2181 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RTW-A060 -37805-RTW-A560 -37805-RTW-P020 -37805-RTW-E080 -37805-RTW-H510 -37805-RTW-U510 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A5FC -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A5FE -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A670 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A694 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A696 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0E1B2 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E1B4 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B334 -Name:P0606 knock test minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3AC -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3AE -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3AF -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3B0 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0B3B4 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3B5 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3B7 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3BA -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3BD -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3BE -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3BF -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0B3C0 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B3C2 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3D7 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B3F1 -Name:OBDII mode 9 support -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0D1D8 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D90E -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D912 -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E1BC -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x0E1C4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x10AE4 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10AE6 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10AE8 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10AEE -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10AF0 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10B38 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10B3A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10D90 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x10DDC -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x122F0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x122F2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1529A -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1529C -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x15D44 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x15D4E -Name:AFM malfunction threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x20C0E -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x20C10 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x20C12 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x20C38 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xC2080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC2090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC2204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x11000 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x431C8 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42F73 -Name:MAP scalar low byte -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x42F6D -Name:MAP scalar high byte -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B36B -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B370 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B37A -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B399 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B381 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B37F -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B388 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B377 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xC20BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021367C -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8021367E -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275F88 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80275FDB -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80276117 -Name:Use AFM to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FF1 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80275FFA -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80213C20 -Name:High speed throttle reduction speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80276008 -Name:Under boost error (P0299) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80212FCC -Name:Initial knock control multiplier -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8027781A -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748C -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748A -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277488 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027748D -Name:Econ button boost (Hondata mode) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277492 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277850 -Name:Anti lag enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277852 -Name:Anti lag target load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786C -Name:Traction Control enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277870 -Name:Traction Control target slip -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x80277872 -Name:Traction Control minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C0 -Name:Traction Control change rate (increasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778C2 -Name:Traction Control change rate (decreasing) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778B8 -Name:Traction Control P gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786D -Name:Traction Control use cornering correction -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x8027786E -Name:Traction Control use PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BA -Name:Traction Control I gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BC -Name:Traction Control D gain -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802778BE -Name:Traction Control D smoothing -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802139E8 -Name:WOT rich limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Torque Limit Warning -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802128C6 -Name:Fuel pressure abnormality determination lower threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B6 -Name:EWG lower limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732B2 -Name:EWG upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802732AA -Name:EWG out of range upper limit voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E0 -Name:EWG low voltage error threshold hiss lo -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802733E4 -Name:EWG low voltage error threshold hiss high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle response -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification throttle sensitivity -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x00000 -Name:Quick modification intake -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -############################# -ROMLocationTable:0x802125CC -Name:Radiator fan speed 1 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D2 -Name:Radiator fan speed 1 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125CE -Name:Radiator fan speed 2 on threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x802125D0 -Name:Radiator fan speed 2 off threshold -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x0D4B6 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E1CE -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1045E -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x104A6 -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x104EE -Name:Cranking (batch mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1041E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x104FE -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1042E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1050E -Name:Cranking (batch mode) wall deposit ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1043E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1051E -Name:Cranking (seq mode) wall deposit ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1044E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10630 -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10678 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10880 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10C30 -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10C4A -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10C44 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x10C84 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10F4C -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10F3C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10F78 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10F68 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10FA4 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10F94 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x112BA -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1182A -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11818 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x11936 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD06D8 -Name:AFM fuel -TableSize:16x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12288 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x122DA -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13DDA -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD0078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD0398 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14578 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0B20A -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0B216 -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C358 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0C398 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0C378 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x0C3B8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0D1DA -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0D1E6 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0D648 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E488 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E64A -Name:TPlate Economy -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0E80C -Name:TPlate Sport -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10B12 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10B23 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x11978 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x119AA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11988 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x119BA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x11998 -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x119CA -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0xD0BA8 -ROMLocationX:0xD0D38 -ROMLocationY:0xD0EC8 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD06F8 -ROMLocationX:0xD0888 -ROMLocationY:0xD0A18 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1828 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1698 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1058 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1378 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD1D00 -Name:Knock sensitivity high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD19E0 -Name:Knock sensitivity low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1BB86 -Name:IMA torque request high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1BD16 -Name:IMA torque request low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xC2258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0xC2244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0xD2688 -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xD29A8 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C74 -Name:Overrun cutoff MAP (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C7C -Name:Overrun cutoff MAP (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80214C84 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C5C -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80214C8C -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80214C54 -Unit1:Rpm -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80215B3A -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215AFE -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214CBC -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B1C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80214CC6 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B30 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AB8 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B12 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AC2 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B26 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x80215AEA -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80215B08 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x802431D0 -ROMLocationX:0x80243450 -Name:TC maximum pressure ratio -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D402 -Name:Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D42A -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x802165FA -Name:WOT determination (mg/cyl) -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802185EC -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FAE2 -ROMLocationX:0x8021FA7E -Name:TC max boost(IAT) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x80218740 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80263110 -Name:TC boost command -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021FA1A -Name:TC max boost(PA) -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021502C -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x8023A5D8 -ROMLocationX:0x8023A2B8 -ROMLocationY:0x80239F98 -Name:WOT lambda adjustment -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80274968 -ROMLocationX:0x80274328 -Name:Knock ignition limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80241DD0 -Name:TC max boost(IAT2) -TableSize:16x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C872 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x80225EA8 -ROMLocationX:0x80225D18 -Name:Knock air limit -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80236438 -Name:EGR Ignition -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021527A -Name:Air temperature ignition compensation (MAP low) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80215270 -Name:Air temperature ignition compensation (MAP high) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021703E -Name:Cranking fuel pressure -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021705E -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8002B3BC -Name:Driving force MT -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x80237248 -Name:Knock sensitivity cylinder 1-4 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80237568 -Name:Knock sensitivity cylinder 2-3 -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021D8DA -Name:Cam angle intake WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD8A -Name:Cam angle exhaust WOT -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8021DD62 -Name:Soot generation limit CAEX angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8021D88A -Name:Soot generation limit CAIN angle table -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80266950 -Name:CAIN angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D9F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8026A7D0 -Name:CAEX angle map -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021DEF2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x802774EE -Name:Boost by gear limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802774DC -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x8027754C -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8027755C -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x80277568 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277580 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802775C2 -Name:Ethanol ignition compensation -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277828 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277844 -Name:Ethanol WOT fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802774A0 -Name:Economy Torque limit -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80277860 -Name:Boost by ethanol limit -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8027788C -Name:Traction Control cornering comp value -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778AE -Name:Traction Control launch slip value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802778DA -Name:Traction Control ignition retard value -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x8002CB2C -Name:Driving force 10 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B614 -Name:Driving force 1 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C692 -Unit1:Speed -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002B86C -Name:Driving force 2 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BAC4 -Name:Driving force 3 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BD1C -Name:Driving force 4 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002BF74 -Name:Driving force 5 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C1CC -Name:Driving force 6 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C67C -Name:Driving force 7 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 8 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002C8D4 -Name:Driving force 9 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8021D452 -Name:Boost pressure reverse lookup -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021D452 -Unit1:MAP -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x8022214E -Name:Direct injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80222496 -Name:Direct injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80233B98 -Name:Target fuel pressure map (low water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80233D28 -Name:Target fuel pressure map (high water temp) -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802215A2 -Name:Injector phase (WOT) -TableSize:3x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x802691F0 -Name:Cam angle exhaust limit -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x80273522 -Name:Digital AFM flow -TableSize:129x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x80226678 -Name:Temperature based boost limit -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x8021C912 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 11 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002CFDC -Name:Driving force 12 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D234 -Name:Driving force 13 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D48C -Name:Driving force 14 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D6E4 -Name:Driving force 15 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002D93C -Name:Driving force 16 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DB94 -Name:Driving force 17 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002DDEC -Name:Driving force 18 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E044 -Name:Driving force 19 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E29C -Name:Driving force 20 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E4F4 -Name:Driving force 21 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E74C -Name:Driving force 22 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002E9A4 -Name:Driving force 23 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EBFC -Name:Driving force 24 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002EE54 -Name:Driving force 25 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F0AC -Name:Driving force 26 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8002F304 -Name:Driving force 27 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023BDB8 -Name:Driving force 28 new set -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C010 -Name:Driving force 29 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C268 -Name:Driving force 30 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C4C0 -Name:Driving force 31 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C718 -Name:Driving force 32 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023C970 -Name:Driving force 33 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CBC8 -Name:Driving force 34 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023CE20 -Name:Driving force 35 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D078 -Name:Driving force 36 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D2D0 -Name:Driving force 37 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D528 -Name:Driving force 38 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D780 -Name:Driving force 39 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023D9D8 -Name:Driving force 40 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DC30 -Name:Driving force 41 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023DE88 -Name:Driving force 42 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E0E0 -Name:Driving force 43 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E338 -Name:Driving force 44 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E590 -Name:Driving force 45 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023E7E8 -Name:Driving force 46 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EA40 -Name:Driving force 47 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EC98 -Name:Driving force 48 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023EEF0 -Name:Driving force 49 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F148 -Name:Driving force 50 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F3A0 -Name:Driving force 51 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F5F8 -Name:Driving force 52 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023F850 -Name:Driving force 53 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FAA8 -Name:Driving force 54 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x8023FD00 -Name:Driving force 55 -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x802152E8 -Name:KCS lower limit value table -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x802152F2 -Unit1:RPM -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47AB8 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4981C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x49826 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4CAE8 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x494D2 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x494DC -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1371E8 -ROMLocationX:0x137508 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136BA8 -ROMLocationX:0x136EC8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0NF[Table40]0x42) -ROMLocationX:80 -ROMLocationY:0y -Name:0 -TableSize:0x0 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# +####################################################################### +# Honda_CR-Z_2012_Base, EX_1.5L L4 - Electric\/Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RTW-A060 +37805-RTW-A560 +37805-RTW-P020 +37805-RTW-E080 +37805-RTW-H510 +37805-RTW-U510 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A5FC +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A5FE +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A670 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A694 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A696 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0E1B2 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E1B4 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B334 +Name:P0606 knock test minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3AC +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3AE +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3AF +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3B0 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0B3B4 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3B5 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3B7 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3BA +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3BD +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3BE +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3BF +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0B3C0 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B3C2 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3D7 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B3F1 +Name:OBDII mode 9 support +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0D1D8 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D90E +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D912 +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E1BC +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x0E1C4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x10AE4 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10AE6 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10AE8 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10AEE +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10AF0 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10B38 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10B3A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10D90 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x10DDC +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x122F0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x122F2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1529A +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1529C +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x15D44 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x15D4E +Name:AFM malfunction threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x20C0E +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x20C10 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x20C12 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x20C38 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xC2080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC2090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC2204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x11000 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x431C8 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42F73 +Name:MAP scalar low byte +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x42F6D +Name:MAP scalar high byte +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B36B +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B370 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B37A +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B399 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B381 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B37F +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B388 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B377 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xC20BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021367C +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8021367E +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275F88 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80275FDB +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80276117 +Name:Use AFM to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FF1 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80275FFA +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80213C20 +Name:High speed throttle reduction speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80276008 +Name:Under boost error (P0299) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80212FCC +Name:Initial knock control multiplier +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8027781A +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748C +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748A +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277488 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027748D +Name:Econ button boost (Hondata mode) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277492 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277850 +Name:Anti lag enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277852 +Name:Anti lag target load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786C +Name:Traction Control enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277870 +Name:Traction Control target slip +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x80277872 +Name:Traction Control minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C0 +Name:Traction Control change rate (increasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778C2 +Name:Traction Control change rate (decreasing) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778B8 +Name:Traction Control P gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786D +Name:Traction Control use cornering correction +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x8027786E +Name:Traction Control use PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BA +Name:Traction Control I gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BC +Name:Traction Control D gain +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802778BE +Name:Traction Control D smoothing +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802139E8 +Name:WOT rich limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Torque Limit Warning +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802128C6 +Name:Fuel pressure abnormality determination lower threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B6 +Name:EWG lower limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732B2 +Name:EWG upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802732AA +Name:EWG out of range upper limit voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E0 +Name:EWG low voltage error threshold hiss lo +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802733E4 +Name:EWG low voltage error threshold hiss high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle response +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification throttle sensitivity +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x00000 +Name:Quick modification intake +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +############################# +ROMLocationTable:0x802125CC +Name:Radiator fan speed 1 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D2 +Name:Radiator fan speed 1 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125CE +Name:Radiator fan speed 2 on threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x802125D0 +Name:Radiator fan speed 2 off threshold +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x0D4B6 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E1CE +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1045E +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x104A6 +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x104EE +Name:Cranking (batch mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1041E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x104FE +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1042E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1050E +Name:Cranking (batch mode) wall deposit ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1043E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1051E +Name:Cranking (seq mode) wall deposit ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1044E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10630 +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10678 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10880 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10C30 +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10C4A +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10C44 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x10C84 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10F4C +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10F3C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10F78 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10F68 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10FA4 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10F94 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x112BA +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1182A +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11818 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x11936 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD06D8 +Name:AFM fuel +TableSize:16x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12288 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x122DA +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13DDA +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD0078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD0398 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14578 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0B20A +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0B216 +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C358 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0C398 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0C378 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x0C3B8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0D1DA +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0D1E6 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0D648 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E488 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E64A +Name:TPlate Economy +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0E80C +Name:TPlate Sport +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10B12 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10B23 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x11978 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x119AA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11988 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x119BA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x11998 +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x119CA +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0xD0BA8 +ROMLocationX:0xD0D38 +ROMLocationY:0xD0EC8 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD06F8 +ROMLocationX:0xD0888 +ROMLocationY:0xD0A18 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1828 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1698 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1058 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1378 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD1D00 +Name:Knock sensitivity high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD19E0 +Name:Knock sensitivity low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1BB86 +Name:IMA torque request high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1BD16 +Name:IMA torque request low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xC2258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0xC2244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0xD2688 +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xD29A8 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C74 +Name:Overrun cutoff MAP (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C7C +Name:Overrun cutoff MAP (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80214C84 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C5C +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80214C8C +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80214C54 +Unit1:Rpm +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80215B3A +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215AFE +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214CBC +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B1C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80214CC6 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B30 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AB8 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B12 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AC2 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B26 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x80215AEA +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80215B08 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x802431D0 +ROMLocationX:0x80243450 +Name:TC maximum pressure ratio +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D402 +Name:Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D42A +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x802165FA +Name:WOT determination (mg/cyl) +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802185EC +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FAE2 +ROMLocationX:0x8021FA7E +Name:TC max boost(IAT) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x80218740 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80263110 +Name:TC boost command +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021FA1A +Name:TC max boost(PA) +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021502C +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x8023A5D8 +ROMLocationX:0x8023A2B8 +ROMLocationY:0x80239F98 +Name:WOT lambda adjustment +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80274968 +ROMLocationX:0x80274328 +Name:Knock ignition limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80241DD0 +Name:TC max boost(IAT2) +TableSize:16x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C872 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x80225EA8 +ROMLocationX:0x80225D18 +Name:Knock air limit +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80236438 +Name:EGR Ignition +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021527A +Name:Air temperature ignition compensation (MAP low) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80215270 +Name:Air temperature ignition compensation (MAP high) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021703E +Name:Cranking fuel pressure +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021705E +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8002B3BC +Name:Driving force MT +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x80237248 +Name:Knock sensitivity cylinder 1-4 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80237568 +Name:Knock sensitivity cylinder 2-3 +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021D8DA +Name:Cam angle intake WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD8A +Name:Cam angle exhaust WOT +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8021DD62 +Name:Soot generation limit CAEX angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8021D88A +Name:Soot generation limit CAIN angle table +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80266950 +Name:CAIN angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D9F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8026A7D0 +Name:CAEX angle map +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021DEF2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x802774EE +Name:Boost by gear limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802774DC +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x8027754C +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8027755C +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x80277568 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277580 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802775C2 +Name:Ethanol ignition compensation +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277828 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277844 +Name:Ethanol WOT fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802774A0 +Name:Economy Torque limit +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80277860 +Name:Boost by ethanol limit +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8027788C +Name:Traction Control cornering comp value +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778AE +Name:Traction Control launch slip value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802778DA +Name:Traction Control ignition retard value +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x8002CB2C +Name:Driving force 10 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B614 +Name:Driving force 1 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C692 +Unit1:Speed +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002B86C +Name:Driving force 2 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BAC4 +Name:Driving force 3 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BD1C +Name:Driving force 4 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002BF74 +Name:Driving force 5 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C1CC +Name:Driving force 6 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C67C +Name:Driving force 7 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 8 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002C8D4 +Name:Driving force 9 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8021D452 +Name:Boost pressure reverse lookup +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021D452 +Unit1:MAP +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x8022214E +Name:Direct injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80222496 +Name:Direct injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80233B98 +Name:Target fuel pressure map (low water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80233D28 +Name:Target fuel pressure map (high water temp) +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802215A2 +Name:Injector phase (WOT) +TableSize:3x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x802691F0 +Name:Cam angle exhaust limit +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x80273522 +Name:Digital AFM flow +TableSize:129x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x80226678 +Name:Temperature based boost limit +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x8021C912 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 11 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002CFDC +Name:Driving force 12 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D234 +Name:Driving force 13 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D48C +Name:Driving force 14 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D6E4 +Name:Driving force 15 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002D93C +Name:Driving force 16 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DB94 +Name:Driving force 17 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002DDEC +Name:Driving force 18 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E044 +Name:Driving force 19 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E29C +Name:Driving force 20 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E4F4 +Name:Driving force 21 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E74C +Name:Driving force 22 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002E9A4 +Name:Driving force 23 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EBFC +Name:Driving force 24 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002EE54 +Name:Driving force 25 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F0AC +Name:Driving force 26 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8002F304 +Name:Driving force 27 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023BDB8 +Name:Driving force 28 new set +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C010 +Name:Driving force 29 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C268 +Name:Driving force 30 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C4C0 +Name:Driving force 31 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C718 +Name:Driving force 32 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023C970 +Name:Driving force 33 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CBC8 +Name:Driving force 34 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023CE20 +Name:Driving force 35 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D078 +Name:Driving force 36 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D2D0 +Name:Driving force 37 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D528 +Name:Driving force 38 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D780 +Name:Driving force 39 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023D9D8 +Name:Driving force 40 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DC30 +Name:Driving force 41 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023DE88 +Name:Driving force 42 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E0E0 +Name:Driving force 43 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E338 +Name:Driving force 44 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E590 +Name:Driving force 45 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023E7E8 +Name:Driving force 46 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EA40 +Name:Driving force 47 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EC98 +Name:Driving force 48 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023EEF0 +Name:Driving force 49 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F148 +Name:Driving force 50 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F3A0 +Name:Driving force 51 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F5F8 +Name:Driving force 52 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023F850 +Name:Driving force 53 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FAA8 +Name:Driving force 54 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x8023FD00 +Name:Driving force 55 +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x802152E8 +Name:KCS lower limit value table +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x802152F2 +Unit1:RPM +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47AB8 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4981C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x49826 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4CAE8 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x494D2 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x494DC +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1371E8 +ROMLocationX:0x137508 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136BA8 +ROMLocationX:0x136EC8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0NF[Table40]0x42) +ROMLocationX:80 +ROMLocationY:0y +Name:0 +TableSize:0x0 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RV0-A580.txt b/bin/Debug/Definitions/Generated/37805-RV0-A580_Honda_Odyssey_2011_2013.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RV0-A580.txt rename to bin/Debug/Definitions/Generated/37805-RV0-A580_Honda_Odyssey_2011_2013.txt index 33d8192..b6b4223 100644 --- a/bin/Debug/Definitions/Generated/37805-RV0-A580.txt +++ b/bin/Debug/Definitions/Generated/37805-RV0-A580_Honda_Odyssey_2011_2013.txt @@ -1,112 +1,112 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RV0-A580 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x12AB2 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12ABA -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AC2 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12ACA -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AD2 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AD6 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AE6 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AEE -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13526 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x13510 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x12AB2 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AC2 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# +####################################################################### +# Honda_Odyssey_2011_2013_EX, EX-L, LX_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RV0-A580 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x12AB2 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12ABA +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AC2 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12ACA +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AD2 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AD6 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AE6 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AEE +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13526 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x13510 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x12AB2 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AC2 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RV0-A650.txt b/bin/Debug/Definitions/Generated/37805-RV0-A650_Honda_Odyssey_2014_2015_2016.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RV0-A650.txt rename to bin/Debug/Definitions/Generated/37805-RV0-A650_Honda_Odyssey_2014_2015_2016.txt index 98989d5..22aa5bb 100644 --- a/bin/Debug/Definitions/Generated/37805-RV0-A650.txt +++ b/bin/Debug/Definitions/Generated/37805-RV0-A650_Honda_Odyssey_2014_2015_2016.txt @@ -1,112 +1,112 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RV0-A650 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x12CA6 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CAE -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CB6 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CBE -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CC6 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CCA -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CDA -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CE2 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x135B6 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x135A0 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x12CA6 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12CB6 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# +####################################################################### +# Honda_Odyssey_2014_2015_2016_EX, EX-L, LX, SE, Touring, Touring Elite_EX, EX-L, LX, Touring, Touring Elite_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RV0-A650 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x12CA6 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CAE +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CB6 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CBE +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CC6 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CCA +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CDA +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CE2 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x135B6 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x135A0 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x12CA6 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12CB6 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RV0-A780.txt b/bin/Debug/Definitions/Generated/37805-RV0-A780_Honda_Odyssey_2011_2013.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RV0-A780.txt rename to bin/Debug/Definitions/Generated/37805-RV0-A780_Honda_Odyssey_2011_2013.txt index f96f9b6..3530ce9 100644 --- a/bin/Debug/Definitions/Generated/37805-RV0-A780.txt +++ b/bin/Debug/Definitions/Generated/37805-RV0-A780_Honda_Odyssey_2011_2013.txt @@ -1,112 +1,112 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RV0-A780 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x12AB2 -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12ABA -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AC2 -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12ACA -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AD2 -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AD6 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AE6 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AEE -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x13526 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x13510 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x12AB2 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# -ROMLocationTable:0x12AC2 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -############################# +####################################################################### +# Honda_Odyssey_2011_2013_Touring, Touring Elite_3.5L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RV0-A780 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x12AB2 +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12ABA +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AC2 +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12ACA +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AD2 +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AD6 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AE6 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AEE +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x13526 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x13510 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x12AB2 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# +ROMLocationTable:0x12AC2 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RWC-A570.txt b/bin/Debug/Definitions/Generated/37805-RWC-A570_Acura_RDX_2007_2008_2009.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RWC-A570.txt rename to bin/Debug/Definitions/Generated/37805-RWC-A570_Acura_RDX_2007_2008_2009.txt index 276aac1..2a8fac1 100644 --- a/bin/Debug/Definitions/Generated/37805-RWC-A570.txt +++ b/bin/Debug/Definitions/Generated/37805-RWC-A570_Acura_RDX_2007_2008_2009.txt @@ -1,1057 +1,1057 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RWC-A570 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A63C -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A63E -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA4E -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C13E -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C140 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C3F0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C490 -Name:Derivative for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C492 -Name:Integral for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C494 -Name:Proportion for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C496 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C498 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C4F8 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C50E -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C510 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14132 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14122 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1414A -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1413C -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x14138 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B324 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B326 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B32A -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B32E -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x10F8C -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0B38A -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B38C -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA5B -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA5D -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA5E -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA5F -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA61 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA62 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA63 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA65 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA67 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA6A -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA6B -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA6C -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AA6D -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA6F -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x92094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D2A0 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D2A2 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A660 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AC0A -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BC0C -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BC0E -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C85A -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E6DC -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E6DE -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E6E0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x10636 -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1063A -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x2D795 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x5B03C -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48CD3 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D836 -Name:Boost cut minimum air temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D838 -Name:Boost cut minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A7BC -Name:VSA torque limiting enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CD30 -Name:Factory boost cut retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C154 -Name:Factory boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A6AC -Name:AFM maximum voltage error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A6AE -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA37 -Name:P2263 boost problem enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA2E -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x12DC0 -Name:Injector phase (high load) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12DCA -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x12FAC -Name:AFM fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x12FD0 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13046 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1308E -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1311E -Name:Cranking (batch mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13026 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1312E -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13036 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1313E -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13186 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1408A -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14096 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14090 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x140B2 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x142DE -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x142D6 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x142EE -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x142E6 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x142FE -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x142F6 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x1430E -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14328 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14598 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14670 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14660 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14690 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14680 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x146B0 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x146A0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1642C -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1680A -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16800 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1681E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16814 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16832 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16828 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x16846 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1683C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1686C -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16876 -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16ADC -Name:Knock ignition limit high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17694 -Name:Knock ignition limit low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x183FA -Name:Knock retard high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18526 -Name:Knock retard low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18C58 -Name:Knock sensitivity high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18ED8 -Name:Knock sensitivity low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x0FC6C -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x132EE -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x132F8 -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13302 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1330C -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1333C -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x1334E -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13380 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1335E -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13390 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1336E -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x133A0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1341C -ROMLocationX:0x13674 -ROMLocationY:0x139F8 -Name:WOT lambda adjustment high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13548 -ROMLocationX:0x137A0 -ROMLocationY:0x138CC -Name:WOT lambda adjustment low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14336 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1434E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x14340 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x14358 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x15658 -Name:Ignition low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14AA0 -Name:Ignition high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x19A30 -Name:Cam angle high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1621A -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x19BC0 -Name:Cam angle low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x16210 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x110E8 -Name:Target boost -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x11110 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x10F96 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11900 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16210 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1621A -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1011C -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10134 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10424 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16412 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1065C -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1067C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1066C -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1068C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x0F466 -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0F48C -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1409C -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13C08 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1632E -Name:Minimum ignition low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16356 -Name:Minimum ignition high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA0064 -Name:Fuel low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA0C80 -Name:Fuel high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x92258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92244 -Unit1:IAT -IsNotDefined:true -############################# +####################################################################### +# Acura_RDX_2007_2008_2009_Base_2.3L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RWC-A570 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A63C +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A63E +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA4E +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C13E +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C140 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C3F0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C490 +Name:Derivative for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C492 +Name:Integral for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C494 +Name:Proportion for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C496 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C498 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C4F8 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C50E +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C510 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14132 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14122 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1414A +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1413C +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x14138 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B324 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B326 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B32A +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B32E +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x10F8C +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0B38A +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B38C +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA5B +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA5D +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA5E +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA5F +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA61 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA62 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA63 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA65 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA67 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA6A +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA6B +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA6C +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AA6D +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA6F +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x92094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D2A0 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D2A2 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A660 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AC0A +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BC0C +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BC0E +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C85A +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E6DC +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E6DE +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E6E0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x10636 +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1063A +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x2D795 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x5B03C +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48CD3 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D836 +Name:Boost cut minimum air temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D838 +Name:Boost cut minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A7BC +Name:VSA torque limiting enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CD30 +Name:Factory boost cut retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C154 +Name:Factory boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A6AC +Name:AFM maximum voltage error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A6AE +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA37 +Name:P2263 boost problem enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA2E +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x12DC0 +Name:Injector phase (high load) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12DCA +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x12FAC +Name:AFM fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x12FD0 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13046 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1308E +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1311E +Name:Cranking (batch mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13026 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1312E +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13036 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1313E +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13186 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1408A +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14096 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14090 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x140B2 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x142DE +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x142D6 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x142EE +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x142E6 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x142FE +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x142F6 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x1430E +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14328 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14598 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14670 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14660 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14690 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14680 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x146B0 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x146A0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1642C +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1680A +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16800 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1681E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16814 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16832 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16828 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x16846 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1683C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1686C +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16876 +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16ADC +Name:Knock ignition limit high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17694 +Name:Knock ignition limit low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x183FA +Name:Knock retard high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18526 +Name:Knock retard low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18C58 +Name:Knock sensitivity high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18ED8 +Name:Knock sensitivity low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x0FC6C +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x132EE +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x132F8 +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13302 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1330C +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1333C +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x1334E +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13380 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1335E +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13390 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1336E +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x133A0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1341C +ROMLocationX:0x13674 +ROMLocationY:0x139F8 +Name:WOT lambda adjustment high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13548 +ROMLocationX:0x137A0 +ROMLocationY:0x138CC +Name:WOT lambda adjustment low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14336 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1434E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x14340 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x14358 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x15658 +Name:Ignition low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14AA0 +Name:Ignition high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x19A30 +Name:Cam angle high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1621A +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x19BC0 +Name:Cam angle low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x16210 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x110E8 +Name:Target boost +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x11110 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x10F96 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11900 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16210 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1621A +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1011C +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10134 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10424 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16412 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1065C +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1067C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1066C +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1068C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x0F466 +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0F48C +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1409C +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13C08 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1632E +Name:Minimum ignition low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16356 +Name:Minimum ignition high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA0064 +Name:Fuel low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA0C80 +Name:Fuel high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x92258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92244 +Unit1:IAT +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RWC-A620.txt b/bin/Debug/Definitions/Generated/37805-RWC-A620_Acura_RDX_2010_2011.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RWC-A620.txt rename to bin/Debug/Definitions/Generated/37805-RWC-A620_Acura_RDX_2010_2011.txt index e8ca07d..d4ff107 100644 --- a/bin/Debug/Definitions/Generated/37805-RWC-A620.txt +++ b/bin/Debug/Definitions/Generated/37805-RWC-A620_Acura_RDX_2010_2011.txt @@ -1,1006 +1,1006 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RWC-A620 -37805-RWC-A720 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A65A -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A66C -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A66E -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC1 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAC3 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC4 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAC5 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC7 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC8 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC9 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AACB -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AACD -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAD0 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD1 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAD2 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD3 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD5 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AADA -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B0C0 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B550 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B552 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B726 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B728 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B72C -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B730 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x118D8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0BE88 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BE8A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BFD0 -Name:Derivative for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD2 -Name:Integral for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD4 -Name:Proportion for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD6 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BFD8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C0E0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C2C4 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C2DA -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C2DC -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C690 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C692 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0CDB4 -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D036 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D038 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E754 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E756 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E758 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x10F5A -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10F5E -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132A6 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x13296 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132BE -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132B0 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132AC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x92094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x2DBB5 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x655F8 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4B5D3 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0DE04 -Name:VSA torque limiting enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CCA0 -Name:Factory boost cut retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BEBC -Name:Factory boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A644 -Name:AFM maximum voltage error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A646 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA9D -Name:P2263 boost problem enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA94 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x097E0 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x0FA16 -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FA3C -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10918 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10930 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10C20 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x118E2 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13108 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13100 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13118 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13110 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13128 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13120 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13138 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13152 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1347C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13488 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13482 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x134AC -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13698 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13688 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x136B8 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x136A8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x136D8 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x136C8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13808 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1471C -Name:Injector phase (high load) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14726 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x147F8 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14834 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BA0 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x187E0 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x187EA -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18812 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18808 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x18826 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1881C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1883A -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18830 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1884E -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18844 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1886A -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18B0E -Name:Knock sensitivity high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18D8E -Name:Knock sensitivity low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10550 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10570 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10560 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10580 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10D0E -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11BEC -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13160 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13178 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1316A -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13182 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13C92 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13C9C -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13CA6 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13CB0 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13CE0 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x13D9A -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DCC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13DAA -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DDC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13DBA -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DEC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13DFE -ROMLocationX:0x14056 -ROMLocationY:0x142AE -Name:WOT lambda adjustment high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13F2A -ROMLocationX:0x14182 -ROMLocationY:0x143DA -Name:WOT lambda adjustment low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14B60 -Name:Knock retard high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14C8C -Name:Knock retard low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BA8 -Name:Ignition high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17760 -Name:Ignition low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C820 -Name:Cam angle high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18322 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1C9B0 -Name:Cam angle low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18318 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x13D8E -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14DB8 -Name:Knock ignition limit high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15970 -Name:Knock ignition limit low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x115C0 -Name:Target boost -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x115E8 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x147D4 -Name:AFM fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18318 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18322 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16B00 -Name:Minimum ignition low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16B28 -Name:Minimum ignition high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA0064 -Name:Fuel low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA0C80 -Name:Fuel high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x92258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92244 -Unit1:IAT -IsNotDefined:true -############################# +####################################################################### +# Acura_RDX_2010_2011_SH-AWD_2.3L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RWC-A620 +37805-RWC-A720 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A65A +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A66C +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A66E +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC1 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAC3 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC4 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAC5 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC7 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC8 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC9 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AACB +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AACD +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAD0 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD1 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAD2 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD3 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD5 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AADA +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B0C0 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B550 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B552 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B726 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B728 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B72C +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B730 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x118D8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0BE88 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE8A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BFD0 +Name:Derivative for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD2 +Name:Integral for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD4 +Name:Proportion for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD6 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BFD8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C0E0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C2C4 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C2DA +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C2DC +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C690 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C692 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0CDB4 +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D036 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D038 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E754 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E756 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E758 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x10F5A +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10F5E +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132A6 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x13296 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132BE +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132B0 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132AC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x92094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x2DBB5 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x655F8 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4B5D3 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0DE04 +Name:VSA torque limiting enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CCA0 +Name:Factory boost cut retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BEBC +Name:Factory boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A644 +Name:AFM maximum voltage error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A646 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA9D +Name:P2263 boost problem enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA94 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x097E0 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x0FA16 +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FA3C +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10918 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10930 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10C20 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x118E2 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13108 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13100 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13118 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13110 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13128 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13120 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13138 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13152 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1347C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13488 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13482 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x134AC +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13698 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13688 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x136B8 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x136A8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x136D8 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x136C8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13808 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1471C +Name:Injector phase (high load) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14726 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x147F8 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14834 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BA0 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x187E0 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x187EA +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18812 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18808 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x18826 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1881C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1883A +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18830 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1884E +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18844 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1886A +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18B0E +Name:Knock sensitivity high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18D8E +Name:Knock sensitivity low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10550 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10570 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10560 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10580 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10D0E +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11BEC +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13160 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13178 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1316A +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13182 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13C92 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13C9C +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13CA6 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13CB0 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13CE0 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x13D9A +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DCC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13DAA +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DDC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13DBA +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DEC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13DFE +ROMLocationX:0x14056 +ROMLocationY:0x142AE +Name:WOT lambda adjustment high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13F2A +ROMLocationX:0x14182 +ROMLocationY:0x143DA +Name:WOT lambda adjustment low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14B60 +Name:Knock retard high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14C8C +Name:Knock retard low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BA8 +Name:Ignition high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17760 +Name:Ignition low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C820 +Name:Cam angle high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18322 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1C9B0 +Name:Cam angle low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18318 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x13D8E +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14DB8 +Name:Knock ignition limit high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15970 +Name:Knock ignition limit low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x115C0 +Name:Target boost +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x115E8 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x147D4 +Name:AFM fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18318 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18322 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16B00 +Name:Minimum ignition low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16B28 +Name:Minimum ignition high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA0064 +Name:Fuel low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA0C80 +Name:Fuel high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x92258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92244 +Unit1:IAT +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RWC-A810.txt b/bin/Debug/Definitions/Generated/37805-RWC-A810_Acura_RDX_2012.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RWC-A810.txt rename to bin/Debug/Definitions/Generated/37805-RWC-A810_Acura_RDX_2012.txt index e6e20fc..1b5f8ad 100644 --- a/bin/Debug/Definitions/Generated/37805-RWC-A810.txt +++ b/bin/Debug/Definitions/Generated/37805-RWC-A810_Acura_RDX_2012.txt @@ -1,1002 +1,1002 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RWC-A810 -37805-RWC-A910 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x0A65A -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0A66C -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0A66E -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC1 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAC3 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC4 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAC5 -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC7 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC8 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAC9 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AACB -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAD0 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD1 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AAD2 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD3 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AAD5 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AADA -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B0C0 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B550 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B552 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B726 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B728 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B72C -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0B730 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x118E8 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x0BE88 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BE8A -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BFD0 -Name:Derivative for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD2 -Name:Integral for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD4 -Name:Proportion for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0BFD6 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BFD8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C0E0 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C2C4 -Name:AF learned value minimum ECT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C2DA -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C2DC -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0C690 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0C692 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10F6A -Name:Injector flow for fuel economy calc -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10F6E -Name:Injector flow for fuel economy calc index -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132B6 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132A6 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132CE -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132C0 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x132BC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x2DC79 -Name:System control register -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x6591E -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AACD -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CDB4 -Name:Warm up ignition retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D02E -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0D030 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0E762 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E764 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x0E766 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x92080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x9208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x920C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x92094 -Name:Wideband input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x92096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4B7B3 -Name:Use second coolant temperature sensor for fan control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0DE0C -Name:VSA torque limiting enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0CCA0 -Name:Factory boost cut retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0BEBC -Name:Factory boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x920BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A644 -Name:AFM maximum voltage error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0A646 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0AA9D -Name:P2263 boost problem enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x0AA94 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x0FA26 -Name:Ignition dwell angle -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x0FA4C -Name:Ignition dwell angle voltage compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x10928 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10940 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10C30 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x118F2 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13118 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13110 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13128 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13120 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13138 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13130 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x13148 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13162 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1348C -Name:Tip in fuel ECT compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13498 -Name:Tip in fuel throttle compensation -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13492 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x134BC -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136A8 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13698 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x136C8 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x136B8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x136E8 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x136D8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13818 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1472C -Name:Injector phase (high load) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14736 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x14808 -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14844 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x10560 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10580 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10570 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x10590 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x10D1E -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x11BFC -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13170 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13188 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1317A -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13192 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13CA2 -Name:Air temperature fuel compensation low flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13CAC -Name:Air temperature fuel compensation medium flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13CB6 -Name:Air temperature fuel compensation high flow -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13CC0 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13CF0 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x13DAA -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DDC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13DBA -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DEC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13DCA -Name:Water temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x13DFC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x13E0E -ROMLocationX:0x14066 -ROMLocationY:0x142BE -Name:WOT lambda adjustment high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13F3A -ROMLocationX:0x14192 -ROMLocationY:0x143EA -Name:WOT lambda adjustment low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x17770 -Name:Ignition low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BB8 -Name:Ignition high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x13D9E -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14B70 -Name:Knock retard high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14C9C -Name:Knock retard low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14DC8 -Name:Knock ignition limit high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x15980 -Name:Knock ignition limit low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16BB0 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x187F0 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x187FA -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18822 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18818 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x18836 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x1882C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1884A -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18840 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1885E -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18854 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x1887A -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18B1E -Name:Knock sensitivity high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18D9E -Name:Knock sensitivity low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1C8A0 -Name:Cam angle high -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18332 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x1CA30 -Name:Cam angle low -TableSize:10x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x18328 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x115D0 -Name:Target boost -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x115F8 -Unit1:RPM -IsNotDefined:true -############################# -ROMLocationTable:0x147E4 -Name:AFM fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x18328 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x18332 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16B10 -Name:Minimum ignition low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16B38 -Name:Minimum ignition high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1CBC0 -Name:VTC WOT high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xA0064 -Name:Fuel low -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0xA0C80 -Name:Fuel high -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x92258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x92244 -Unit1:IAT -IsNotDefined:true -############################# +####################################################################### +# Acura_RDX_2012_SH-AWD_2.3L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RWC-A810 +37805-RWC-A910 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x0A65A +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0A66C +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0A66E +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC1 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAC3 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC4 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAC5 +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC7 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC8 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAC9 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AACB +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAD0 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD1 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AAD2 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD3 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AAD5 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AADA +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B0C0 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B550 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B552 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B726 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B728 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B72C +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0B730 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x118E8 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x0BE88 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BE8A +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BFD0 +Name:Derivative for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD2 +Name:Integral for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD4 +Name:Proportion for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0BFD6 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BFD8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C0E0 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C2C4 +Name:AF learned value minimum ECT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C2DA +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C2DC +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0C690 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0C692 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10F6A +Name:Injector flow for fuel economy calc +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10F6E +Name:Injector flow for fuel economy calc index +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132B6 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132A6 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132CE +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132C0 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x132BC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x2DC79 +Name:System control register +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x6591E +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AACD +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CDB4 +Name:Warm up ignition retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D02E +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0D030 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0E762 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E764 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x0E766 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x92080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x9208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x920C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x92094 +Name:Wideband input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x92096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4B7B3 +Name:Use second coolant temperature sensor for fan control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0DE0C +Name:VSA torque limiting enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0CCA0 +Name:Factory boost cut retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0BEBC +Name:Factory boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x920BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A644 +Name:AFM maximum voltage error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0A646 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0AA9D +Name:P2263 boost problem enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x0AA94 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x0FA26 +Name:Ignition dwell angle +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x0FA4C +Name:Ignition dwell angle voltage compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x10928 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10940 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10C30 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x118F2 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13118 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13110 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13128 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13120 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13138 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13130 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x13148 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13162 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1348C +Name:Tip in fuel ECT compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13498 +Name:Tip in fuel throttle compensation +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13492 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x134BC +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136A8 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13698 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x136C8 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x136B8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x136E8 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x136D8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13818 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1472C +Name:Injector phase (high load) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14736 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x14808 +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14844 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x10560 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10580 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10570 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x10590 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x10D1E +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x11BFC +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13170 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13188 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1317A +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13192 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13CA2 +Name:Air temperature fuel compensation low flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13CAC +Name:Air temperature fuel compensation medium flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13CB6 +Name:Air temperature fuel compensation high flow +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13CC0 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13CF0 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x13DAA +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DDC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13DBA +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DEC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13DCA +Name:Water temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x13DFC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x13E0E +ROMLocationX:0x14066 +ROMLocationY:0x142BE +Name:WOT lambda adjustment high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13F3A +ROMLocationX:0x14192 +ROMLocationY:0x143EA +Name:WOT lambda adjustment low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x17770 +Name:Ignition low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BB8 +Name:Ignition high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x13D9E +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14B70 +Name:Knock retard high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14C9C +Name:Knock retard low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14DC8 +Name:Knock ignition limit high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x15980 +Name:Knock ignition limit low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16BB0 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x187F0 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x187FA +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18822 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18818 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x18836 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x1882C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1884A +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18840 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1885E +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18854 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x1887A +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18B1E +Name:Knock sensitivity high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18D9E +Name:Knock sensitivity low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1C8A0 +Name:Cam angle high +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18332 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x1CA30 +Name:Cam angle low +TableSize:10x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x18328 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x115D0 +Name:Target boost +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x115F8 +Unit1:RPM +IsNotDefined:true +############################# +ROMLocationTable:0x147E4 +Name:AFM fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x18328 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x18332 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16B10 +Name:Minimum ignition low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16B38 +Name:Minimum ignition high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1CBC0 +Name:VTC WOT high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xA0064 +Name:Fuel low +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0xA0C80 +Name:Fuel high +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x92258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x92244 +Unit1:IAT +IsNotDefined:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RX0-A030.txt b/bin/Debug/Definitions/Generated/37805-RX0-A030_Honda_Civic_2012.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RX0-A030.txt rename to bin/Debug/Definitions/Generated/37805-RX0-A030_Honda_Civic_2012.txt index 8e3df00..2e1e687 100644 --- a/bin/Debug/Definitions/Generated/37805-RX0-A030.txt +++ b/bin/Debug/Definitions/Generated/37805-RX0-A030_Honda_Civic_2012.txt @@ -1,1470 +1,1470 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RX0-A030 -37805-RX0-K040 -37805-RX0-X020 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x010012 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x43242 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x4324A -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45FD0 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45FD2 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45EEE -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45EFE -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47342 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47358 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407C5 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x37688 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4259C -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3F804 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x488EA -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x488E8 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F806 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4E1D4 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3765E -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x37660 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x37662 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x407A5 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407AA -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407AE -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407AF -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4079C -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40757 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40755 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4075C -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40762 -Name:RSSWGO67 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x40D1E -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x407A7 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x34AF8 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x42F98 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x42F9A -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43230 -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40783 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4076C -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40781 -Name:Evaporative Emission Canister Purge Valve Circuit (P0443) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4076B -Name:Evaporative Emission System Purge Flow Malfunction (P145C) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4076A -Name:EVAP leak detection enabled (P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E32E -Name:Throttle/brake max rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E332 -Name:Throttle/brake max something -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4E334 -Name:Throttle/brake max speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4D7CA -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D7CC -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407B2 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407B0 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x407A3 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47A60 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3F7E0 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4F32C -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45F7E -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x45F86 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0xBB4F4 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xBB4F0 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFA65A -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x162080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4EE68 -Name:Target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F1DC -Name:RPM for target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4077F -Name:Coil test enabled (P351 P352 P353 P354) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40763 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4733C -Name:Derivative for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4733E -Name:Integral for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47340 -Name:Proportion for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47EE4 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47EE6 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4079E -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4079F -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x407AD -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4321A -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4321C -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45F7A -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4076E -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40773 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4DA88 -Name:P0420 Catalytic efficiency error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40769 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4319E -Name:Fuel economy alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4EE68 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFA62A -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1622BE -Name:Active knock retard enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1622BF -Name:Active knock retard method -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1622C0 -Name:Active knock retard step -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1622C1 -Name:Active knock retard min -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1622C2 -Name:Active knock retard max retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1620BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xDA0A8 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4360E -Name:1st gear throttle dampening enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4F2DC -Name:VTC base duty cycle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D4 -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D2 -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D0 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1E -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A18 -Name:Launch min rpm for ign retard and fuel enrichment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1A -Name:Launch rpm ign retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1C -Name:Launch rpm additional fuel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D7A0 -Name:Long term fuel trim error limit high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D7A2 -Name:Long term fuel trim error limit low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A20 -Name:Lean protection enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x163A22 -Name:Lean protection lambda limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x163A24 -Name:Lean protection load -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x163A26 -Name:Lean protection trigger time -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x163B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x42C46 -Name:Final drive ratio -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x130078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x131018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x134920 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1358C0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136BA8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C1AA -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x136EC8 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C1B4 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x134470 -ROMLocationX:0x134600 -ROMLocationY:0x134790 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x136860 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1369F0 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x48920 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x42990 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4337E -Name:Target throttle plate -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x41356 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x41376 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x41366 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x41386 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x45C50 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C1AA -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C1B4 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F408 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4F404 -Unit1:PA -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4D622 -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4708E -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4723E -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4282A -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x43254 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4B19E -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x47EC2 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4A74C -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A7A2 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x425C2 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x425AA -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C4FE -Name:Air temperature ignition compensation low (MAP<70 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C4F4 -Name:Air temperature ignition compensation high (MAP>70 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C5F4 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C5BE -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C5B4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C59E -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C594 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x133FC0 -ROMLocationX:0x134150 -ROMLocationY:0x1342E0 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F1B4 -Name:VTC WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F18C -Name:VTC WOT high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45BBC -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45BB4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45BCC -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45BC4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45BDC -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45BD4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45BEC -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C57E -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C574 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C55C -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C552 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x479B8 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x479A8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x479E4 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x479D4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47A10 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47A00 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x45C7A -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45C92 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x45C70 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45C88 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4A790 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A786 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4A744 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A79A -Unit1:Throttle -IsNotDefined:true -############################# -ROMLocationTable:0x47F54 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47F34 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47F44 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47F24 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47F00 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47EEE -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x4892C -Name:Injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48C74 -Name:Injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x13201C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x133020 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x162258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x48528 -Name:Burning Pressure Coefficient -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48534 -Name:Burning Pressure Presumption -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x484D2 -Name:KWOT low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x484DE -Name:KWOT high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45748 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45790 -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45A30 -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45A78 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1620AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x43314 -Name:TPlate opening speed correction -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x43540 -Name:Target throttle plate decel -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x432B6 -Name:Target throttle plate rpm correction -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x6479A -Name:TPlate Normal (US) -TableSize:15x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x44164 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x40AEC -Name:Minimum throttle opening compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x162226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x1622D8 -Name:Active knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x16247C -Name:Active knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3FD9C -Name:Maximum plate deviation (P2101) -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F2EA -Name:VTC P -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F2E4 -Name:VTC I -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F2DE -Name:VTC D -TableSize:3x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x163B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x42C3A -Name:Gear ratios -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B654 -Name:CC gear ratio 1 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B660 -Name:CC gear ratio 2 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2012_Si_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RX0-A030 +37805-RX0-K040 +37805-RX0-X020 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x010012 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x43242 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x4324A +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45FD0 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45FD2 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45EEE +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45EFE +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47342 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47358 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407C5 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x37688 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4259C +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3F804 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x488EA +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x488E8 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F806 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4E1D4 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3765E +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x37660 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x37662 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x407A5 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407AA +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407AE +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407AF +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4079C +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40757 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40755 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4075C +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40762 +Name:RSSWGO67 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x40D1E +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x407A7 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x34AF8 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x42F98 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x42F9A +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43230 +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40783 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4076C +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40781 +Name:Evaporative Emission Canister Purge Valve Circuit (P0443) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4076B +Name:Evaporative Emission System Purge Flow Malfunction (P145C) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4076A +Name:EVAP leak detection enabled (P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E32E +Name:Throttle/brake max rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E332 +Name:Throttle/brake max something +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4E334 +Name:Throttle/brake max speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4D7CA +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D7CC +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407B2 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407B0 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x407A3 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47A60 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3F7E0 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4F32C +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45F7E +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x45F86 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0xBB4F4 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xBB4F0 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFA65A +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x162080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4EE68 +Name:Target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F1DC +Name:RPM for target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4077F +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40763 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4733C +Name:Derivative for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4733E +Name:Integral for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47340 +Name:Proportion for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47EE4 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47EE6 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4079E +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4079F +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x407AD +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4321A +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4321C +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45F7A +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4076E +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40773 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4DA88 +Name:P0420 Catalytic efficiency error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40769 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4319E +Name:Fuel economy alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4EE68 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFA62A +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1622BE +Name:Active knock retard enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1622BF +Name:Active knock retard method +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1622C0 +Name:Active knock retard step +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1622C1 +Name:Active knock retard min +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1622C2 +Name:Active knock retard max retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1620BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xDA0A8 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4360E +Name:1st gear throttle dampening enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4F2DC +Name:VTC base duty cycle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D4 +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D2 +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D0 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1E +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A18 +Name:Launch min rpm for ign retard and fuel enrichment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1A +Name:Launch rpm ign retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1C +Name:Launch rpm additional fuel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D7A0 +Name:Long term fuel trim error limit high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D7A2 +Name:Long term fuel trim error limit low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A20 +Name:Lean protection enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x163A22 +Name:Lean protection lambda limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x163A24 +Name:Lean protection load +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x163A26 +Name:Lean protection trigger time +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x163B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x42C46 +Name:Final drive ratio +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x130078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x131018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x134920 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1358C0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136BA8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C1AA +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x136EC8 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C1B4 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x134470 +ROMLocationX:0x134600 +ROMLocationY:0x134790 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x136860 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1369F0 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x48920 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x42990 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4337E +Name:Target throttle plate +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x41356 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x41376 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x41366 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x41386 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x45C50 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C1AA +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C1B4 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F408 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4F404 +Unit1:PA +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4D622 +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4708E +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4723E +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4282A +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x43254 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4B19E +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x47EC2 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4A74C +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A7A2 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x425C2 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x425AA +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C4FE +Name:Air temperature ignition compensation low (MAP<70 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C4F4 +Name:Air temperature ignition compensation high (MAP>70 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C5F4 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C5BE +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C5B4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C59E +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C594 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x133FC0 +ROMLocationX:0x134150 +ROMLocationY:0x1342E0 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F1B4 +Name:VTC WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F18C +Name:VTC WOT high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45BBC +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45BB4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45BCC +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45BC4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45BDC +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45BD4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45BEC +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C57E +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C574 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C55C +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C552 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x479B8 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x479A8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x479E4 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x479D4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47A10 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47A00 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x45C7A +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45C92 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x45C70 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45C88 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4A790 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A786 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4A744 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A79A +Unit1:Throttle +IsNotDefined:true +############################# +ROMLocationTable:0x47F54 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47F34 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47F44 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47F24 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47F00 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47EEE +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x4892C +Name:Injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48C74 +Name:Injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x13201C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x133020 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x162258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x48528 +Name:Burning Pressure Coefficient +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48534 +Name:Burning Pressure Presumption +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x484D2 +Name:KWOT low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x484DE +Name:KWOT high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45748 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45790 +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45A30 +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45A78 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1620AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x43314 +Name:TPlate opening speed correction +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x43540 +Name:Target throttle plate decel +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x432B6 +Name:Target throttle plate rpm correction +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x6479A +Name:TPlate Normal (US) +TableSize:15x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x44164 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x40AEC +Name:Minimum throttle opening compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x162226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x1622D8 +Name:Active knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x16247C +Name:Active knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3FD9C +Name:Maximum plate deviation (P2101) +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F2EA +Name:VTC P +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F2E4 +Name:VTC I +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F2DE +Name:VTC D +TableSize:3x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x163B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x42C3A +Name:Gear ratios +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B654 +Name:CC gear ratio 1 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B660 +Name:CC gear ratio 2 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RX0-A140.txt b/bin/Debug/Definitions/Generated/37805-RX0-A140_Honda_Civic_2013.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RX0-A140.txt rename to bin/Debug/Definitions/Generated/37805-RX0-A140_Honda_Civic_2013.txt index 535fa1c..3203c2e 100644 --- a/bin/Debug/Definitions/Generated/37805-RX0-A140.txt +++ b/bin/Debug/Definitions/Generated/37805-RX0-A140_Honda_Civic_2013.txt @@ -1,1353 +1,1353 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RX0-A140 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x010012 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x34B38 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3769C -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3769E -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x376A0 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x376C8 -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3F82E -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F830 -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F8A4 -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3F8D6 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F8D8 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40835 -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40837 -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4083C -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40843 -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4084B -Name:EVAP leak detection enabled (P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4084D -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40882 -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40884 -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40885 -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40889 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4088B -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40893 -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40894 -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40895 -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x40896 -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40898 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408B2 -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4268C -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43088 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4308A -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4330A -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4330C -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43320 -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43332 -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x4333A -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45FEE -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x45FDE -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4606C -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x46044 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x46040 -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x460C0 -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x460C2 -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47430 -Name:Derivative for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47432 -Name:Integral for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47434 -Name:Proportion for PID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47436 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4744C -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47B54 -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47FD8 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47FDA -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x489D0 -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x489D2 -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4D8B2 -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D8B4 -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E2C0 -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4EF58 -Name:Target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4F7D0 -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x162080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40890 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40842 -Name:RSSWGO67 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x40E0E -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40869 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40867 -Name:Evaporative Emission Canister Purge Valve Circuit (P0443) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4084C -Name:Evaporative Emission System Purge Flow Malfunction (P145C) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40865 -Name:Coil test enabled (P351 P352 P353 P354) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4084F -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40854 -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E41E -Name:Throttle/brake max rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E422 -Name:Throttle/brake max something -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4E424 -Name:Throttle/brake max speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xBC8AA -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xBC8A6 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFC494 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F63C -Name:RPM for target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4DB74 -Name:P0420 Catalytic efficiency error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x43066 -Name:Minimum air temperature for alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43068 -Name:Minimum ECT for alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4084A -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4328E -Name:Fuel economy alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4EF58 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFC456 -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xDBD22 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4088D -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D4 -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D2 -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D0 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1E -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A18 -Name:Launch min rpm for ign retard and fuel enrichment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1A -Name:Launch rpm ign retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1C -Name:Launch rpm additional fuel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D888 -Name:Long term fuel trim error limit high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4D88A -Name:Long term fuel trim error limit low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x42D36 -Name:Final drive ratio -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x4269A -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x426B2 -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4291A -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x43344 -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x45838 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45880 -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x458C8 -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45818 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45B20 -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45B68 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45CAC -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45CA4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45CBC -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45CB4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45CCC -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45CC4 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45CDC -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x45D40 -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x47AAC -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47A9C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47AD8 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47AC8 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47B04 -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47AF4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47FF4 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47FE2 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x48038 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x48018 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x48048 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x48028 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x48A08 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4A878 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A86E -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4C5DC -Name:Air temperature ignition compensation high (MAP>70 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C5E6 -Name:Air temperature ignition compensation low (MAP<70 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C644 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C63A -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C666 -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C65C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C686 -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C67C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C6A6 -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C69C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C6DC -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4D70A -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x41446 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x41466 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x41456 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x41476 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x42A80 -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4346E -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x45D60 -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45D78 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x45D6A -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45D82 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x144470 -ROMLocationX:0x144600 -ROMLocationY:0x144790 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x143FC0 -ROMLocationX:0x144150 -ROMLocationY:0x1442E0 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1469F0 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x146860 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x144920 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1458C0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4A82C -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A882 -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x4A834 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A88A -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x140078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x141018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x146EC8 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C29C -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x146BA8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C292 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x4717E -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x47332 -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4B286 -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F8AC -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4F8A8 -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x4C292 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C29C -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x47FB6 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F5C4 -Name:VTC WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F59C -Name:VTC WOT high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48A14 -Name:Injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48D5C -Name:Injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x162258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x4861C -Name:Burning Pressure Coefficient -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48628 -Name:Burning Pressure Presumption -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x485C6 -Name:KWOT low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x485D2 -Name:KWOT high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1620AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14201C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x143020 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x40BDC -Name:Minimum throttle opening compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x40BCC -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x162226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x44254 -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x3FE80 -Name:Maximum plate deviation (P2101) -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x163B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x42D2A -Name:Gear ratios -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B718 -Name:CC gear ratio 1 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B724 -Name:CC gear ratio 2 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2013_Si_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RX0-A140 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x010012 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x34B38 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3769C +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3769E +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x376A0 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x376C8 +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3F82E +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F830 +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F8A4 +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3F8D6 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F8D8 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40835 +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40837 +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4083C +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40843 +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4084B +Name:EVAP leak detection enabled (P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4084D +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40882 +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40884 +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40885 +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40889 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4088B +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40893 +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40894 +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40895 +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x40896 +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40898 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408B2 +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4268C +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43088 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4308A +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4330A +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4330C +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43320 +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43332 +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x4333A +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45FEE +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x45FDE +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4606C +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x46044 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x46040 +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x460C0 +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x460C2 +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47430 +Name:Derivative for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47432 +Name:Integral for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47434 +Name:Proportion for PID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47436 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4744C +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47B54 +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47FD8 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47FDA +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x489D0 +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x489D2 +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4D8B2 +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D8B4 +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E2C0 +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4EF58 +Name:Target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4F7D0 +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x162080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40890 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40842 +Name:RSSWGO67 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x40E0E +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40869 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40867 +Name:Evaporative Emission Canister Purge Valve Circuit (P0443) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4084C +Name:Evaporative Emission System Purge Flow Malfunction (P145C) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40865 +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4084F +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40854 +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E41E +Name:Throttle/brake max rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E422 +Name:Throttle/brake max something +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4E424 +Name:Throttle/brake max speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xBC8AA +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xBC8A6 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFC494 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F63C +Name:RPM for target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4DB74 +Name:P0420 Catalytic efficiency error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x43066 +Name:Minimum air temperature for alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43068 +Name:Minimum ECT for alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4084A +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4328E +Name:Fuel economy alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4EF58 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFC456 +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xDBD22 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4088D +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D4 +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D2 +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D0 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1E +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A18 +Name:Launch min rpm for ign retard and fuel enrichment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1A +Name:Launch rpm ign retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1C +Name:Launch rpm additional fuel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D888 +Name:Long term fuel trim error limit high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4D88A +Name:Long term fuel trim error limit low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x42D36 +Name:Final drive ratio +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x4269A +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x426B2 +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4291A +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x43344 +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x45838 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45880 +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x458C8 +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45818 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45B20 +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45B68 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45CAC +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45CA4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45CBC +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45CB4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45CCC +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45CC4 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45CDC +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x45D40 +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x47AAC +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47A9C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47AD8 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47AC8 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47B04 +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47AF4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47FF4 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47FE2 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x48038 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x48018 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x48048 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x48028 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x48A08 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4A878 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A86E +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4C5DC +Name:Air temperature ignition compensation high (MAP>70 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C5E6 +Name:Air temperature ignition compensation low (MAP<70 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C644 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C63A +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C666 +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C65C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C686 +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C67C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C6A6 +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C69C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C6DC +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4D70A +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x41446 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x41466 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x41456 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x41476 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x42A80 +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4346E +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x45D60 +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45D78 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x45D6A +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45D82 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x144470 +ROMLocationX:0x144600 +ROMLocationY:0x144790 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x143FC0 +ROMLocationX:0x144150 +ROMLocationY:0x1442E0 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1469F0 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x146860 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x144920 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1458C0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4A82C +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A882 +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x4A834 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A88A +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x140078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x141018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x146EC8 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C29C +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x146BA8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C292 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x4717E +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x47332 +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4B286 +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F8AC +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4F8A8 +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x4C292 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C29C +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x47FB6 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F5C4 +Name:VTC WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F59C +Name:VTC WOT high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48A14 +Name:Injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48D5C +Name:Injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x162258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x4861C +Name:Burning Pressure Coefficient +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48628 +Name:Burning Pressure Presumption +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x485C6 +Name:KWOT low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x485D2 +Name:KWOT high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1620AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14201C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x143020 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x40BDC +Name:Minimum throttle opening compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x40BCC +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x162226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x44254 +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x3FE80 +Name:Maximum plate deviation (P2101) +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x163B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x42D2A +Name:Gear ratios +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B718 +Name:CC gear ratio 1 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B724 +Name:CC gear ratio 2 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RX0-A220.txt b/bin/Debug/Definitions/Generated/37805-RX0-A220_Honda_Civic_2014_2015.txt similarity index 95% rename from bin/Debug/Definitions/Generated/37805-RX0-A220.txt rename to bin/Debug/Definitions/Generated/37805-RX0-A220_Honda_Civic_2014_2015.txt index 35777bd..974acc3 100644 --- a/bin/Debug/Definitions/Generated/37805-RX0-A220.txt +++ b/bin/Debug/Definitions/Generated/37805-RX0-A220_Honda_Civic_2014_2015.txt @@ -1,1357 +1,1357 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RX0-A220 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x010012 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0x34B30 -Name:CVNRPM speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x34B38 -Name:Speed adjustment (ECU) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x376A0 -Name:Write security word #1 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x376A2 -Name:Write security word #2 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x376A4 -Name:Write security word #3 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x376CC -Name:Calibration ID -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F83A -Name:AFM maximum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3F83C -Name:AFM minimum voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x3F8AE -Name:Default PA value -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3F8E2 -Name:Maximum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x3F8E4 -Name:Minimum MAP voltage -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x408AD -Name:MAP too low / too high enabled (P1127 P1128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408AF -Name:PA vs MAP error enabled (P2227) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408B4 -Name:Mass or volume circuit range performance problem enabled (P0101) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408BB -Name:Misfire detection -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408BD -Name:EGR flow malfunction (P0400) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408C2 -Name:EVAP leak detection enabled (P0455 P0456 P0457) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408C5 -Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408FA -Name:AFM enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x408FC -Name:EGR enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408FD -Name:ELD enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408FE -Name:EPS enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40901 -Name:Knock sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40902 -Name:PA sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40903 -Name:Primary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40905 -Name:Purge/EVAP enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x40908 -Name:Secondary oxygen sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4090B -Name:Forced induction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4090C -Name:Second ECT sensor enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4090D -Name:VSA enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4090E -Name:VTC enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x40910 -Name:VTEC oil pressure switch enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4092A -Name:Immobilizer enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x42708 -Name:Use MAP to determine WOT -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43100 -Name:Radiator fan on -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43102 -Name:Radiator fan off -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43382 -Name:VTEC engage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43384 -Name:VTEC disengage minimum speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x43398 -Name:VTEC minimum coolant temperature -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x433AA -Name:VTEC rpm window -TableSize:1x1 -IsSingleByteTable:true -ROMLocationY:0x433B2 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x46078 -Name:Rev limiter recover -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x46068 -Name:Rev limiter -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x460F8 -Name:Launch rpm disengage speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x460D0 -Name:Launch rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x460CC -Name:Launch recover rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x4614C -Name:Speed limiter rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4614E -Name:Speed limiter speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x474BC -Name:Closed loop derivative term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x474BE -Name:Closed loop integral term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x474C0 -Name:Closed loop proportion term -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x474C2 -Name:Short term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x474D8 -Name:Short term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x47BDC -Name:Closed loop target lambda -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48054 -Name:AF learned value maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x48056 -Name:AF learned value minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x489FC -Name:Idle fuel table rpm high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x489FE -Name:Idle fuel table rpm low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4DA7C -Name:Long term fuel trim maximum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4DA7E -Name:Long term fuel trim minimum -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4E4CC -Name:Overrev rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F164 -Name:Target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4F9DC -Name:P1009 VTC over advanced error threshold angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x408BA -Name:RSSWGO67 -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x40E8A -Name:Start emissions reduction enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x408E1 -Name:EVAP VSV error check enabled (P0498 P0499) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408DF -Name:Evaporative Emission Canister Purge Valve Circuit (P0443) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4E62C -Name:Throttle/brake max something -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4E62E -Name:Throttle/brake max speed -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xBDA98 -Name:MAP scalar -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0xBDA94 -Name:MAP offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x00000 -Name:MAP sensor type -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162080 -Name:Injector size -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162204 -Name:Fuel Pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16208C -Name:Overall fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162090 -Name:Cranking fuel trim -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C6 -Name:Boost cut enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620C4 -Name:Boost cut pressure -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620BC -Name:Use MAP fuel tables -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162094 -Name:Wideband voltage input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162096 -Name:Wideband voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226C -Name:Traction control input -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x16226E -Name:Traction control voltage offset -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162270 -Name:Traction control minimum rpm -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408DD -Name:Coil test enabled (P351 P352 P353 P354) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x408C7 -Name:Intake air system leak (P2279) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408CC -Name:Cold start idle air control system (P050A, P050B) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x408C1 -Name:Coolant thermostat temperature check enabled (P0128) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4F848 -Name:RPM for target VTC on decel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4DD58 -Name:P0420 Catalytic efficiency error enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x43306 -Name:Fuel economy alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4F164 -Name:VTC decel fuel cut angle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFF428 -Name:Use VTC tables upon decel fuel cut -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x430DE -Name:Minimum air temperature for alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x430E0 -Name:Minimum ECT for alternator control -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x162232 -Name:Ignition IAT retard applied to ignition advance -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xFF462 -Name:VTC WOT table enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1620BE -Name:Minimum pressure for speed/density -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0xDEEC6 -Name:Overrun throttle opening (rev hang) enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D4 -Name:Full throttle shift enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D2 -Name:Full throttle shift minimum throttle -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x1620D0 -Name:Full throttle shift rpm limit -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1E -Name:Launch rpm (adjustable) -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A18 -Name:Launch min rpm for ign retard and fuel enrichment -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1A -Name:Launch rpm ign retard -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163A1C -Name:Launch rpm additional fuel -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4DA54 -Name:Long term fuel trim error limit low -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x4DA52 -Name:Long term fuel trim error limit high -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x163B10 -Name:Ethanol input enabled -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -############################# -ROMLocationTable:0x42DB2 -Name:Final drive ratio -TableSize:1x1 -IsSingleByteTable:true -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################################################# -############################################################# -############################################################# -ROMLocationTable:0x42716 -Name:TPS WOT determination high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4272E -Name:TPS WOT determination low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x42996 -Name:MAP WOT determination pressure -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x433BC -Name:VTEC window pressure -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x458B0 -Name:Fuel direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x458F8 -Name:Fuel direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x45940 -Name:Cranking (seq mode) fuel direct ratio -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45890 -Unit1:ECT -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x45B98 -Name:Fuel (B) direct ratio hi -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x45BE0 -Name:Fuel (B) direct ratio lo -TableSize:6x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x45D38 -Name:Overrun cutoff MAP high cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45D30 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45D48 -Name:Overrun cutoff MAP high cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45D40 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45D58 -Name:Overrun cutoff MAP low cam (recover) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45D50 -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x45D68 -Name:Overrun cutoff MAP low cam (cut) -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x45DCC -Name:Overrun fuel cut delay -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x473BE -Name:LAF voltage to lambda -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x47B34 -Name:Closed loop target lambda low load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47B24 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47B60 -Name:Closed loop target lambda high load -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47B50 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x47B8C -Name:Closed loop target lambda limit -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x47B7C -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x48070 -Name:Air temperature fuel compensation cranking -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4805E -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x480B4 -Name:Water temperature fuel compensation high -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x48094 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x480C4 -Name:Water temperature fuel compensation low -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x480A4 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x48984 -Name:Injector phase (WOT) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48A34 -Name:Injector opening time -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C740 -Name:Air temperature ignition compensation high (MAP>40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C74A -Name:Air temperature ignition compensation low (MAP<40 kPa) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4C7A8 -Name:Water temperature ignition compensation hot high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C79E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C7CA -Name:Water temperature ignition compensation hot low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C7C0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C7EA -Name:Water temperature ignition compensation cold high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C7E0 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C80A -Name:Water temperature ignition compensation cold low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C800 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x4C840 -Name:Water temperature ignition retard -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4D86E -Name:Purge fuel -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x414C2 -Name:Idle speed (normal) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x414E2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x414D2 -Name:Idle speed (after start) -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x414F2 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x42AFC -Name:AFM flow -TableSize:64x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x434E6 -Name:TPlate Normal -TableSize:15x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x45DEC -Name:Overrun injector restart rpm (cut) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45E04 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x45DF6 -Name:Overrun injector restart rpm (recover) -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x45E0E -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x144470 -ROMLocationX:0x144600 -ROMLocationY:0x144790 -Name:WOT lambda adjustment high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x143FC0 -ROMLocationX:0x144150 -ROMLocationY:0x1442E0 -Name:WOT lambda adjustment low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1469F0 -Name:Knock retard high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x146860 -Name:Knock retard low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x144920 -Name:Knock ignition limit low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x1458C0 -Name:Knock ignition limit high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4A858 -Name:Ignition retard throttle compensation -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A8AE -Unit1:TPS -IsNotDefined:true -############################# -ROMLocationTable:0x4A860 -Name:Ignition retard gear compensation -TableSize:7x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A8B6 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x140078 -Name:Ignition low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x141018 -Name:Ignition high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x146EC8 -Name:Cam angle high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C400 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x146BA8 -Name:Cam angle low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4C3F6 -Unit1:Cam angle -IsNotDefined:true -############################# -ROMLocationTable:0x4A8A4 -Name:Ignition retard rpm compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4A89A -Unit1:Rpm -IsNotDefined:true -############################# -ROMLocationTable:0x4720A -Name:Cranking fuel -TableSize:5x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4B3EA -Name:Individual cylinder ignition trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4FAB8 -Name:VTC max advance table -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x4FAB4 -Unit1:PA -IsNotDefined:true -############################# -ROMLocationTable:0x4C3F6 -Name:Cam angle index low -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4C400 -Name:Cam angle index high -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48032 -Name:Individual cylinder fuel trim -TableSize:4x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x4F7D0 -Name:VTC WOT low -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4F7A8 -Name:VTC WOT high -TableSize:20x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48A40 -Name:Injector Flow -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x48D88 -Name:Injector Flow (Large) -TableSize:7x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x162258 -Name:Air temperature fuel compensation -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162244 -Unit1:IAT -IsNotDefined:true -############################# -ROMLocationTable:0x48642 -Name:KWOT low -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x4864E -Name:KWOT high -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsUntested:true -############################# -ROMLocationTable:0x1620AC -Name:Wideband lambda -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x16228C -Name:Traction control ignition retard -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x40C58 -Name:Minimum throttle opening compensation -TableSize:5x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x40C48 -Unit1:ECT -IsNotDefined:true -############################# -ROMLocationTable:0x162226 -Name:Gear ignition compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x162220 -Unit1:Gear -IsNotDefined:true -############################# -ROMLocationTable:0x442CC -Name:Throttle flow vs opening -TableSize:10x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x3FE48 -Name:Maximum plate deviation (P2101) -TableSize:9x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B24 -Name:Ethanol percentage -TableSize:2x1 -ValueMin:-32768 -ValueMax:32768 -ROMLocationY:0x163B34 -Unit1:Ethanol % -IsNotDefined:true -############################# -ROMLocationTable:0x163B40 -Name:Ethanol fuel compensation -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B58 -Name:Ethanol ignition multiplier -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163B78 -Name:Ethanol ignition compensation -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x163EA4 -Name:Ethanol ECT cranking compensation -TableSize:8x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x14201C -Name:Fuel low -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x143020 -Name:Fuel high -TableSize:20x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -############################# -ROMLocationTable:0x42DA6 -Name:Gear ratios -TableSize:6x1 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B724 -Name:CC gear ratio 1 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# -ROMLocationTable:0x3B730 -Name:CC gear ratio 2 -TableSize:0x20 -ValueMin:-32768 -ValueMax:32768 -IsNotDefined:true -IsReadOnly:true -IsUntested:true -############################# +####################################################################### +# Honda_Civic_2014_2015_Si_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RX0-A220 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x010012 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0x34B30 +Name:CVNRPM speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x34B38 +Name:Speed adjustment (ECU) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x376A0 +Name:Write security word #1 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x376A2 +Name:Write security word #2 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x376A4 +Name:Write security word #3 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x376CC +Name:Calibration ID +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F83A +Name:AFM maximum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3F83C +Name:AFM minimum voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x3F8AE +Name:Default PA value +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3F8E2 +Name:Maximum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x3F8E4 +Name:Minimum MAP voltage +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x408AD +Name:MAP too low / too high enabled (P1127 P1128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408AF +Name:PA vs MAP error enabled (P2227) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408B4 +Name:Mass or volume circuit range performance problem enabled (P0101) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408BB +Name:Misfire detection +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408BD +Name:EGR flow malfunction (P0400) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408C2 +Name:EVAP leak detection enabled (P0455 P0456 P0457) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408C5 +Name:EVAP FTP enabled (P0451 P0452 P0453 P1454) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408FA +Name:AFM enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x408FC +Name:EGR enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408FD +Name:ELD enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408FE +Name:EPS enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40901 +Name:Knock sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40902 +Name:PA sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40903 +Name:Primary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40905 +Name:Purge/EVAP enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x40908 +Name:Secondary oxygen sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4090B +Name:Forced induction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4090C +Name:Second ECT sensor enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4090D +Name:VSA enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4090E +Name:VTC enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x40910 +Name:VTEC oil pressure switch enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4092A +Name:Immobilizer enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x42708 +Name:Use MAP to determine WOT +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43100 +Name:Radiator fan on +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43102 +Name:Radiator fan off +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43382 +Name:VTEC engage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43384 +Name:VTEC disengage minimum speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x43398 +Name:VTEC minimum coolant temperature +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x433AA +Name:VTEC rpm window +TableSize:1x1 +IsSingleByteTable:true +ROMLocationY:0x433B2 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x46078 +Name:Rev limiter recover +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x46068 +Name:Rev limiter +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x460F8 +Name:Launch rpm disengage speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x460D0 +Name:Launch rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x460CC +Name:Launch recover rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x4614C +Name:Speed limiter rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4614E +Name:Speed limiter speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x474BC +Name:Closed loop derivative term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x474BE +Name:Closed loop integral term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x474C0 +Name:Closed loop proportion term +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x474C2 +Name:Short term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x474D8 +Name:Short term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x47BDC +Name:Closed loop target lambda +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48054 +Name:AF learned value maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x48056 +Name:AF learned value minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x489FC +Name:Idle fuel table rpm high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x489FE +Name:Idle fuel table rpm low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4DA7C +Name:Long term fuel trim maximum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4DA7E +Name:Long term fuel trim minimum +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4E4CC +Name:Overrev rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F164 +Name:Target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4F9DC +Name:P1009 VTC over advanced error threshold angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x408BA +Name:RSSWGO67 +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x40E8A +Name:Start emissions reduction enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x408E1 +Name:EVAP VSV error check enabled (P0498 P0499) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408DF +Name:Evaporative Emission Canister Purge Valve Circuit (P0443) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4E62C +Name:Throttle/brake max something +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4E62E +Name:Throttle/brake max speed +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xBDA98 +Name:MAP scalar +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0xBDA94 +Name:MAP offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x00000 +Name:MAP sensor type +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162080 +Name:Injector size +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162204 +Name:Fuel Pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16208C +Name:Overall fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162090 +Name:Cranking fuel trim +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C6 +Name:Boost cut enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620C4 +Name:Boost cut pressure +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620BC +Name:Use MAP fuel tables +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162094 +Name:Wideband voltage input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162096 +Name:Wideband voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226C +Name:Traction control input +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x16226E +Name:Traction control voltage offset +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162270 +Name:Traction control minimum rpm +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408DD +Name:Coil test enabled (P351 P352 P353 P354) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x408C7 +Name:Intake air system leak (P2279) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408CC +Name:Cold start idle air control system (P050A, P050B) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x408C1 +Name:Coolant thermostat temperature check enabled (P0128) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4F848 +Name:RPM for target VTC on decel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4DD58 +Name:P0420 Catalytic efficiency error enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x43306 +Name:Fuel economy alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4F164 +Name:VTC decel fuel cut angle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFF428 +Name:Use VTC tables upon decel fuel cut +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x430DE +Name:Minimum air temperature for alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x430E0 +Name:Minimum ECT for alternator control +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x162232 +Name:Ignition IAT retard applied to ignition advance +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xFF462 +Name:VTC WOT table enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1620BE +Name:Minimum pressure for speed/density +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0xDEEC6 +Name:Overrun throttle opening (rev hang) enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D4 +Name:Full throttle shift enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D2 +Name:Full throttle shift minimum throttle +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x1620D0 +Name:Full throttle shift rpm limit +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1E +Name:Launch rpm (adjustable) +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A18 +Name:Launch min rpm for ign retard and fuel enrichment +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1A +Name:Launch rpm ign retard +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163A1C +Name:Launch rpm additional fuel +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4DA54 +Name:Long term fuel trim error limit low +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x4DA52 +Name:Long term fuel trim error limit high +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x163B10 +Name:Ethanol input enabled +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +############################# +ROMLocationTable:0x42DB2 +Name:Final drive ratio +TableSize:1x1 +IsSingleByteTable:true +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################################################# +############################################################# +############################################################# +ROMLocationTable:0x42716 +Name:TPS WOT determination high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4272E +Name:TPS WOT determination low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x42996 +Name:MAP WOT determination pressure +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x433BC +Name:VTEC window pressure +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x458B0 +Name:Fuel direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x458F8 +Name:Fuel direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x45940 +Name:Cranking (seq mode) fuel direct ratio +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45890 +Unit1:ECT +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x45B98 +Name:Fuel (B) direct ratio hi +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x45BE0 +Name:Fuel (B) direct ratio lo +TableSize:6x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x45D38 +Name:Overrun cutoff MAP high cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45D30 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45D48 +Name:Overrun cutoff MAP high cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45D40 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45D58 +Name:Overrun cutoff MAP low cam (recover) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45D50 +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x45D68 +Name:Overrun cutoff MAP low cam (cut) +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x45DCC +Name:Overrun fuel cut delay +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x473BE +Name:LAF voltage to lambda +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x47B34 +Name:Closed loop target lambda low load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47B24 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47B60 +Name:Closed loop target lambda high load +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47B50 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x47B8C +Name:Closed loop target lambda limit +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x47B7C +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x48070 +Name:Air temperature fuel compensation cranking +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4805E +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x480B4 +Name:Water temperature fuel compensation high +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x48094 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x480C4 +Name:Water temperature fuel compensation low +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x480A4 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x48984 +Name:Injector phase (WOT) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48A34 +Name:Injector opening time +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C740 +Name:Air temperature ignition compensation high (MAP>40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C74A +Name:Air temperature ignition compensation low (MAP<40 kPa) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4C7A8 +Name:Water temperature ignition compensation hot high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C79E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C7CA +Name:Water temperature ignition compensation hot low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C7C0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C7EA +Name:Water temperature ignition compensation cold high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C7E0 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C80A +Name:Water temperature ignition compensation cold low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C800 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x4C840 +Name:Water temperature ignition retard +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4D86E +Name:Purge fuel +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x414C2 +Name:Idle speed (normal) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x414E2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x414D2 +Name:Idle speed (after start) +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x414F2 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x42AFC +Name:AFM flow +TableSize:64x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x434E6 +Name:TPlate Normal +TableSize:15x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x45DEC +Name:Overrun injector restart rpm (cut) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45E04 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x45DF6 +Name:Overrun injector restart rpm (recover) +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x45E0E +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x144470 +ROMLocationX:0x144600 +ROMLocationY:0x144790 +Name:WOT lambda adjustment high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x143FC0 +ROMLocationX:0x144150 +ROMLocationY:0x1442E0 +Name:WOT lambda adjustment low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1469F0 +Name:Knock retard high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x146860 +Name:Knock retard low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x144920 +Name:Knock ignition limit low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x1458C0 +Name:Knock ignition limit high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4A858 +Name:Ignition retard throttle compensation +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A8AE +Unit1:TPS +IsNotDefined:true +############################# +ROMLocationTable:0x4A860 +Name:Ignition retard gear compensation +TableSize:7x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A8B6 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x140078 +Name:Ignition low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x141018 +Name:Ignition high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x146EC8 +Name:Cam angle high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C400 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x146BA8 +Name:Cam angle low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4C3F6 +Unit1:Cam angle +IsNotDefined:true +############################# +ROMLocationTable:0x4A8A4 +Name:Ignition retard rpm compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4A89A +Unit1:Rpm +IsNotDefined:true +############################# +ROMLocationTable:0x4720A +Name:Cranking fuel +TableSize:5x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4B3EA +Name:Individual cylinder ignition trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4FAB8 +Name:VTC max advance table +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x4FAB4 +Unit1:PA +IsNotDefined:true +############################# +ROMLocationTable:0x4C3F6 +Name:Cam angle index low +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4C400 +Name:Cam angle index high +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48032 +Name:Individual cylinder fuel trim +TableSize:4x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x4F7D0 +Name:VTC WOT low +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4F7A8 +Name:VTC WOT high +TableSize:20x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48A40 +Name:Injector Flow +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x48D88 +Name:Injector Flow (Large) +TableSize:7x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x162258 +Name:Air temperature fuel compensation +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162244 +Unit1:IAT +IsNotDefined:true +############################# +ROMLocationTable:0x48642 +Name:KWOT low +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x4864E +Name:KWOT high +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsUntested:true +############################# +ROMLocationTable:0x1620AC +Name:Wideband lambda +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x16228C +Name:Traction control ignition retard +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x40C58 +Name:Minimum throttle opening compensation +TableSize:5x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x40C48 +Unit1:ECT +IsNotDefined:true +############################# +ROMLocationTable:0x162226 +Name:Gear ignition compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x162220 +Unit1:Gear +IsNotDefined:true +############################# +ROMLocationTable:0x442CC +Name:Throttle flow vs opening +TableSize:10x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x3FE48 +Name:Maximum plate deviation (P2101) +TableSize:9x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B24 +Name:Ethanol percentage +TableSize:2x1 +ValueMin:-32768 +ValueMax:32768 +ROMLocationY:0x163B34 +Unit1:Ethanol % +IsNotDefined:true +############################# +ROMLocationTable:0x163B40 +Name:Ethanol fuel compensation +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B58 +Name:Ethanol ignition multiplier +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163B78 +Name:Ethanol ignition compensation +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x163EA4 +Name:Ethanol ECT cranking compensation +TableSize:8x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x14201C +Name:Fuel low +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x143020 +Name:Fuel high +TableSize:20x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +############################# +ROMLocationTable:0x42DA6 +Name:Gear ratios +TableSize:6x1 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B724 +Name:CC gear ratio 1 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# +ROMLocationTable:0x3B730 +Name:CC gear ratio 2 +TableSize:0x20 +ValueMin:-32768 +ValueMax:32768 +IsNotDefined:true +IsReadOnly:true +IsUntested:true +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RYE-A590.txt b/bin/Debug/Definitions/Generated/37805-RYE-A590_Acura_MDX_2007.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RYE-A590.txt rename to bin/Debug/Definitions/Generated/37805-RYE-A590_Acura_MDX_2007.txt index 8ad7f8a..27f23cf 100644 --- a/bin/Debug/Definitions/Generated/37805-RYE-A590.txt +++ b/bin/Debug/Definitions/Generated/37805-RYE-A590_Acura_MDX_2007.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RYE-A590 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xAE6A -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x114DA -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114E2 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114EA -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114F2 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114FA -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x114FE -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1150E -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x11516 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xBBC6 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x12E16 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB8F4 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x114DA -ROMLocationY:0xB4DA -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x114EA -ROMLocationY:0xB4DA -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_MDX_2007_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RYE-A590 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xAE6A +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x114DA +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114E2 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114EA +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114F2 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114FA +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x114FE +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1150E +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x11516 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xBBC6 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x12E16 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB8F4 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x114DA +ROMLocationY:0xB4DA +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x114EA +ROMLocationY:0xB4DA +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RYE-A630.txt b/bin/Debug/Definitions/Generated/37805-RYE-A630_Acura_MDX_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RYE-A630.txt rename to bin/Debug/Definitions/Generated/37805-RYE-A630_Acura_MDX_2008_2009.txt index 87eb108..6482b19 100644 --- a/bin/Debug/Definitions/Generated/37805-RYE-A630.txt +++ b/bin/Debug/Definitions/Generated/37805-RYE-A630_Acura_MDX_2008_2009.txt @@ -1,132 +1,132 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RYE-A630 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xB0AA -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x1209A -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120A2 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120AA -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120B2 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120BA -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120BE -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120CE -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x120D6 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0xB5D2 -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x13136 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xBE44 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x1209A -ROMLocationY:0xBEAE -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x120AA -ROMLocationY:0xBEAE -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_MDX_2008_2009_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RYE-A630 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xB0AA +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x1209A +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120A2 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120AA +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120B2 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120BA +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120BE +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120CE +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x120D6 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0xB5D2 +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x13136 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xBE44 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x1209A +ROMLocationY:0xBEAE +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x120AA +ROMLocationY:0xBEAE +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RYE-A750.txt b/bin/Debug/Definitions/Generated/37805-RYE-A750_Acura_MDX_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RYE-A750.txt rename to bin/Debug/Definitions/Generated/37805-RYE-A750_Acura_MDX_2010_2011.txt index 5cfa628..ab82605 100644 --- a/bin/Debug/Definitions/Generated/37805-RYE-A750.txt +++ b/bin/Debug/Definitions/Generated/37805-RYE-A750_Acura_MDX_2010_2011.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RYE-A750 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD842 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103EC -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F4 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103FC -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10404 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1040C -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10420 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10428 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F62 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F4C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103DE -ROMLocationY:0xB62C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103EE -ROMLocationY:0xB62C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_MDX_2010_2011_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RYE-A750 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD842 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103EC +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F4 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103FC +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10404 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1040C +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10420 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10428 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F62 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F4C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103DE +ROMLocationY:0xB62C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103EE +ROMLocationY:0xB62C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RYE-A850.txt b/bin/Debug/Definitions/Generated/37805-RYE-A850_Acura_MDX_2010_2011.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RYE-A850.txt rename to bin/Debug/Definitions/Generated/37805-RYE-A850_Acura_MDX_2010_2011.txt index cf4a180..7759ad2 100644 --- a/bin/Debug/Definitions/Generated/37805-RYE-A850.txt +++ b/bin/Debug/Definitions/Generated/37805-RYE-A850_Acura_MDX_2010_2011.txt @@ -1,125 +1,125 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RYE-A850 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xD842 -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0x103EC -Name:Revlimiter -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103F4 -Name:--Revlimiter 1 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x103FC -Name:--Revlimiter 2 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10404 -Name:--Revlimiter 3 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x1040C -Name:--Revlimiter 4 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10410 -Name:--Revlimiter 5 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10420 -Name:--Revlimiter 6 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10428 -Name:--Revlimiter 7 -Unit2:RPM -TableSize:2x1 -ValueMax:10000 -ChangeAmount:50 -############################# -ROMLocationTable:0x10F62 -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0x10F4C -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0x103DE -ROMLocationY:0xB62C -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0x103EE -ROMLocationY:0xB62C -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Acura_MDX_2010_2011_Base_3.7L V6 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RYE-A850 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xD842 +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0x103EC +Name:Revlimiter +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103F4 +Name:--Revlimiter 1 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x103FC +Name:--Revlimiter 2 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10404 +Name:--Revlimiter 3 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x1040C +Name:--Revlimiter 4 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10410 +Name:--Revlimiter 5 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10420 +Name:--Revlimiter 6 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10428 +Name:--Revlimiter 7 +Unit2:RPM +TableSize:2x1 +ValueMax:10000 +ChangeAmount:50 +############################# +ROMLocationTable:0x10F62 +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0x10F4C +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0x103DE +ROMLocationY:0xB62C +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0x103EE +ROMLocationY:0xB62C +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RZA-A570.txt b/bin/Debug/Definitions/Generated/37805-RZA-A570_Honda_CR-V_2007_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RZA-A570.txt rename to bin/Debug/Definitions/Generated/37805-RZA-A570_Honda_CR-V_2007_2008_2009.txt index 88ce462..e929879 100644 --- a/bin/Debug/Definitions/Generated/37805-RZA-A570.txt +++ b/bin/Debug/Definitions/Generated/37805-RZA-A570_Honda_CR-V_2007_2008_2009.txt @@ -1,76 +1,76 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RZA-A570 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xADCE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xBF5A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x1237E -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB858 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xF768 -ROMLocationY:0x10940 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xF778 -ROMLocationY:0x10940 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_CR-V_2007_2008_2009_EX, EX-L, LX_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RZA-A570 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xADCE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xBF5A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x1237E +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB858 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xF768 +ROMLocationY:0x10940 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF778 +ROMLocationY:0x10940 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/Definitions/Generated/37805-RZA-A770.txt b/bin/Debug/Definitions/Generated/37805-RZA-A770_Honda_CR-V_2007_2008_2009.txt similarity index 93% rename from bin/Debug/Definitions/Generated/37805-RZA-A770.txt rename to bin/Debug/Definitions/Generated/37805-RZA-A770_Honda_CR-V_2007_2008_2009.txt index 17286c4..cfe7758 100644 --- a/bin/Debug/Definitions/Generated/37805-RZA-A770.txt +++ b/bin/Debug/Definitions/Generated/37805-RZA-A770_Honda_CR-V_2007_2008_2009.txt @@ -1,76 +1,76 @@ -####################################################################### -####################################################################### -# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG -####################################################################### -####################################################################### -# Supported ECU: -####################################################################### -37805-RZA-A770 -####################################################################### -# Checksum Address Location: -####################################################################### -ChecksumAddress:0x8400 -####################################################################### -####################################################################### -####################################################################### -# ROM Parameters Definitions: -####################################################################### -ROMLocationTable:0xADCE -Name:VTEC Engagement -Unit2:RPM -TableSize:4x1 -ValueMin:-10000 -ValueMax:30000 -ChangeAmount:10 -Headers:Enable Low,Disable Low,Enable High,Disable High -############################# -ROMLocationTable:0xBF5A -Name:Speedlimiter -Unit2:KPH -TableSize:1x1 -ValueMax:255 -# MathTable:X/1.609 -############################# -ROMLocationTable:0x1237E -Name:Injector Voltage Compensation -Unit1:Volts -Unit2:ms -TableSize:5x1 -MathTable:X*0.002 -FormatTable:0.00 -ValueMin:-1000 -ValueMax:3000 -Headers:6.00,8.00,12.00,14.00,16.00 -############################# -ROMLocationTable:0xB858 -Name:Minimum IPW -Unit1:Min IPW -TableSize:1x1 -ValueMin:-6 -ValueMax:5 -ChangeAmount:0.001 -MathTable:X*0.002 -FormatTable:0.000 -############################# -ROMLocationTable:0xF768 -ROMLocationY:0x10940 -Name:Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# -ROMLocationTable:0xF778 -ROMLocationY:0x10940 -Name:Post Start Idle Speed -Unit1:Coolant Temp -Unit2:RPM -TableSize:8x1 -ValueMin:-1000 -ValueMax:4000 -ChangeAmount:50 -MathY:X/10 -############################# +####################################################################### +# Honda_CR-V_2007_2008_2009_EX, EX-L, LX_2.4L L4 - Gas +# THIS FILE AS BEEN GENERATED AUTOMATICLY, ROM LOCATIONS CAN BE WRONG +####################################################################### +####################################################################### +# Supported ECU: +####################################################################### +37805-RZA-A770 +####################################################################### +# Checksum Address Location: +####################################################################### +ChecksumAddress:0x8400 +####################################################################### +####################################################################### +####################################################################### +# ROM Parameters Definitions: +####################################################################### +ROMLocationTable:0xADCE +Name:VTEC Engagement +Unit2:RPM +TableSize:4x1 +ValueMin:-10000 +ValueMax:30000 +ChangeAmount:10 +Headers:Enable Low,Disable Low,Enable High,Disable High +############################# +ROMLocationTable:0xBF5A +Name:Speedlimiter +Unit2:KPH +TableSize:1x1 +ValueMax:255 +# MathTable:X/1.609 +############################# +ROMLocationTable:0x1237E +Name:Injector Voltage Compensation +Unit1:Volts +Unit2:ms +TableSize:5x1 +MathTable:X*0.002 +FormatTable:0.00 +ValueMin:-1000 +ValueMax:3000 +Headers:6.00,8.00,12.00,14.00,16.00 +############################# +ROMLocationTable:0xB858 +Name:Minimum IPW +Unit1:Min IPW +TableSize:1x1 +ValueMin:-6 +ValueMax:5 +ChangeAmount:0.001 +MathTable:X*0.002 +FormatTable:0.000 +############################# +ROMLocationTable:0xF768 +ROMLocationY:0x10940 +Name:Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# +ROMLocationTable:0xF778 +ROMLocationY:0x10940 +Name:Post Start Idle Speed +Unit1:Coolant Temp +Unit2:RPM +TableSize:8x1 +ValueMin:-1000 +ValueMax:4000 +ChangeAmount:50 +MathY:X/10 +############################# diff --git a/bin/Debug/FlashToolTest.exe b/bin/Debug/FlashToolTest.exe index caa1af7..bacc854 100644 Binary files a/bin/Debug/FlashToolTest.exe and b/bin/Debug/FlashToolTest.exe differ diff --git a/bin/Debug/FlashToolTest.pdb b/bin/Debug/FlashToolTest.pdb index e32f0d4..25aa6aa 100644 Binary files a/bin/Debug/FlashToolTest.pdb and b/bin/Debug/FlashToolTest.pdb differ diff --git a/bin/Debug/FlashToolTest.zip b/bin/Debug/FlashToolTest.zip index fbcdd88..cc72936 100644 Binary files a/bin/Debug/FlashToolTest.zip and b/bin/Debug/FlashToolTest.zip differ diff --git a/bin/Debug/HondaAcuraCodesList.txt b/bin/Debug/HondaAcuraCodesList.txt new file mode 100644 index 0000000..91df181 --- /dev/null +++ b/bin/Debug/HondaAcuraCodesList.txt @@ -0,0 +1,250 @@ +37805-51M-A030_Honda_HR-V_2016_LX_1.8L L4 - Gas +37805-51M-A130_Honda_HR-V_2016_EX_1.8L L4 - Gas +37805-51M-A530_Honda_HR-V_2016_LX_1.8L L4 - Gas +37805-51M-A630_Honda_HR-V_2016_EX, EX-L_1.8L L4 - Gas +37805-51M-A730_Honda_HR-V_2016_LX_1.8L L4 - Gas +37805-51M-A830_Honda_HR-V_2016_EX, EX-L_1.8L L4 - Gas +37805-55A-3050_Honda_Accord_2015_LX, LX-S, Sport_2.4L L4 - Gas +37805-5A0-A140_Honda_Accord_2015_EX_2.4L L4 - Gas +37805-5A0-F530_Honda_Accord_2013_LX, LX-S, Sport_2.4L L4 - Gas +37805-5A2-A160_Honda_Accord_2013_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-5A2-B520_Honda_Accord_2014_LX_2.4L L4 - Gas +37805-5A2-B620_Honda_Accord_2014_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-5A2-B720_Honda_Accord_2014_LX-S, Sport_2.4L L4 - Gas +37805-5A2-B820_Honda_Accord_2014_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-5A2-X720_Honda_Accord_2014_LX_2.4L L4 - Gas +37805-5A3-L220_Honda_Accord_2014_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-5A3-L320_Honda_Accord_2014_LX-S, Sport_2.4L L4 - Gas +37805-5A3-L420_Honda_Accord_2014_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-5AM-A050_Honda_Accord_2015_EX-L_3.5L V6 - Gas +37805-5G1-L240_Honda_Accord_2015_Touring_3.5L V6 - Gas +37805-5G1-L340_Honda_Accord_2013_EX-L_3.5L V6 - Gas +37805-5G1-L640_Honda_Accord_2013_Touring_3.5L V6 - Gas +37805-5G1-L740_Honda_Accord_2013_EX-L_3.5L V6 - Gas +37805-5G3-W540_Honda_Crosstour_2012_EX, EX-L_2.4L L4 - Gas +37805-5J2-A560_Acura_RDX_2016_Base_3.5L V6 - Gas +37805-5ME-A620_Acura_RDX_2016_Base_3.5L V6 - Gas +37805-5ME-A720_Acura_RDX_2016_Base_3.5L V6 - Gas +37805-5ME-A820_Acura_RDX_2016_Base_3.5L V6 - Gas +37805-5ME-K520_Honda_Ridgeline_2017_RT, RTL, RTL-T, RTS, Sport_3.5L V6 - Gas +37805-5MJ-A540_Honda_Ridgeline_2017_RT, RTL, RTL-T, RTS, Sport_3.5L V6 - Gas +37805-5MJ-A740_Honda_Ridgeline_2017_Black Edition, RTL-E_3.5L V6 - Gas +37805-5MJ-K540_Honda_Fit_2015_2016_EX, EX-L_1.5L L4 - Gas +37805-5R7-A660_Honda_Fit_2015_2016_EX, EX-L_1.5L L4 - Gas +37805-5R7-C030_Honda_Fit_2015_2016_LX_1.5L L4 - Gas +37805-5R7-C570_Honda_Fit_2015_2016_LX_1.5L L4 - Gas +37805-5R7-C760_Honda_Clarity_2018_2019_Plug-In Hybrid, Plug-In Hybrid Touring_1.5L L4 - Electric\/Gas +37805-5X6-U850_Honda_Insight_2002_2003_Base_1.0L L3 - Electric\/Gas +37805-PHM-4060_Honda_Insight_2004_Base_1.0L L3 - Electric\/Gas +37805-PHM-4070_Honda_Insight_2005_Base_1.0L L3 - Electric\/Gas +37805-PHM-4080_Honda_Insight_2006_Base_1.0L L3 - Electric\/Gas +37805-PHM-A530_Honda_Insight_2001_2002_2003_Base_1.0L L3 - Electric\/Gas +37805-PLM-3150_Honda_Civic_2001_DX, LX_1.7L L4 - Gas +37805-PLM-3360_Honda_Civic_2001_HX_1.7L L4 - Gas +37805-PMP-3060_Honda_Civic_2003_HX_1.7L L4 - Gas +37805-PMP-4170_Honda_Civic_2002_HX_1.7L L4 - Gas +37805-PMP-4190_Honda_Civic_2002_HX_1.7L L4 - Gas +37805-PMP-A130_Honda_Civic_2003_GX_1.7L L4 - CNG +37805-PMS-A680_Honda_Civic_2004_2005_GX_1.7L L4 - CNG +37805-PND-3050_Acura_RSX_2006_Base_2.0L L4 - Gas +37805-PND-4160_Acura_RSX_2005_Base_2.0L L4 - Gas +37805-PND-4250_Acura_RSX_2005_Base_2.0L L4 - Gas +37805-PND-A090_Acura_RSX_2004_Base_2.0L L4 - Gas +37805-PND-A590_Acura_RSX_2004_Base_2.0L L4 - Gas +37805-PND-A660_Acura_RSX_2006_Base_2.0L L4 - Gas +37805-PNF-3050_Honda_CR-V_2002_2003_EX, LX_2.4L L4 - Gas +37805-PPA-3060_Honda_CR-V_2002_2003_EX, LX_2.4L L4 - Gas +37805-PPA-3070_Honda_CR-V_2006_EX_2.4L L4 - Gas +37805-PPA-4080_Honda_CR-V_2006_EX, LX, SE_2.4L L4 - Gas +37805-PPA-4090_Honda_CR-V_2005_EX, LX, SE_2.4L L4 - Gas +37805-PPA-4270_Honda_CR-V_2005_LX_2.4L L4 - Gas +37805-PPA-4350_Honda_CR-V_2005_2006_EX_2.4L L4 - Gas +37805-PPA-K120_Acura_RSX_2002_2003_Type-S_2.0L L4 - Gas +37805-PRB-3060_Acura_RSX_2006_Type-S_2.0L L4 - Gas +37805-PRB-4250_Acura_RSX_2004_Type-S_2.0L L4 - Gas +37805-PVJ-3050_Honda_Pilot_2005_EX, LX_3.5L V6 - Gas +37805-PVJ-3060_Honda_Pilot_2005_EX-L_3.5L V6 - Gas +37805-PVJ-A820_Honda_Pilot_2006_2007_EX, EX-L, LX_3.5L V6 - Gas +37805-PVJ-X530_Honda_Civic_2003_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-3060_Honda_Civic_2003_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-3270_Honda_Civic_2004_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-4070_Honda_Civic_2004_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-4250_Honda_Civic_2004_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-4290_Honda_Civic_2004_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-5250_Honda_Civic_2005_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-A660_Honda_Civic_2005_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-C660_Honda_Civic_2005_Hybrid_1.3L L4 - Electric\/Gas +37805-PZA-L640_Honda_Civic_2005_Hybrid_1.3L L4 - Electric\/Gas +37805-PZD-3050_Honda_Element_2003_2004_DX, EX, LX_DX, EX_2.4L L4 - Gas +37805-PZD-3060_Honda_Element_2003_2004_DX, EX, LX_DX, EX_2.4L L4 - Gas +37805-PZD-3070_Honda_Element_2003_2004_DX, EX, LX_DX, EX_2.4L L4 - Gas +37805-PZD-3090_Honda_Element_2007_2008_EX, LX, SC_2.4L L4 - Gas +37805-PZD-4050_Honda_Element_2007_2008_EX, LX, SC_2.4L L4 - Gas +37805-PZD-4170_Honda_Element_2010_2011_EX, LX_EX, LX, SC_2.4L L4 - Gas +37805-PZD-A480_Honda_Element_2010_2011_EX, LX_2.4L L4 - Gas +37805-PZD-A590_Honda_Element_2006_EX, LX_2.4L L4 - Gas +37805-PZD-A690_Honda_Element_2006_EX, LX_2.4L L4 - Gas +37805-PZD-A720_Honda_Element_2005_EX, LX_2.4L L4 - Gas +37805-PZD-A820_Honda_Element_2005_EX, LX_2.4L L4 - Gas +37805-PZX-A080_Honda_S2000_2006_2007_2008_Base, CR_Base_2.2L L4 - Gas +37805-R0A-9040_Honda_Civic_2014_2015_LX, SE_LX_1.8L L4 - Gas +37805-R1A-A310_Honda_Civic_2013_HF_1.8L L4 - Gas +37805-R1A-A710_Honda_Civic_2013_HF_1.8L L4 - Gas +37805-R1Z-3050_Honda_Civic_2013_Natural Gas_1.8L L4 - CNG +37805-R1Z-A620_Honda_Civic_2014_2015_Natural Gas_1.8L L4 - CNG +37805-R2A-M020_Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +37805-R40-A240_Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +37805-R40-A340_Honda_Accord_2012_LX_2.4L L4 - Gas +37805-R40-A590_Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +37805-R40-A730_Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +37805-R40-A830_Honda_Accord_2011_2012_LX, LX-P, SE_LX_2.4L L4 - Gas +37805-R40-K030_Honda_Accord_2008_2009_LX, LX-P_2.4L L4 - Gas +37805-R41-L630_Honda_Accord_2010_LX, LX-P_2.4L L4 - Gas +37805-R41-L730_Honda_Accord_2012_LX, LX-P, SE_2.4L L4 - Gas +37805-R42-A090_Honda_Accord_2008_2009_EX, EX-L, LX-S_EX, EX-L, LX_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R42-A140_Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R42-A240_Honda_Accord_2012_EX, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R42-A590_Honda_Accord_2008_2009_EX, EX-L, LX-S_EX, EX-L, LX_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R42-A630_Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R42-A730_Honda_Accord_2012_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R43-L590_Honda_Accord_2008_2009_EX, EX-L, LX-S_EX, EX-L, LX_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R43-L630_Honda_Accord_2010_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R43-L730_Honda_Accord_2012_EX, EX-L, LX-S_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R44-X630_Acura_ILX_2016_2017_Base_2.4L L4 - Gas +37805-R4H-A630_Honda_Crosstour_2013_2014_2015_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R53-A750_Honda_Crosstour_2013_2014_2015_EX-L_2.4L L4 - Gas, 3.5L V6 - Gas +37805-R53-K530_Honda_Accord_2009_EX, EX-L_3.5L V6 - Gas +37805-R70-A750_Honda_Accord_2010_EX, EX-L_3.5L V6 - Gas +37805-R70-A830_Honda_Accord_2011_2012_EX-L_3.5L V6 - Gas +37805-R70-K580_Honda_Accord_2008_2009_EX, EX-L_3.5L V6 - Gas +37805-R71-L730_Honda_Accord_2008_2009_EX-L_3.5L V6 - Gas +37805-R72-A220_Honda_Accord_2010_EX-L_3.5L V6 - Gas +37805-R72-A320_Honda_Accord_2011_2012_EX-L_3.5L V6 - Gas +37805-R72-X070_Honda_Accord_2011_2012_EX, EX-L_3.5L V6 - Gas +37805-R84-K520_Acura_RDX_2013_2014_2015_Base_3.5L V6 - Gas +37805-R8A-A660_Acura_RDX_2013_2014_2015_Base_3.5L V6 - Gas +37805-R8A-X540_Acura_ILX_2013_2014_Base_2.0L L4 - Gas, 2.4L L4 - Gas_2.0L L4 - Gas +37805-R9A-X540_Acura_ILX_2013_Hybrid_1.5L L4 - Electric\/Gas +37805-R9C-L840_Acura_ILX_2013_Hybrid_1.5L L4 - Electric\/Gas +37805-R9P-A580_Acura_RLX_2015_Base_3.5L V6 - Gas +37805-R9P-A720_Acura_RLX_2016_Base_3.5L V6 - Gas +37805-R9P-A820_Acura_RLX_2016_Base_3.5L V6 - Gas +37805-R9P-K530_Honda_Accord_2004_LX_2.4L L4 - Gas, 3.0L V6 - Gas +37805-RAA-3150_Honda_Accord_2003_2004_DX, EX, LX_2.4L L4 - Gas, 3.0L V6 - Gas +37805-RAA-3170_Honda_Accord_2003_2004_DX_2.4L L4 - Gas +37805-RAA-4050_Honda_Accord_2005_EX, LX, SE_2.4L L4 - Gas, 3.0L V6 - Gas +37805-RAD-3350_Honda_Accord_2003_2004_EX, LX_2.4L L4 - Gas, 3.0L V6 - Gas +37805-RAD-A110_Honda_Accord_2006_2007_EX, EX-L, LX, Special Edition_EX, LX, LX Special Edition_2.4L L4 - Gas, 3.0L V6 - Gas +37805-RAD-A930_Acura_TSX_2006_Base_2.4L L4 - Gas +37805-RBB-4050_Acura_TSX_2004_Base_2.4L L4 - Gas +37805-RBB-4060_Acura_TSX_2004_Base_2.4L L4 - Gas +37805-RBB-4070_Acura_TSX_2005_Base_2.4L L4 - Gas +37805-RBB-A620_Acura_TSX_2006_Base_2.4L L4 - Gas +37805-RBJ-3090_Honda_Insight_2010_EX_1.3L L4 - Electric\/Gas +37805-RBJ-4050_Honda_Insight_2010_EX_1.3L L4 - Electric\/Gas +37805-RBJ-A030_Honda_Insight_2012_2013_2014_Base, LX_1.3L L4 - Electric\/Gas +37805-RBJ-A120_Honda_Insight_2012_2013_2014_EX_1.3L L4 - Electric\/Gas +37805-RBJ-A430_Honda_Insight_2010_LX_1.3L L4 - Electric\/Gas +37805-RBJ-L040_Honda_Insight_2012_2013_2014_Base, LX_1.3L L4 - Electric\/Gas +37805-RBJ-L130_Honda_Insight_2012_2013_2014_EX_1.3L L4 - Electric\/Gas +37805-RBJ-L440_Honda_Insight_2010_LX_1.3L L4 - Electric\/Gas +37805-RBJ-P130_Honda_Crosstour_AccordCrosstour_2011_2012_EX-L_2.4L L4 - Gas, 3.5L V6 - Gas_3.5L V6 - Gas +37805-RBR-A730_Honda_Crosstour_AccordCrosstour_2011_2012_EX, EX-L_2.4L L4 - Gas, 3.5L V6 - Gas_3.5L V6 - Gas +37805-RBR-X120_Honda_Accord_2003_EX_3.0L V6 - Gas +37805-RCA-A250_Honda_Accord_2007_EX_3.0L V6 - Gas +37805-RCA-A470_Honda_Accord_2005_EX_3.0L V6 - Gas +37805-RCA-A750_Honda_Accord_2006_2007_EX_3.0L V6 - Gas +37805-RCA-L470_Honda_Accord_2005_EX_3.0L V6 - Gas +37805-RCA-L750_Honda_Accord_2005_EX, LX, SE_3.0L V6 - Gas +37805-RCA-M550_Honda_Accord_2006_2007_Hybrid_3.0L V6 - Electric\/Gas +37805-RD1-X020_Acura_TL_2004_Base_3.2L V6 - Gas +37805-RDA-A120_Acura_TL_2005_Base_3.2L V6 - Gas +37805-RDA-A240_Acura_TL_2006_Base_3.2L V6 - Gas +37805-RDA-A570_Acura_TL_2004_Base_3.2L V6 - Gas +37805-RDA-A620_Acura_TL_2005_Base_3.2L V6 - Gas +37805-RDA-A730_Acura_TL_2006_Base_3.2L V6 - Gas +37805-RDA-A850_Acura_TL_2007_Type-S_3.5L V6 - Gas +37805-RDB-A120_Acura_TL_2008_Type-S_3.5L V6 - Gas +37805-RDB-A560_Acura_TLX_2015_2016_Base_2.4L L4 - Gas +37805-RDF-H550_Honda_CR-V_2011_EX, EX-L, LX, SE_2.4L L4 - Gas +37805-RGL-A020_Honda_Odyssey_2009_2010_EX, LX_3.5L V6 - Gas +37805-RGL-A570_Honda_Odyssey_2005_EX, LX_3.5L V6 - Gas +37805-RGL-A730_Honda_Odyssey_2006_EX, LX_3.5L V6 - Gas +37805-RGL-A840_Honda_Odyssey_2007_EX, LX_3.5L V6 - Gas +37805-RGL-A930_Honda_Odyssey_2008_EX, LX_3.5L V6 - Gas +37805-RGL-K720_Honda_Odyssey_2005_EX-L, Touring_3.5L V6 - Gas +37805-RGM-A750_Honda_Odyssey_2006_EX-L, Touring_3.5L V6 - Gas +37805-RGM-A840_Honda_Odyssey_2007_EX-L, Touring_3.5L V6 - Gas +37805-RGW-A060_Honda_Odyssey_2009_2010_EX-L, Touring_3.5L V6 - Gas +37805-RGW-A960_Honda_Odyssey_2008_EX-L, Touring_3.5L V6 - Gas +37805-RJA-A630_Acura_RL_2006_2007_Base_3.5L V6 - Gas +37805-RJA-A840_Acura_RL_2005_Base_3.5L V6 - Gas +37805-RJA-A930_Acura_RL_2006_2007_Base_3.5L V6 - Gas +37805-RJA-X550_Honda_Ridgeline_2006_2007_RT, RTL, RTS, RTX_RT, RTL, RTS_3.5L V6 - Gas +37805-RJE-A840_Honda_Ridgeline_2009_2010_2011_RT, RTL, RTS_3.5L V6 - Gas +37805-RJE-A960_Acura_TL_2009_Base_3.5L V6 - Gas +37805-RK1-A660_Acura_TL_2010_2011_Base_3.5L V6 - Gas +37805-RK1-A780_Acura_TL_2010_2011_SH-AWD_3.7L V6 - Gas +37805-RK2-A130_Acura_TL_2012_2013_2014_SH-AWD_3.7L V6 - Gas +37805-RK2-A210_Acura_TL_2010_2011_SH-AWD_3.7L V6 - Gas +37805-RK2-A960_Acura_RL_2009_2010_Base_3.7L V6 - Gas +37805-RKG-A720_Acura_RL_2011_2012_Base_3.7L V6 - Gas +37805-RKG-U520_Acura_TSX_2011_2012_2013_2014_Special Edition_Base_2.4L L4 - Gas +37805-RL5-A120_Acura_TSX_2009_2010_Base_2.4L L4 - Gas +37805-RL5-A560_Acura_TSX_2011_2012_2013_2014_Base, Special Edition_Base_2.4L L4 - Gas +37805-RL5-A710_Acura_TSX_2009_2010_Base_2.4L L4 - Gas +37805-RL5-X020_Acura_TSX_2010_V6_3.5L V6 - Gas +37805-RL8-A730_Acura_TSX_2011_2012_2013_2014_V6_3.5L V6 - Gas +37805-RL8-X520_Honda_Pilot_2016_EX, EX-L, LX_3.5L V6 - Gas +37805-RLV-A220_Honda_Pilot_2016_EX, EX-L, LX_3.5L V6 - Gas +37805-RLV-A330_Honda_Pilot_2016_EX, EX-L_3.5L V6 - Gas +37805-RLV-A430_Honda_Pilot_2016_EX, EX-L_3.5L V6 - Gas +37805-RME-A180_Honda_Fit_2008_Base, Sport_1.5L L4 - Gas +37805-RME-A220_Honda_Fit_2007_Base, Sport_1.5L L4 - Gas +37805-RME-A520_Honda_Fit_2007_Base_1.5L L4 - Gas +37805-RME-A690_Honda_Fit_2008_Base_1.5L L4 - Gas +37805-RME-A720_Honda_Fit_2007_Sport_1.5L L4 - Gas +37805-RME-A890_Honda_Fit_2008_Sport_1.5L L4 - Gas +37805-RME-C220_Honda_Civic_2009_2010_2011_Hybrid, Hybrid-L_1.3L L4 - Electric\/Gas +37805-RMX-A630_Honda_Civic_2006_Hybrid_1.3L L4 - Electric\/Gas +37805-RMX-X050_Honda_Pilot_2009_2010_EX, EX-L, LX, Touring_3.5L V6 - Gas +37805-RN0-A630_Honda_Pilot_2011_EX, EX-L, LX, Touring_3.5L V6 - Gas +37805-RN0-A770_Honda_Pilot_2009_2010_EX, EX-L, LX, Touring_3.5L V6 - Gas +37805-RN0-A830_Honda_Pilot_2011_EX, EX-L, LX, Touring_3.5L V6 - Gas +37805-RN0-A970_Honda_Civic_2006_DX, EX, LX_1.8L L4 - Gas +37805-RNA-3470_Honda_Civic_2007_2008_DX, EX, LX_1.8L L4 - Gas +37805-RNA-A740_Honda_Civic_2009_2010_2011_DX, EX, LX, LX-S_1.8L L4 - Gas +37805-RNA-A840_Honda_Civic_2009_2010_2011_EX-L_1.8L L4 - Gas +37805-RNA-C130_Honda_Civic_2006_2007_2008_2009_2010_2011_GX_1.8L L4 - CNG +37805-RNF-U050_Honda_Fit_2009_Base, Sport_1.5L L4 - Gas +37805-RP3-3060_Honda_Fit_2009_Base_1.5L L4 - Gas +37805-RP3-4050_Honda_Fit_2009_2010_Sport_1.5L L4 - Gas +37805-RP3-A170_Honda_Fit_2012_2013_Base, Sport_1.5L L4 - Gas +37805-RP3-A770_Honda_Fit_2012_2013_Sport_1.5L L4 - Gas +37805-RP6-A560_Acura_ZDX_2010_2011_Base_3.7L V6 - Gas +37805-RP6-A640_Acura_ZDX_2012_Base_3.7L V6 - Gas +37805-RP6-A760_Acura_ZDX_2010_2011_Base_3.7L V6 - Gas +37805-RP6-A840_Acura_ZDX_2012_Base_3.7L V6 - Gas +37805-RP6-X560_Honda_Civic_2007_2008_2009_2010_2011_Si_2.0L L4 - Gas +37805-RRB-K020_Honda_CR-Z_2011_Base, EX_1.5L L4 - Electric\/Gas +37805-RTW-A050_Honda_CR-Z_2011_Base, EX_1.5L L4 - Electric\/Gas +37805-RTW-P020_Honda_Odyssey_2011_2013_EX, EX-L, LX_3.5L V6 - Gas +37805-RV0-A650_Honda_Odyssey_2014_2015_2016_EX, EX-L, LX, SE, Touring, Touring Elite_EX, EX-L, LX, Touring, Touring Elite_3.5L V6 - Gas +37805-RV0-A780_Honda_Odyssey_2011_2013_Touring, Touring Elite_3.5L V6 - Gas +37805-RV0-X580_Honda_Civic_2012_Hybrid, Hybrid-L_1.5L L4 - Electric\/Gas +37805-RW0-A780_Honda_Civic_2013_Hybrid, Hybrid-L_1.5L L4 - Electric\/Gas +37805-RW0-L740_Honda_Civic_2012_Hybrid, Hybrid-L_1.5L L4 - Electric\/Gas +37805-RW0-L760_Honda_Civic_2013_Hybrid, Hybrid-L_1.5L L4 - Electric\/Gas +37805-RW0-X760_Acura_RDX_2007_2008_2009_Base_2.3L L4 - Gas +37805-RWC-A620_Acura_RDX_2010_2011_SH-AWD_2.3L L4 - Gas +37805-RWC-A720_Honda_Civic_2012_Si_2.4L L4 - Gas +37805-RX0-A140_Honda_Civic_2013_Si_2.4L L4 - Gas +37805-RX0-A220_Honda_Civic_2014_2015_Si_2.4L L4 - Gas +37805-RX0-K060_Acura_MDX_2011_Base_3.7L V6 - Gas +37805-RYE-A330_Acura_MDX_2011_Base_3.7L V6 - Gas +37805-RYE-A590_Acura_MDX_2007_Base_3.7L V6 - Gas +37805-RYE-A630_Acura_MDX_2008_2009_Base_3.7L V6 - Gas +37805-RYE-A750_Acura_MDX_2010_2011_Base_3.7L V6 - Gas +37805-RYE-A850_Acura_MDX_2010_2011_Base_3.7L V6 - Gas +37805-RYE-X580_Honda_CR-V_2007_2008_2009_EX, EX-L, LX_2.4L L4 - Gas +37805-RZA-A770_Honda_CR-V_2007_2008_2009_EX, EX-L, LX_2.4L L4 - Gas \ No newline at end of file diff --git a/bin/Debug/LastFileOpened.txt b/bin/Debug/LastFileOpened.txt deleted file mode 100644 index 6517e1b..0000000 --- a/bin/Debug/LastFileOpened.txt +++ /dev/null @@ -1 +0,0 @@ -C:\Users\boule\Desktop\Kserie\roms\bin\37805-RRB-A140.bin \ No newline at end of file diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache index f36b903..083a2b1 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/obj/Debug/FlashToolTest.Properties.Resources.resources b/obj/Debug/FlashToolTest.Properties.Resources.resources index e377b77..b0595ab 100644 Binary files a/obj/Debug/FlashToolTest.Properties.Resources.resources and b/obj/Debug/FlashToolTest.Properties.Resources.resources differ diff --git a/obj/Debug/FlashToolTest.csproj.CopyComplete b/obj/Debug/FlashToolTest.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/FlashToolTest.csproj.FileListAbsolute.txt b/obj/Debug/FlashToolTest.csproj.FileListAbsolute.txt index e6331c1..734e9e0 100644 --- a/obj/Debug/FlashToolTest.csproj.FileListAbsolute.txt +++ b/obj/Debug/FlashToolTest.csproj.FileListAbsolute.txt @@ -20,3 +20,5 @@ C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\obj\Debug\Fla C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\obj\Debug\GForm_Credits.resources C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\obj\Debug\Editortable.resources C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\bin\Debug\BootLoaderSumBytesList.txt +C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\obj\Debug\GForm_ExtractSize.resources +C:\Users\boule\Documents\Visual Studio 2019\Projects\FlashToolTest\obj\Debug\GForm_SeveralDef.resources diff --git a/obj/Debug/FlashToolTest.csproj.GenerateResource.cache b/obj/Debug/FlashToolTest.csproj.GenerateResource.cache index f39aae0..0dd02e1 100644 Binary files a/obj/Debug/FlashToolTest.csproj.GenerateResource.cache and b/obj/Debug/FlashToolTest.csproj.GenerateResource.cache differ diff --git a/obj/Debug/FlashToolTest.csprojAssemblyReference.cache b/obj/Debug/FlashToolTest.csprojAssemblyReference.cache index 827a277..5476e13 100644 Binary files a/obj/Debug/FlashToolTest.csprojAssemblyReference.cache and b/obj/Debug/FlashToolTest.csprojAssemblyReference.cache differ diff --git a/obj/Debug/FlashToolTest.exe b/obj/Debug/FlashToolTest.exe index b226c51..bacc854 100644 Binary files a/obj/Debug/FlashToolTest.exe and b/obj/Debug/FlashToolTest.exe differ diff --git a/obj/Debug/FlashToolTest.pdb b/obj/Debug/FlashToolTest.pdb index defa797..25aa6aa 100644 Binary files a/obj/Debug/FlashToolTest.pdb and b/obj/Debug/FlashToolTest.pdb differ diff --git a/obj/Debug/GForm_ExtractSize.resources b/obj/Debug/GForm_ExtractSize.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/Debug/GForm_ExtractSize.resources differ diff --git a/obj/Debug/GForm_SeveralDef.resources b/obj/Debug/GForm_SeveralDef.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/Debug/GForm_SeveralDef.resources differ