View Single Post
Old 06-25-2017, 12:33 AM   #767
Swivel
Member
 
Join Date: Oct 2014
Drives: 2015 Scion FR-S ZN6
Location: Dallas, TX
Posts: 17
Thanks: 0
Thanked 3 Times in 3 Posts
Mentioned: 0 Post(s)
Unfortunately it did not! However, I got a little curious and, assuming the tables are the same size for each MAP, I used some basic 16-bit math to calculate the location of the table in my D00C def.

Here's what I came up with:

Code:
    <table name="Base Timing Idle (In-Gear)(Above Speed Threshold)" storageaddress="118EFC">
      <table type="X Axis" storageaddress="118ECC" />
      <table type="Y Axis" storageaddress="118EF4" />
    </table>
Which produces the following:



Quote:
Originally Posted by aagun View Post
HERE YOU ARE
ZA1JF00C i dont know if i work or not
Code:

<table name="Base Timing Idle (In-Gear)(Above Speed Threshold)" storageaddress="118EFC">
<table type="X Axis" storageaddress="118ECC" />
<table type="Y Axis" storageaddress="118EF4" />

Code:

<table type="3D" name="Base Timing Idle (In-Gear)(Above Speed Threshold)" category="Ignition Timing - Advance" storagetype="uint8" endian="big" sizex="10" sizey="2" userlevel="4">
<scaling units="Base Ignition Timing (degrees BTDC)" expression="(x*.3515625)-20" to_byte="(x+20)/.3515625" format="0.00" fineincrement=".2" coarseincrement="1" />
<table type="X Axis" name="Engine Speed" storagetype="float" endian="little" logparam="P8">
<scaling units="RPM" expression="x" to_byte="x" format="#" fineincrement="50" coarseincrement="100" />
</table>
<table type="Y Axis" name="Coolant Temperature" storagetype="float" endian="little" logparam="P2">
<scaling units="Degrees F" expression="x" to_byte="x" format="#" fineincrement="1" coarseincrement="5" />
</table>
<description>This is the base timing in idle mode when vehicle speed is greater than the 'Base Timing Idle Vehicle Speed Threshold' and transmission is not in neutral.</description>

Last edited by Swivel; 06-25-2017 at 12:51 AM.
Swivel is offline   Reply With Quote