td-d wrote:
Look at the table you've defined, and the table names you're using in RR:
<table name="Timing Comp Minimum Load (Per Cylinder)" storageaddress="CE118" />
<table name="Timing Comp Maximum RPM (Per Cylinder)" storageaddress="CE114" />
<table name="Timing Comp Minimum Coolant Temp (Per Cylinder)" storageaddress="CE11C" />
I'll give you a hint - you're missing a couple of letters

Tables names must be
identical to those in the 32 bit base section.
The Tables you have mentioned the storage address is completely different than the (Per Gear Tables) which is not in the Definition file. I shared Definition file without:
Timing_Compensation_Per_Gear_Activation(RPM 000CE0B4
Timing_Compensation_Per_Gear_Activation(Load 000CE0BC
Timing_Compensation_Per_Gear_Multiplier 000CE0C4
I have tried to use the format mentioned on the previous post and below but it is not showing as you can see the names are identical:
Code:
<table name="Timing Compensation Per Gear Activation (Load)" storageaddress="CE0BC" />
<table type="2D" name="Timing Compensation Per Gear Activation (Load)" category="Ignition Timing - Compensation" storagetype="float" endian="little" sizey="1" userlevel="5">
<scaling units="Engine Load (g/rev)" expression="x" to_byte="x" format="0.00" fineincrement=".01" coarseincrement=".1" />
<table type="Static Y Axis" name="Timing Compensation Per Gear Activation Load" sizey="1">
<data>Enable Above</data>
<data>Disable Below</data>
<description>This is per-gear timing compensation activation threshold by load (g/rev).</description>
</table>
One more thing I have noticed that the definition file has 2 section one starts with:
Code:
<roms>
<rom base="32BITBASE">
<romid>
<xmlid>AZ1G700K</xmlid>
<internalidaddress>2004</internalidaddress>
<internalidstring>AZ1G700K</internalidstring>
<ecuid>7472594007</ecuid>
<year>12</year>
<market>EDM</market>
<make>Subaru</make>
<model>Impreza</model>
<submodel>STi</submodel>
<transmission>MT</transmission>
<memmodel>SH7058</memmodel>
<flashmethod>subarucan</flashmethod>
<filesize>1024kb</filesize>
</romid>
Which include table names and storage addresses which is correct for my car.
The other one is:
Code:
<rom>
<romid>
<xmlid>32BITBASE</xmlid>
<market>USDM</market>
<make>Subaru</make>
<model>Impreza</model>
<submodel>STi</submodel>
<transmission>MT</transmission>
<filesize>512kb</filesize>
<memmodel>SH7055</memmodel>
<flashmethod>sti04</flashmethod>
</romid>
Which contains the table definitions but car description is not correct and file size is different. what do you think?