forked from BoredTruckOwner/LS_Based_Engine_Repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Operating System 12587603 - 1Mb PCM - 2004 model year_unlocked.xdf
14890 lines (14890 loc) · 631 KB
/
Operating System 12587603 - 1Mb PCM - 2004 model year_unlocked.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 07/09/2021 07:51:33 -->
<XDFFORMAT version="1.60">
<XDFHEADER>
<flags>0x1</flags>
<fileversion>2019-01</fileversion>
<deftitle>OS12587603 - 2004 1Mb PCM</deftitle>
<description>Parameters for Operating System (OS) 12587603.
This OS was used in 2004 GM vehicles, including Flex Fuel vehicles.
The PCM is a 1 Mb, with Blue and Green 80 pin connectors.</description>
<author>Credited to LRT</author>
<BASEOFFSET offset="0" subtract="0" />
<DEFAULTS datasizeinbits="16" sigdigits="2" outputtype="1" signed="0" lsbfirst="0" float="0" />
<REGION type="0xFFFFFFFF" startaddress="0x0" size="0xFFFFF" regionflags="0x0" name="Binary File" desc="This region describes the bin file edited by this XDF" />
<CATEGORY index="0x0" name="VATS" />
<CATEGORY index="0x1" name="Airflow" />
<CATEGORY index="0x2" name="Crank / Start" />
<CATEGORY index="0x3" name="DFCO" />
<CATEGORY index="0x4" name="Open Loop / PE" />
<CATEGORY index="0x5" name="Fuel Injectors" />
<CATEGORY index="0x6" name="Oxygen Sensors" />
<CATEGORY index="0x7" name="Abuse Management" />
<CATEGORY index="0x8" name="Rev Limiter" />
<CATEGORY index="0x9" name="Idle" />
<CATEGORY index="0xA" name="Spark" />
<CATEGORY index="0xB" name="Knock" />
<CATEGORY index="0xC" name="Torque Limiting" />
<CATEGORY index="0xD" name="Transmission" />
<CATEGORY index="0xE" name="Fuel Tank / EVAP" />
<CATEGORY index="0xF" name="Fans / AC" />
<CATEGORY index="0x10" name="System" />
<CATEGORY index="0x11" name="Tach" />
<CATEGORY index="0x12" name="Speedometer" />
<CATEGORY index="0x13" name="Diagnostics" />
<CATEGORY index="0x14" name="DTC" />
<CATEGORY index="0x15" name="Flex Fuel" />
<CATEGORY index="0x16" name="Operating System" />
<CATEGORY index="0x17" name="Fuel System" />
</XDFHEADER>
<XDFTABLE uniqueid="0x75FA" flags="0x0">
<title>F0507 Convert Primary Sender to Volume</title>
<description>The PCM uses this table to convert the signal from the primary fuel tank level sender to actual liters for the PCM's internal calculations.

Note: This table is setup for 2003 PCM. 
(For other year models, invert table)</description>
<CATEGORYMEM index="0" category="24" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Gallons</units>
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>65</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>81</indexcount>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="20.00" />
<LABEL index="1" value="22.00" />
<LABEL index="2" value="24.00" />
<LABEL index="3" value="26.00" />
<LABEL index="4" value="28.00" />
<LABEL index="5" value="30.00" />
<LABEL index="6" value="32.00" />
<LABEL index="7" value="34.00" />
<LABEL index="8" value="36.00" />
<LABEL index="9" value="38.00" />
<LABEL index="10" value="40.00" />
<LABEL index="11" value="42.00" />
<LABEL index="12" value="44.00" />
<LABEL index="13" value="46.00" />
<LABEL index="14" value="48.00" />
<LABEL index="15" value="50.00" />
<LABEL index="16" value="52.00" />
<LABEL index="17" value="54.00" />
<LABEL index="18" value="56.00" />
<LABEL index="19" value="58.00" />
<LABEL index="20" value="60.00" />
<LABEL index="21" value="62.00" />
<LABEL index="22" value="64.00" />
<LABEL index="23" value="66.00" />
<LABEL index="24" value="68.00" />
<LABEL index="25" value="70.00" />
<LABEL index="26" value="72.00" />
<LABEL index="27" value="74.00" />
<LABEL index="28" value="76.00" />
<LABEL index="29" value="78.00" />
<LABEL index="30" value="80.00" />
<LABEL index="31" value="82.00" />
<LABEL index="32" value="84.00" />
<LABEL index="33" value="86.00" />
<LABEL index="34" value="88.00" />
<LABEL index="35" value="90.00" />
<LABEL index="36" value="92.00" />
<LABEL index="37" value="94.00" />
<LABEL index="38" value="96.00" />
<LABEL index="39" value="98.00" />
<LABEL index="40" value="100.00" />
<LABEL index="41" value="102.00" />
<LABEL index="42" value="104.00" />
<LABEL index="43" value="106.00" />
<LABEL index="44" value="108.00" />
<LABEL index="45" value="110.00" />
<LABEL index="46" value="112.00" />
<LABEL index="47" value="114.00" />
<LABEL index="48" value="116.00" />
<LABEL index="49" value="118.00" />
<LABEL index="50" value="120.00" />
<LABEL index="51" value="122.00" />
<LABEL index="52" value="124.00" />
<LABEL index="53" value="126.00" />
<LABEL index="54" value="128.00" />
<LABEL index="55" value="130.00" />
<LABEL index="56" value="132.00" />
<LABEL index="57" value="134.00" />
<LABEL index="58" value="136.00" />
<LABEL index="59" value="138.00" />
<LABEL index="60" value="140.00" />
<LABEL index="61" value="142.00" />
<LABEL index="62" value="144.00" />
<LABEL index="63" value="146.00" />
<LABEL index="64" value="148.00" />
<LABEL index="65" value="150.00" />
<LABEL index="66" value="152.00" />
<LABEL index="67" value="154.00" />
<LABEL index="68" value="156.00" />
<LABEL index="69" value="158.00" />
<LABEL index="70" value="160.00" />
<LABEL index="71" value="162.00" />
<LABEL index="72" value="164.00" />
<LABEL index="73" value="166.00" />
<LABEL index="74" value="168.00" />
<LABEL index="75" value="170.00" />
<LABEL index="76" value="172.00" />
<LABEL index="77" value="174.00" />
<LABEL index="78" value="176.00" />
<LABEL index="79" value="178.00" />
<LABEL index="80" value="180.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x1E20C" mmedelementsizebits="16" mmedrowcount="81" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X*0.004128">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x7DD" flags="0x0">
<title>F0508 Convert Primary Sender to Volume for Gauge</title>
<description>The PCM uses this table to convert the signal from the primary fuel tank level sender to actual liters for controlling the fuel gauge needle.

Note: This table is setup for 2003 PCM. 
(For other year models, invert table)</description>
<CATEGORYMEM index="0" category="24" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Gallons</units>
<indexcount>1</indexcount>
<datatype>0</datatype>
<unittype>65</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>129</indexcount>
<datatype>0</datatype>
<unittype>26</unittype>
<DALINK index="0" />
<LABEL index="0" value="0.00" />
<LABEL index="1" value="2.00" />
<LABEL index="2" value="4.00" />
<LABEL index="3" value="6.00" />
<LABEL index="4" value="8.00" />
<LABEL index="5" value="10.00" />
<LABEL index="6" value="12.00" />
<LABEL index="7" value="14.00" />
<LABEL index="8" value="16.00" />
<LABEL index="9" value="18.00" />
<LABEL index="10" value="20.00" />
<LABEL index="11" value="22.00" />
<LABEL index="12" value="24.00" />
<LABEL index="13" value="26.00" />
<LABEL index="14" value="28.00" />
<LABEL index="15" value="30.00" />
<LABEL index="16" value="32.00" />
<LABEL index="17" value="34.00" />
<LABEL index="18" value="36.00" />
<LABEL index="19" value="38.00" />
<LABEL index="20" value="40.00" />
<LABEL index="21" value="42.00" />
<LABEL index="22" value="44.00" />
<LABEL index="23" value="46.00" />
<LABEL index="24" value="48.00" />
<LABEL index="25" value="50.00" />
<LABEL index="26" value="52.00" />
<LABEL index="27" value="54.00" />
<LABEL index="28" value="56.00" />
<LABEL index="29" value="58.00" />
<LABEL index="30" value="60.00" />
<LABEL index="31" value="62.00" />
<LABEL index="32" value="64.00" />
<LABEL index="33" value="66.00" />
<LABEL index="34" value="68.00" />
<LABEL index="35" value="70.00" />
<LABEL index="36" value="72.00" />
<LABEL index="37" value="74.00" />
<LABEL index="38" value="76.00" />
<LABEL index="39" value="78.00" />
<LABEL index="40" value="80.00" />
<LABEL index="41" value="82.00" />
<LABEL index="42" value="84.00" />
<LABEL index="43" value="86.00" />
<LABEL index="44" value="88.00" />
<LABEL index="45" value="90.00" />
<LABEL index="46" value="92.00" />
<LABEL index="47" value="94.00" />
<LABEL index="48" value="96.00" />
<LABEL index="49" value="98.00" />
<LABEL index="50" value="100.00" />
<LABEL index="51" value="102.00" />
<LABEL index="52" value="104.00" />
<LABEL index="53" value="106.00" />
<LABEL index="54" value="108.00" />
<LABEL index="55" value="110.00" />
<LABEL index="56" value="112.00" />
<LABEL index="57" value="114.00" />
<LABEL index="58" value="116.00" />
<LABEL index="59" value="118.00" />
<LABEL index="60" value="120.00" />
<LABEL index="61" value="122.00" />
<LABEL index="62" value="124.00" />
<LABEL index="63" value="126.00" />
<LABEL index="64" value="128.00" />
<LABEL index="65" value="130.00" />
<LABEL index="66" value="132.00" />
<LABEL index="67" value="134.00" />
<LABEL index="68" value="136.00" />
<LABEL index="69" value="138.00" />
<LABEL index="70" value="140.00" />
<LABEL index="71" value="142.00" />
<LABEL index="72" value="144.00" />
<LABEL index="73" value="146.00" />
<LABEL index="74" value="148.00" />
<LABEL index="75" value="150.00" />
<LABEL index="76" value="152.00" />
<LABEL index="77" value="154.00" />
<LABEL index="78" value="156.00" />
<LABEL index="79" value="158.00" />
<LABEL index="80" value="160.00" />
<LABEL index="81" value="162.00" />
<LABEL index="82" value="164.00" />
<LABEL index="83" value="166.00" />
<LABEL index="84" value="168.00" />
<LABEL index="85" value="170.00" />
<LABEL index="86" value="172.00" />
<LABEL index="87" value="174.00" />
<LABEL index="88" value="176.00" />
<LABEL index="89" value="178.00" />
<LABEL index="90" value="180.00" />
<LABEL index="91" value="182.00" />
<LABEL index="92" value="184.00" />
<LABEL index="93" value="186.00" />
<LABEL index="94" value="188.00" />
<LABEL index="95" value="190.00" />
<LABEL index="96" value="192.00" />
<LABEL index="97" value="194.00" />
<LABEL index="98" value="196.00" />
<LABEL index="99" value="198.00" />
<LABEL index="100" value="200.00" />
<LABEL index="101" value="202.00" />
<LABEL index="102" value="204.00" />
<LABEL index="103" value="206.00" />
<LABEL index="104" value="208.00" />
<LABEL index="105" value="210.00" />
<LABEL index="106" value="212.00" />
<LABEL index="107" value="214.00" />
<LABEL index="108" value="216.00" />
<LABEL index="109" value="218.00" />
<LABEL index="110" value="220.00" />
<LABEL index="111" value="222.00" />
<LABEL index="112" value="224.00" />
<LABEL index="113" value="226.00" />
<LABEL index="114" value="228.00" />
<LABEL index="115" value="230.00" />
<LABEL index="116" value="232.00" />
<LABEL index="117" value="234.00" />
<LABEL index="118" value="236.00" />
<LABEL index="119" value="238.00" />
<LABEL index="120" value="240.00" />
<LABEL index="121" value="242.00" />
<LABEL index="122" value="244.00" />
<LABEL index="123" value="246.00" />
<LABEL index="124" value="248.00" />
<LABEL index="125" value="250.00" />
<LABEL index="126" value="252.00" />
<LABEL index="127" value="254.00" />
<LABEL index="128" value="256.00" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x1E410" mmedelementsizebits="16" mmedrowcount="129" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>2</decimalpl>
<min>0.000000</min>
<max>255.000000</max>
<outputtype>1</outputtype>
<MATH equation="X*0.004128">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFCONSTANT uniqueid="0x4B1D" flags="0x8">
<title>F0502 - Fuel Tank Size</title>
<description>Maximum capacity of the fuel tank.
</description>
<EMBEDDEDDATA mmedaddress="0x1E1D0" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Gallons</units>
<rangehigh>200.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X*0.0042373">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0xC4" flags="0x8">
<title>F0503 - Fuel Tank Size for Guage</title>
<description>Maximum capacity of the fuel tank, used for controlling the fuel gauge needle.
</description>
<EMBEDDEDDATA mmedaddress="0x1E1D4" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Gallons</units>
<rangehigh>200.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X*0.004181">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x3D86" flags="0x8">
<title>F0504 - Primary Fuel Tank Size</title>
<description>Maximum capacity of the primary fuel tank if the system uses a primary and secondary tank.
</description>
<EMBEDDEDDATA mmedaddress="0x1E1DC" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Gallons</units>
<rangehigh>200.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X*0.0042373">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x75BC" flags="0x8">
<title>F0505 - Primary Fuel Tank Size for Guage</title>
<description>Maximum capacity of the primary fuel tank, used for controlling the fuel gauge needle.
</description>
<EMBEDDEDDATA mmedaddress="0x1E1DE" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Gallons</units>
<rangehigh>200.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X*0.004181">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFTABLE uniqueid="0x322B" flags="0x30">
<title>Calibration Segment Information</title>
<description>*** These parameters are displayed for information purposes only - NEVER change ***

Oper System = the main Operating System (OS) programmed in the calibration.

This is displayed solely to ensure that the correct XDF file is used to edit the BIN file.</description>
<CATEGORYMEM index="0" category="17" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Calibration #</units>
<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="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Segment</units>
<indexcount>8</indexcount>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="Oper System" />
<LABEL index="1" value="Engine Cal" />
<LABEL index="2" value="Engine Dia" />
<LABEL index="3" value="Trans Cal" />
<LABEL index="4" value="Trans Dia" />
<LABEL index="5" value="Fuel System" />
<LABEL index="6" value="System" />
<LABEL index="7" value="Speedometer" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedelementsizebits="16" mmedrowcount="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>0.000000</max>
<outputtype>1</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="1" equation="X">
<VAR id="X" type="address" address="0x504" sizeinbits="32" />
</MATH>
<MATH row="2" col="1" equation="X">
<VAR id="X" type="address" address="0x8004" sizeinbits="32" />
</MATH>
<MATH row="3" col="1" equation="X">
<VAR id="X" type="address" address="0x162D4" sizeinbits="32" />
</MATH>
<MATH row="4" col="1" equation="X">
<VAR id="X" type="address" address="0x19604" sizeinbits="32" />
</MATH>
<MATH row="5" col="1" equation="X">
<VAR id="X" type="address" address="0x1D8B4" sizeinbits="32" />
</MATH>
<MATH row="6" col="1" equation="X">
<VAR id="X" type="address" address="0x1E1B4" sizeinbits="32" />
</MATH>
<MATH row="7" col="1" equation="X">
<VAR id="X" type="address" address="0x1F6C4" sizeinbits="32" />
</MATH>
<MATH row="8" col="1" equation="X">
<VAR id="X" type="address" address="0x1FEB4" sizeinbits="32" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x63A0" flags="0x30">
<title>Checksum Information</title>
<description>*** These parameters are displayed for information purposes only - NEVER change ***

These parameters are displayed solely as a confirmation that all Checksums are being updated (as necessary) - each time the BIN file is changed, and then resaved.</description>
<CATEGORYMEM index="0" category="17" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Checksum</units>
<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="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>Segment</units>
<indexcount>8</indexcount>
<outputtype>4</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="Oper System" />
<LABEL index="1" value="Engine Cal" />
<LABEL index="2" value="Engine Dia" />
<LABEL index="3" value="Trans Cal" />
<LABEL index="4" value="Trans Dia" />
<LABEL index="5" value="Fuel System" />
<LABEL index="6" value="System" />
<LABEL index="7" value="Speedometer" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedelementsizebits="16" mmedrowcount="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>0.000000</min>
<max>0.000000</max>
<outputtype>3</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="1" equation="X">
<VAR id="X" type="address" address="0x500" sizeinbits="16" />
</MATH>
<MATH row="2" col="1" equation="X">
<VAR id="X" type="address" address="0x8000" sizeinbits="16" />
</MATH>
<MATH row="3" col="1" equation="X">
<VAR id="X" type="address" address="0x162D0" sizeinbits="16" />
</MATH>
<MATH row="4" col="1" equation="X">
<VAR id="X" type="address" address="0x19600" sizeinbits="16" />
</MATH>
<MATH row="5" col="1" equation="X">
<VAR id="X" type="address" address="0x1D8B0" sizeinbits="16" />
</MATH>
<MATH row="6" col="1" equation="X">
<VAR id="X" type="address" address="0x1E1B0" sizeinbits="16" />
</MATH>
<MATH row="7" col="1" equation="X">
<VAR id="X" type="address" address="0x1F6C0" sizeinbits="16" />
</MATH>
<MATH row="8" col="1" equation="X">
<VAR id="X" type="address" address="0x1FEB0" sizeinbits="16" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x4EF0" flags="0x30">
<title>VIN</title>
<description>This MAY be the Vehicle Indentification Number (VIN) programmed in the calibration.

*** Do NOT make changes to this parameter, UNLESS the originally dsiplayed values were in proper VIN format (i.e. make certain this is indeed a VIN stored in the PCM) ***</description>
<CATEGORYMEM index="0" category="17" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>17</indexcount>
<outputtype>4</outputtype>
<datatype>2</datatype>
<unittype>2</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" />
<LABEL index="10" value="11" />
<LABEL index="11" value="12" />
<LABEL index="12" value="13" />
<LABEL index="13" value="14" />
<LABEL index="14" value="15" />
<LABEL index="15" value="16" />
<LABEL index="16" value="17" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>VIN</units>
<indexcount>1</indexcount>
<outputtype>4</outputtype>
<datatype>2</datatype>
<unittype>2</unittype>
<DALINK index="0" />
<LABEL index="0" value="VIN" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x4021" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="17" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>48.000000</min>
<max>90.000000</max>
<outputtype>4</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
<MATH col="1" equation="X">
<VAR id="X" />
</MATH>
<MATH col="2" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="1" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="2" equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x94F" flags="0x30">
<title>VIN - possible alternate location</title>
<description>This MAY be the Vehicle Indentification Number (VIN) programmed in the calibration.

*** Do NOT make changes to this parameter, UNLESS the originally dsiplayed values were in proper VIN format (i.e. make certain this is indeed a VIN stored in the PCM) ***</description>
<CATEGORYMEM index="0" category="17" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<indexcount>17</indexcount>
<outputtype>4</outputtype>
<datatype>2</datatype>
<unittype>2</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" />
<LABEL index="10" value="11" />
<LABEL index="11" value="12" />
<LABEL index="12" value="13" />
<LABEL index="13" value="14" />
<LABEL index="14" value="15" />
<LABEL index="15" value="16" />
<LABEL index="16" value="17" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="16" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>VIN</units>
<indexcount>1</indexcount>
<outputtype>4</outputtype>
<datatype>2</datatype>
<unittype>2</unittype>
<DALINK index="0" />
<LABEL index="0" value="VIN" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x6021" mmedelementsizebits="8" mmedrowcount="1" mmedcolcount="17" mmedmajorstridebits="0" mmedminorstridebits="0" />
<decimalpl>0</decimalpl>
<min>48.000000</min>
<max>90.000000</max>
<outputtype>4</outputtype>
<MATH equation="X">
<VAR id="X" />
</MATH>
<MATH col="1" equation="X">
<VAR id="X" />
</MATH>
<MATH col="2" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="1" equation="X">
<VAR id="X" />
</MATH>
<MATH row="1" col="2" equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFCONSTANT uniqueid="0x122A" flags="0xC">
<title>Engine Type</title>
<description>Displays the Engine Type programmed in the calibration.

*** This parameter should NOT be changed ***

0=5.3L
1=5.7L
2=4.8L
3=6.0L
4=4.3L
5=5.0L
6=8.1L
7=5.7L HO</description>
<CATEGORYMEM index="0" category="17" />
<EMBEDDEDDATA mmedaddress="0x8108" mmedelementsizebits="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<outputtype>2</outputtype>
<decimalpl>1</decimalpl>
<rangehigh>7.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x1357" flags="0xC">
<title>Number of Cylinders</title>
<description>The number of Engine Cylinders in the calibration.

*** This parameter should NOT be changed ***</description>
<CATEGORYMEM index="0" category="17" />
<EMBEDDEDDATA mmedaddress="0x8109" mmedelementsizebits="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Cylinders</units>
<decimalpl>0</decimalpl>
<rangehigh>8.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x1F4B" flags="0xC">
<title>Transmission Type</title>
<description>Displays the Transmission Type programmed in the calibration.

*** This parameter should NOT be changed ***

0 = 4L60E
1 = 4L80E
2 = Manual
3 = Non-Electronic Automatic
4 = Allison</description>
<CATEGORYMEM index="0" category="17" />
<EMBEDDEDDATA mmedaddress="0x1961E" mmedelementsizebits="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<outputtype>2</outputtype>
<decimalpl>1</decimalpl>
<rangehigh>4.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x342A" flags="0xC">
<title>Transmission Range Switch / Gear Indicator Type</title>
<description>Elects if a Transmission Range Switch / Gear Indicator Type (if any) is used by the vehicle.

0 = None (no transmission mounted Range Switch - like a Camaro)
1 = PRNDL Range Switch (transmission mounted Range Switch - like Corvettes and most Trucks)
2 = P/N only Switch (like Trucks with the Allison Transmission)</description>
<CATEGORYMEM index="0" category="14" />
<EMBEDDEDDATA mmedaddress="0x1F77A" mmedelementsizebits="8" mmedmajorstridebits="0" mmedminorstridebits="0" />
<outputtype>2</outputtype>
<decimalpl>1</decimalpl>
<rangehigh>2.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFTABLE uniqueid="0x51CB" flags="0x30">
<title>B0101 - Main VE Table (Grams*Kelivin/kPa)</title>
<description>This is the main Volumetric Efficiency (VE) table. The cell units are in Grams*Kelvin/kPa.

Column headings = RPM
Row headings = MAP

The values in this table represent the efficiency of the engine's ability to fill the cylinders with air. It is used to predict the volume of air entering each cylinder under varying conditions.

The air mass per cylinder can be determined from the VE table using the following formula:

g/cyl = VE*MAP/Charge Temperature

Where:
VE is in g*K/kPa,
MAP is in kPa,
Charge Temperature is in degrees Kelvin.</description>
<CATEGORYMEM index="0" category="2" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>20</indexcount>
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="400" />
<LABEL index="1" value="800" />
<LABEL index="2" value="1200" />
<LABEL index="3" value="1600" />
<LABEL index="4" value="2000" />
<LABEL index="5" value="2400" />
<LABEL index="6" value="2800" />
<LABEL index="7" value="3200" />
<LABEL index="8" value="3600" />
<LABEL index="9" value="4000" />
<LABEL index="10" value="4400" />
<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" />
<LABEL index="16" value="6800" />
<LABEL index="17" value="7200" />
<LABEL index="18" value="7600" />
<LABEL index="19" value="8000" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>MAP (kPA)</units>
<indexcount>19</indexcount>
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="15" />
<LABEL index="1" value="20" />
<LABEL index="2" value="25" />
<LABEL index="3" value="30" />
<LABEL index="4" value="35" />
<LABEL index="5" value="40" />
<LABEL index="6" value="45" />
<LABEL index="7" value="50" />
<LABEL index="8" value="55" />
<LABEL index="9" value="60" />
<LABEL index="10" value="65" />
<LABEL index="11" value="70" />
<LABEL index="12" value="75" />
<LABEL index="13" value="80" />
<LABEL index="14" value="85" />
<LABEL index="15" value="90" />
<LABEL index="16" value="95" />
<LABEL index="17" value="100" />
<LABEL index="18" value="105" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x8442" mmedelementsizebits="16" mmedrowcount="19" mmedcolcount="20" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Grams*Kelvin/kPa</units>
<decimalpl>4</decimalpl>
<min>0.000000</min>
<max>10.000000</max>
<outputtype>1</outputtype>
<MATH equation="X*0.0001953125">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFTABLE uniqueid="0x1513" flags="0x30">
<title>B0102 - VE While Cranking (Grams*Kelvin/kPa)</title>
<description>Volumetric Efficiency (VE) table used while the engine is Cranking. The cell units are in Grams*Kelvin/kPa.

Column headings = RPM
Row headings = MAP</description>
<CATEGORYMEM index="0" category="2" />
<XDFAXIS id="x" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>RPM</units>
<indexcount>33</indexcount>
<outputtype>2</outputtype>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<LABEL index="0" value="00" />
<LABEL index="1" value="40" />
<LABEL index="2" value="80" />
<LABEL index="3" value="120" />
<LABEL index="4" value="160" />
<LABEL index="5" value="200" />
<LABEL index="6" value="240" />
<LABEL index="7" value="280" />
<LABEL index="8" value="320" />
<LABEL index="9" value="360" />
<LABEL index="10" value="400" />
<LABEL index="11" value="440" />
<LABEL index="12" value="480" />
<LABEL index="13" value="520" />
<LABEL index="14" value="560" />
<LABEL index="15" value="600" />
<LABEL index="16" value="640" />
<LABEL index="17" value="680" />
<LABEL index="18" value="720" />
<LABEL index="19" value="760" />
<LABEL index="20" value="800" />
<LABEL index="21" value="840" />
<LABEL index="22" value="880" />
<LABEL index="23" value="920" />
<LABEL index="24" value="960" />
<LABEL index="25" value="1000" />
<LABEL index="26" value="1040" />
<LABEL index="27" value="1080" />
<LABEL index="28" value="1120" />
<LABEL index="29" value="1160" />
<LABEL index="30" value="1200" />
<LABEL index="31" value="1240" />
<LABEL index="32" value="1280" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="y" uniqueid="0x0">
<EMBEDDEDDATA mmedelementsizebits="8" mmedmajorstridebits="-32" mmedminorstridebits="0" />
<units>kPA</units>
<indexcount>9</indexcount>
<outputtype>2</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="100" />
<MATH equation="X">
<VAR id="X" />
</MATH>
</XDFAXIS>
<XDFAXIS id="z">
<EMBEDDEDDATA mmedaddress="0x81F0" mmedelementsizebits="16" mmedrowcount="9" mmedcolcount="33" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Grams*Kelvin/kPa</units>
<decimalpl>4</decimalpl>
<min>0.000000</min>
<max>10.000000</max>
<outputtype>1</outputtype>
<MATH equation="X*0.0001953125">
<VAR id="X" />
</MATH>
</XDFAXIS>
</XDFTABLE>
<XDFCONSTANT uniqueid="0x43AB" flags="0xC">
<title>B0104 - Cylinder Volume</title>
<description>The volume in Cubic Centimeters (CC) of each Engine Cylinder.</description>
<CATEGORYMEM index="0" category="2" />
<EMBEDDEDDATA mmedaddress="0x875C" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>CC</units>
<decimalpl>0</decimalpl>
<rangehigh>1600.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X*0.0305175">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x5FB2" flags="0xC">
<title>B0105 - Wide Open Throttle (WOT)</title>
<description>Minimum Throttle Position (% TPS) that the PCM still considers the TPS to be at WOT.</description>
<CATEGORYMEM index="0" category="2" />
<EMBEDDEDDATA mmedaddress="0x88D0" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>% TPS</units>
<decimalpl>0</decimalpl>
<rangehigh>100.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/51.2">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x73A" flags="0xC">
<title>B0107 - Max Speed for Idle Mode</title>
<description>If Vehicle Speed (MPH) is above this value, and Throttle Position (%) is above Max Throttle for Idle Mode (B0108), then airflow will be calculated as Non-Idle.</description>
<CATEGORYMEM index="0" category="10" />
<EMBEDDEDDATA mmedaddress="0x88D2" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>MPH</units>
<decimalpl>0</decimalpl>
<rangehigh>254.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/128">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x44BE" flags="0xC">
<title>B0108 - Max Throttle for Idle Mode</title>
<description>If the Throttle Position (%) is above this, and Vehicle Speed (MPH) is above Max Speed for Idle Mode (B0107), then airflow will be calculated as Non-Idle.</description>
<CATEGORYMEM index="0" category="10" />
<EMBEDDEDDATA mmedaddress="0x88D4" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>% TPS</units>
<decimalpl>1</decimalpl>
<rangehigh>100.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/51.2">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0xBCD" flags="0xC">
<title>B0120 - RPM Threshold for Airflow Calculation</title>
<description>If Engine Speed (RPM) is less than this value, then the PCM uses a dynamically calculated airflow value to determine grams of air per cylinder. While the airflow is in a Steady State, a correction factor is updated based on the airflow difference between the MAF Sensed Airflow and the MAP Calculated Airflow (Speed Density Airflow).

During rapid changes in airflow, the correction factor is applied to the airflow calculations to compensate.

If Engine Speed (RPM) is above this value, then the PCM will use the MAF Sensor exclusively (if not disabled by DTCs) to calculate grams of air per cylinder. No updates are made to the airflow correction factor.</description>
<CATEGORYMEM index="0" category="2" />
<EMBEDDEDDATA mmedaddress="0x8760" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>RPM</units>
<decimalpl>0</decimalpl>
<rangehigh>12800.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/5.12">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x2AED" flags="0xC">
<title>B0203 - AIR Pump Coolant Temp Disable</title>
<description>Engine Coolant Temperature (ECT) must be above this value to allow the AIR Pump to operate.</description>
<CATEGORYMEM index="0" category="17" />
<EMBEDDEDDATA mmedtypeflags="0x01" mmedaddress="0x892A" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>Deg F (ECT)</units>
<decimalpl>0</decimalpl>
<rangehigh>283.000000</rangehigh>
<rangelow>-39.000000</rangelow>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="(X*0.0703125)+32">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x273D" flags="0xC">
<title>B0401 - BTM Enable RPM</title>
<description>The Engine RPM must be this much above Idle RPM, before Brake Torque Management (BTM) can become active.

Brake Torque Management (BTM) is used to reduce Engine Power by cutting cylinders and reducing the pedal opening on ETC vehicles when your foot is held on the Brake in Gear, and the Accelerator is pressed (i.e doing a "Burn Out").

Disable BTM:
Set the Enable RPM (B0401) to high value (i.e. 8000 RPM)
Set the Disable RPM (B0402) to high value (i.e. 7900 RPM)</description>
<CATEGORYMEM index="0" category="8" />
<EMBEDDEDDATA mmedaddress="0x8AF4" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>RPM</units>
<decimalpl>0</decimalpl>
<rangehigh>12700.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/5.12">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x5C9F" flags="0xC">
<title>B0402 - BTM Disable RPM</title>
<description>Once Brake Torque Management (BTM) is active, the Engine RPM must fall back down to this many RPMs above Idle RPM, before BTM will be disabled.
Brake Torque Management (BTM) is used to reduce Engine Power by cutting cylinders and reducing the pedal opening on ETC vehicles when your foot is held on the Brake in Gear, and the Accelerator is pressed (i.e doing a "Burn Out").

Disable BTM:
Set the Enable RPM (B0401) to high value (i.e. 8000 RPM)
Set the Disable RPM (B0402) to high value (i.e. 7900 RPM)</description>
<CATEGORYMEM index="0" category="8" />
<EMBEDDEDDATA mmedaddress="0x8AF2" mmedelementsizebits="16" mmedmajorstridebits="0" mmedminorstridebits="0" />
<units>RPM</units>
<decimalpl>0</decimalpl>
<rangehigh>12700.000000</rangehigh>
<datatype>0</datatype>
<unittype>0</unittype>
<DALINK index="0" />
<MATH equation="X/5.12">
<VAR id="X" />
</MATH>
</XDFCONSTANT>
<XDFCONSTANT uniqueid="0x6534" flags="0xC">
<title>B0501 - EVAP Purge Canister Min Temp</title>