forked from kmalinich/BMW-XDFs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathM60V8-404DME_public.xdf
2908 lines (2908 loc) · 106 KB
/
M60V8-404DME_public.xdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Written 01/06/2018 07:48:15 -->
<XDFFORMAT version="1.60">
<XDFHEADER>
<flags>0x1</flags>
<fileversion>1.0</fileversion>
<deftitle>Mykk</deftitle>
<description>XDF for 404 DME created by Mykk with help from Olafu and Hairyscreech on TunerPro forums. This xdf is built upon the original BMW_dme_404.XDF available in the TunerPro downloads created by Raul

These are not all of the maps in the coding, just the ones identified thus far.</description>
<author>Mykk</author>
<BASEOFFSET offset="0" subtract="0" />
<DEFAULTS datasizeinbits="8" sigdigits="0" outputtype="2" signed="0" lsbfirst="0" float="0" />
<REGION type="0xFFFFFFFF" startaddress="0x0" size="0x10000" regionflags="0x0" name="Binary File" desc="This region describes the bin file edited by this XDF" />
</XDFHEADER>
<XDFTABLE uniqueid="0x2F1F" flags="0x0">
<title>-------------------XDF for M60-V8 with 404DME by Mykk-------------------</title>
<description>This XDF is enthusiast created, not engineer created. Modify tables and maps at your own risk. Some information, layouts, tables, maps, formulas & conversions may be incorrect. This is a constant work in progress so please add and make changes where you discover some inconsistencies and share with the tuning community. </description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedelementsizebits="8" mmedrowcount="1" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x507D" flags="0x0">
<title>3FDF - Gute Fahrt!</title>
<description>An easter egg left in the coding by engineers. Gute Fahrt translates to Good Journey, Safe Travel, or Bon Voyage!</description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>11</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<LABEL index="1" value="0.00" />
<LABEL index="2" value="0.00" />
<LABEL index="3" value="0.00" />
<LABEL index="4" value="0.00" />
<LABEL index="5" value="0.00" />
<LABEL index="6" value="0.00" />
<LABEL index="7" value="0.00" />
<LABEL index="8" value="0.00" />
<LABEL index="9" value="0.00" />
<LABEL index="10" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x3FDF" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="11" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>4</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x3BCA" flags="0x0">
<title>D03E - Index of MAP Hex addresses in code</title>
<description>Index of MAP Hex addresses listed in the code. Starts at it's own address. The Hex-address represented here is the beginning of the MAP including the header axis information. Example: C5DA listed here is the 6x1 RPM map located at C5E2. 
C5E8 listed here is the 4x6/ IAT vs Load MAP at address C5F6.

</description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>5</indexcount>
<decimalpl>0</decimalpl>
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="" />
<LABEL index="1" value="" />
<LABEL index="2" value="" />
<LABEL index="3" value="" />
<LABEL index="4" value="" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>26</indexcount>
<decimalpl>0</decimalpl>
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="" />
<LABEL index="1" value="" />
<LABEL index="2" value="" />
<LABEL index="3" value="" />
<LABEL index="4" value="" />
<LABEL index="5" value="" />
<LABEL index="6" value="" />
<LABEL index="7" value="" />
<LABEL index="8" value="" />
<LABEL index="9" value="" />
<LABEL index="10" value="" />
<LABEL index="11" value="" />
<LABEL index="12" value="" />
<LABEL index="13" value="" />
<LABEL index="14" value="" />
<LABEL index="15" value="" />
<LABEL index="16" value="" />
<LABEL index="17" value="" />
<LABEL index="18" value="" />
<LABEL index="19" value="" />
<LABEL index="20" value="" />
<LABEL index="21" value="" />
<LABEL index="22" value="" />
<LABEL index="23" value="" />
<LABEL index="24" value="" />
<LABEL index="25" value="" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedtypeflags="0x06" mmedaddress="0xD03E" mmedelementsizebits="16" mmedrowcount="26" mmedcolcount="5" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>3</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFCONSTANT uniqueid="0x5301">
<title>C032 - Injector Constant</title>
<description>Multiplication factor used for calculation of theoretical pulsewidth. This is used when changing injectors

Adjusting this table also changes the Load calculations used by other tables. Other adjustments may be needed when altering this value.

Tune this table in open loop, O2's disabled.

I am revisiting this table and testing. It does work great for adjusting for injector size. But I believe there may be another modifier we can use to adjust for injector size that doesn't mess with load calculations...for now, this will work. </description>
<EMBEDDEDDATA mmedtypeflags="0x02" mmedaddress="0xC032" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<rangehigh>200.000000</rangehigh>
<datatype>0</datatype>
<unittype>67</unittype>
<DALINK index="0" />
<MATH equation="x">
<VAR id="x" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x5605">
<title>C03B - Target AFR</title>
<description>Leave at 14.7 for pump gas. Modify for Alcohol. </description>
<EMBEDDEDDATA mmedaddress="0xC03B" mmedelementsizebits="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>1</decimalpl>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="1/(x/128)*14.7">
<VAR id="x" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x26BD">
<title>C034 - Rev Limit RPM</title>
<EMBEDDEDDATA mmedtypeflags="0x02" mmedaddress="0xC034" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="x/4">
<VAR id="x" />
</MATH>
</XDFCONSTANT>
<XDFTABLE uniqueid="0x1722" flags="0x0">
<title>C08B - Speed Limiter disable</title>
<description> Enter 255 to disable Speed Limiter. </description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value=" " />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC08B" mmedelementsizebits="8" mmedrowcount="1" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>2</outputtype>
<MATH equation="x">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x15C2" flags="0x0">
<title>CE5E - D7 3x1 - Desired Idle RPM A/C on</title>
<description>Needs to be tested</description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Water Temp*</units>
<indexcount>3</indexcount>
<outputtype>4</outputtype>
<datatype>13</datatype>
<unittype>14</unittype>
<DALINK index="0" />
<LABEL index="0" value=" " />
<LABEL index="1" value=" " />
<LABEL index="2" value=" " />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>1</indexcount>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xCE5E" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="3" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="x*10">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x951" flags="0x0">
<title>CE66 - D7 3x1 - Desired Idle RPM</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Water Temp*</units>
<indexcount>3</indexcount>
<outputtype>4</outputtype>
<datatype>13</datatype>
<unittype>14</unittype>
<DALINK index="0" />
<LABEL index="0" value=" " />
<LABEL index="1" value=" " />
<LABEL index="2" value=" " />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>1</indexcount>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xCE66" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="3" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="x*10">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x52425" flags="0x0">
<title>CCD6 - RPM / Load 5X4 - 02 Sensor Feedback</title>
<description>Load threshold to disable O2 feedback. Setting table to all zeros turns off 02 sensors for open loop. </description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>4</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="1" />
<LABEL index="1" value="2" />
<LABEL index="2" value="3" />
<LABEL index="3" value="4" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>5</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="1" />
<LABEL index="1" value="2" />
<LABEL index="2" value="3" />
<LABEL index="3" value="4" />
<LABEL index="4" value="5" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xCCD6" mmedelementsizebits="8" mmedrowcount="5" mmedcolcount="4" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>2</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x47EF" flags="0x0">
<title>D148 - Checksum</title>
<description>This xdf has a built in checksum update, remember to save your file to your computer first for chucksum to update before loading tune on emulator or burning chip.</description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>2</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<LABEL index="1" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xD148" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="2" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>3</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x1A12" flags="0x0">
<title>-------------------Ignition in Crank Degrees-------------------</title>
<description>These tables are modifiers are work in conjuntion with other tables, the ignition timing comanded in any one table might not be actual timing in the cylinder. </description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedelementsizebits="8" mmedrowcount="1" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x3F30" flags="0x0">
<title>C9DD - D0/D5 8x3 - RPM / Load - Idle Ignition Timing</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>3</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>23</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="20" />
<LABEL index="1" value="40" />
<LABEL index="2" value="110" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>8</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>6</datatype>
<unittype>4</unittype>
<DALINK index="0" />
<LABEL index="0" value="520" />
<LABEL index="1" value="600" />
<LABEL index="2" value="720" />
<LABEL index="3" value="1000" />
<LABEL index="4" value="1200" />
<LABEL index="5" value="1600" />
<LABEL index="6" value="1800" />
<LABEL index="7" value="2040" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC9DD" mmedelementsizebits="8" mmedrowcount="8" mmedcolcount="3" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="(x-60)*.75">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x646B" flags="0x30">
<title>CA9E - D0/D5 12x10 - RPM / Load - Part Throttle Ignition Timing</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>10</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="20" />
<LABEL index="1" value="30" />
<LABEL index="2" value="40" />
<LABEL index="3" value="50" />
<LABEL index="4" value="60" />
<LABEL index="5" value="70" />
<LABEL index="6" value="80" />
<LABEL index="7" value="90" />
<LABEL index="8" value="110" />
<LABEL index="9" value="160" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>12</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="600" />
<LABEL index="1" value="800" />
<LABEL index="2" value="1200" />
<LABEL index="3" value="1600" />
<LABEL index="4" value="2000" />
<LABEL index="5" value="2520" />
<LABEL index="6" value="3000" />
<LABEL index="7" value="3520" />
<LABEL index="8" value="3800" />
<LABEL index="9" value="4800" />
<LABEL index="10" value="5200" />
<LABEL index="11" value="6400" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedtypeflags="0x03" mmedaddress="0xCA9E" mmedelementsizebits="8" mmedrowcount="12" mmedcolcount="10" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>60.000000</max>
<outputtype>1</outputtype>
<MATH equation="(x-60)*.75">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x4C05" flags="0x0">
<title>CA16 - D0/D5 16x3 - RPM / Load - WOT Ignition Timing</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>3</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="80" />
<LABEL index="1" value="120" />
<LABEL index="2" value="160" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>16</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="480" />
<LABEL index="1" value="800" />
<LABEL index="2" value="1200" />
<LABEL index="3" value="1600" />
<LABEL index="4" value="2000" />
<LABEL index="5" value="2520" />
<LABEL index="6" value="3000" />
<LABEL index="7" value="3520" />
<LABEL index="8" value="3800" />
<LABEL index="9" value="4200" />
<LABEL index="10" value="4520" />
<LABEL index="11" value="4800" />
<LABEL index="12" value="5200" />
<LABEL index="13" value="5600" />
<LABEL index="14" value="6000" />
<LABEL index="15" value="6400" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xCA16" mmedelementsizebits="8" mmedrowcount="16" mmedcolcount="3" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="(x-60)*.75">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x4B4A" flags="0x0">
<title>CA4E - Water Temp 6x1 - Ignition Add Water Temp</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>6</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<LABEL index="1" value="0.00" />
<LABEL index="2" value="0.00" />
<LABEL index="3" value="0.00" />
<LABEL index="4" value="0.00" />
<LABEL index="5" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xCA4E" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="6" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="(x-60)*.75">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x27E9" flags="0x0">
<title>-------------------Fuel in AFR-------------------</title>
<description>These tables are modifiers and work in conjunction with other tables as well as many unknown variables. The AFR values represented here are not directly related to actual AFR burn in the cylinder. I use AFR in these tables so we can have an understanding of how drastic or subtle the changes are. If you see some extremely unusual rich or lean AFR's commanded in any one cell there is likely another table somewhere offsetting that cell. Always tune with a wideband sensor and gauge. </description>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedelementsizebits="8" mmedrowcount="1" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x5228" flags="0x0">
<title>C7C5 - D0/D5 4x3 - RPM / Load- Idle Fuel</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>3</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="1" />
<LABEL index="1" value="2" />
<LABEL index="2" value="3" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>4</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="640" />
<LABEL index="1" value="1000" />
<LABEL index="2" value="2520" />
<LABEL index="3" value="3000" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC7C5" mmedelementsizebits="8" mmedrowcount="4" mmedcolcount="3" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>1</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="1/(x/128)*14.7">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x5B49" flags="0x0">
<title>C80D - D0/D5 12x10 - RPM / Load - Part Throttle Fuel</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>10</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="1" />
<LABEL index="1" value="2" />
<LABEL index="2" value="3" />
<LABEL index="3" value="4" />
<LABEL index="4" value="5" />
<LABEL index="5" value="6" />
<LABEL index="6" value="7" />
<LABEL index="7" value="8" />
<LABEL index="8" value="9" />
<LABEL index="9" value="10" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>12</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="600" />
<LABEL index="1" value="800" />
<LABEL index="2" value="1200" />
<LABEL index="3" value="1600" />
<LABEL index="4" value="2000" />
<LABEL index="5" value="2520" />
<LABEL index="6" value="3000" />
<LABEL index="7" value="3520" />
<LABEL index="8" value="3800" />
<LABEL index="9" value="4800" />
<LABEL index="10" value="5200" />
<LABEL index="11" value="6400" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC80D" mmedelementsizebits="8" mmedrowcount="12" mmedcolcount="10" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>1</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="1/(x/128)*14.7">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x3C1D" flags="0x0">
<title>C7E3 - D0 16x1 - RPM - WOT Fuel</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>1</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>16</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="800" />
<LABEL index="1" value="1200" />
<LABEL index="2" value="1520" />
<LABEL index="3" value="2000" />
<LABEL index="4" value="2400" />
<LABEL index="5" value="2800" />
<LABEL index="6" value="3000" />
<LABEL index="7" value="3200" />
<LABEL index="8" value="3520" />
<LABEL index="9" value="3800" />
<LABEL index="10" value="4200" />
<LABEL index="11" value="4600" />
<LABEL index="12" value="4800" />
<LABEL index="13" value="5200" />
<LABEL index="14" value="5800" />
<LABEL index="15" value="6400" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC7E3" mmedelementsizebits="8" mmedrowcount="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>1</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="1/(x/128)*14.7">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x44AF" flags="0x0">
<title>C8C6 - D0/CC 6x7 - RPM / TPS - MAF Fail "Alpha-N"</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Load</units>
<indexcount>7</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="2" />
<LABEL index="1" value="9" />
<LABEL index="2" value="15" />
<LABEL index="3" value="22" />
<LABEL index="4" value="28" />
<LABEL index="5" value="35" />
<LABEL index="6" value="41" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>6</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="400" />
<LABEL index="1" value="840" />
<LABEL index="2" value="1280" />
<LABEL index="3" value="1720" />
<LABEL index="4" value="2160" />
<LABEL index="5" value="2600" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedtypeflags="0x03" mmedaddress="0xC8C6" mmedelementsizebits="8" mmedrowcount="6" mmedcolcount="7" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>60.000000</max>
<outputtype>1</outputtype>
<MATH equation="x">
<VAR id="x" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x436E" flags="0x0">
<title>C746 - D7 - Water Temp 6x1 - Part Throttle Temp Enrichment</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Water Temp*</units>
<indexcount>6</indexcount>
<outputtype>4</outputtype>
<datatype>13</datatype>
<unittype>14</unittype>
<DALINK index="0" />
<LABEL index="0" value=" " />
<LABEL index="1" value=" " />
<LABEL index="2" value=" " />
<LABEL index="3" value=" " />
<LABEL index="4" value=" " />
<LABEL index="5" value=" " />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC746" mmedelementsizebits="8" mmedrowcount="6" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x3727" flags="0x0">
<title>C770 - D7 - Water Temp 6X1 - Idle Temp Enrichment</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Water Temp*</units>
<indexcount>6</indexcount>
<outputtype>4</outputtype>
<datatype>13</datatype>
<unittype>14</unittype>
<DALINK index="0" />
<LABEL index="0" value=" " />
<LABEL index="1" value=" " />
<LABEL index="2" value=" " />
<LABEL index="3" value=" " />
<LABEL index="4" value=" " />
<LABEL index="5" value=" " />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0xC770" mmedelementsizebits="8" mmedrowcount="6" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x5801" flags="0x0">
<title>C5E2 - D0 6x1 RPM - Cranking Fuel</title>
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>1</indexcount>
<min>1000.000000</min>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="" />
<MATH equation="X">
<VAR id="X" />
</MATH>