Page 1 of 3

E4OD Calibration Constants

Posted: 2023 Nov 13, 16:05
by efloth
I noticed a bunch of these are not defined in A1C yet. Does anyone have a directives file for another calibration to assist finding these?

Calibration Constants:
- FN12A(TP_REL_H) = Vehicle speed for 1 - 2 upshift at altitude.
- FN12S(TP_REL_H) = Vehicle speed for 1 - 2 upshift at sea level.
- FN21A(TP_REL_H) = Vehicle speed for 2 - 1 downshift at altitude.
- FN21S(TP_REL_H) = Vehicle speed for 2 - 1 downshift at sea level.
- FN23A(TP_REL_H) = Vehicle speed for 2 - 3 upshift at altitude.
- FN23PPH(TP_REL) = Min VS_RATEPH to allow 2 - 3 upshift.
- FN23S(TP_REL_H) = Vehicle speed for 2 - 3 upshift at sea level.
- FN32A(TP_REL_H) = Vehicle speed for 3 - 2 downshift at altitude.
- FN32S(TP_REL_H) = Vehicle speed for 3 - 2 downshift at sea level.
- FN34A(TP_REL_H) = Vehicle speed for 3 - 4 upshift at altitude.
- FN34PPH(TP_REL) = Minimum VS_RATEPH to allow 3 - 4 upshift.
- FN34S(TP_REL_H) = Vehicle speed for 3 - 4 upshift at sea level.
- FN43A(TP_REL_H) = Vehicle speed for 4 - 3 downshift at altitude.
- FN43S(TP_REL_H) = Vehicle speed for 4 - 3 downshift at sea level.
- FN689D(TP_REL) = Engine speed for downshifts during VSS failure.
- FN689U(TP_REL) = Engine speed for upshifts during VSS failure.
- NE12A = WOT RPM 1 - 2 shift point, altitude.
- NE12S = WOT RPM 1 - 2 shift point, sea level.
- NE23A = WOT RPM 2 - 3 shift point, altitude.
- NE23S = WOT RPM 2 - 3 shift point, sea level.
- NE34A = WOT RPM 3 - 4 shift point, altitude.
- NE34S = WOT RPM 3 - 4 shift point, sea level.

Re: E4OD Calibration Constants

Posted: 2023 Nov 13, 17:17
by decipha
you have an auto ?

Re: E4OD Calibration Constants

Posted: 2023 Nov 13, 17:36
by efloth
yessir - wife needs to drive it sometimes lol

Re: E4OD Calibration Constants

Posted: 2023 Nov 14, 19:50
by efloth
Another issue with A1c XDF:

Hego Amplitude needs to change from 4 columns to 6

Re: E4OD Calibration Constants

Posted: 2023 Nov 14, 20:31
by wwhite
I have most if not all them for KID2.
Could easily get them for SUB2.
I am not working with A1C.

Re: E4OD Calibration Constants

Posted: 2023 Nov 14, 21:58
by efloth
That's awesome! Please share and I'll cross reference to A1C

Re: E4OD Calibration Constants

Posted: 2023 Nov 17, 11:37
by wwhite
KID2:

Code: Select all

func	c29e c2b1  "FN12A"   : UY  : UY 
func    c2b2 c2c5  "FN12S"    :UY:UY
func    c2c6 c2d9  "FN23A"   : UY  : UY 
func    c2da c309  "FN23PPH"   : UW  : UW 
func    c30a c31d  "FN23S"   : UY  : UY 
func	c31e c331  "FN34A"   : UY  : UY 
func    c332 c361  "FN34PPH"   : UW  : UW 
func    c362 c375  "FN34S"   : UY  : UY 
func    c376 c389  "FN21A"   : UW  : UW
func    c38a c39d  "FN21S"   : UY  : UY 
func	c39e c3b1  "FN32A"	:UY:UY
func    c3b2 c3c5  "FN32S"   : UY  : UY 
func	c3c6 c3d9  "FN43A" 	:UY:UY
func    c3da c3ed  "FN43S"   : UY  : UY 
func    c3ee c401  "FN689D"   : UW  : UW 
func    c402 c41d  "FN689U"   : UW  : UW 


sym c182 "NE12A"
sym c184 "NE12S"
sym c186 "NE23A"
sym c188 "NE23S"
sym c18a "NS34A"
sym c18c "NS34S"

Re: E4OD Calibration Constants

Posted: 2023 Nov 17, 12:09
by efloth
You the man. Thank you sir. I'll start working on these. Do you have tcc lock/unlock info for kid2 as well?

Re: E4OD Calibration Constants

Posted: 2023 Nov 17, 12:39
by wwhite
SUB2:

Code: Select all

func	c1b0 c1c3  "FN12A"   : UY  : UY 
func    c1c4 c1d7  "FN12S"    :UY:UY
func    c1d8 c1eb  "FN23A"   : UY  : UY 
func    c1ec c21b  "FN23PPH"   : UW  : UW 
func    c21c c22f  "FN23S"   : UY  : UY 
func	c230 c243  "FN34A"   : UY  : UY 
func    c244 c273  "FN34PPH"   : UW  : UW 
func    c274 c287  "FN34S"   : UY  : UY 
func    c288 c29b  "FN21A"   : UW  : UW
func    c29c c2af  "FN21S"   : UY  : UY 
func	c2b0 c2c3  "FN32A"	:UY:UY
func    c2c4 c2d7  "FN32S"   : UY  : UY 
func	c2d8 c2eb  "FN43A" 	:UY:UY
func    c2ec c2ff  "FN43S"   : UY  : UY 



sym c0a4 "NE12A"
sym c0a6 "NE12S"
sym c0a8 "NE23A"
sym c0aa "NE23S"
sym c0ac "NS34A"
sym c0ae "NS34S"

Re: E4OD Calibration Constants

Posted: 2023 Nov 17, 13:09
by wwhite
E4OD stuff for KID2:

Code: Select all

sym a2 "B2_FLG_FRST_DS_a2" : B 2
sym a2 "B3_FLG_LK_CM_a2" : B 3
sym a2 "B4_FLG_TIP_OUT_a2" : B 4
sym a2 "B5_FLG_CS_FRST_a2" : B 5
sym a2 "B6_FLG_CS_ENG_a2" : B 6
sym a2 "B7_FLG_CS_CM_a2" : B 7

sym de "B0_FLG_RLK_WOT_de" : B 0
sym de "B1_FLG_FRST_CM_de" : B 1
sym de "B2_FLG_UNC_UNLK_de" : B 2
sym de "B3_FLG_UN_CT_de" : B3
sym de "B4_FLG_SCHD_DLY_de" : B4
sym de "B5_FLG_CRV_LST_de" : B5
sym de "B6_FLG_CRV_DS_de" : B6
sym de "B7_FLG_CRV_LK_de" : B 7

sym 340 "ETV_OCM_MIN"
sym 342 "ETVOCM"
sym 344 "IETVOCM"
sym 346 "FN072A_MAPPA_y"
sym 348 "VSBART"
sym 34a "BP_INTR"
sym 34b "CS_SFT_MULT"
sym 34c "GEAR_OLD"
sym 34d "GR_CM_LST"
sym 34e "GR_DS_LST
sym 34f "GR_OLD"

sym 350 "GR_DS_TV"
sym 351 "TV_COUNTS"
sym 353 "VSV_STRT_SFT"
sym 354 "NOV_ACT"
sym 355 "NOV_ACT_LST"
sym 356 "NOVCTR"
sym 357 "VSBART_RT"
sym 358 "IPDL_LST"
sym 359 "PDL_LST"
sym 35a "RLKCTR"
sym 35b "TV_PRES"
sym 35c "TV_STAT"
sym 35d "TV_DYN"
sym 35e "TQ_NET"
sym 35f "SPK_DELTA"

sym 360 "CTR_VSRATE"
sym 362 "DNUN_TM"
sym 364 "TM_TV_SS"
sym 366 "TM_PDL_RES"
sym 368 "TM_SFT_CCO"
sym 36a "TM_UNLK_CONV"
sym 36c "TM_SFT_IN"
sym 36e "TM_DEL_SFT"

sym 372 "TM_4X4L_RES"
sym 374 "TSFETMR"
sym 376 "CYCCTR"

sym 37a "TM_CS_DLY"
sym 37b "TM_CS_ENG"
sym 37c "TM_LK_DLY"
sym 37d "TM_NOV_CALC"
sym 37e "TP_STRT_SFT"
sym 37f "TM_SS1_GR2"

sym 380 "TM_UN_CT"
sym 381 "TM_LK_CONV"
sym 382 "TM_SFT_12MN"

sym c1db "VMPMAX"
sym c1dc "TMNVLK"
sym c1dd "TMNVCAL"

sym c1e1 "BPUNMH"
sym c1e2 "BPUNMN"
sym c1e3 "BPUNMX"
sym c1e4 "NELUMN"

sym c1e6 "CTDLY"
sym c1e7 "TRADLY"
sym c1e8 "TRDDLY"
sym c1e9 "BRKDLY"
sym c1ea "PRNDLY"
sym c1eb "LUDLY"

sym c1ec "CRVDLY"
sym c1ed "D21DLY"
sym c1ee "D32DLY"
sym c1ef "D43DLY"

sym c1f2 "NELKWH"
sym c1f4 "NELKWO"
sym c1f6 "RTLKWH"
sym c1f8 "RTLKWO"
sym c1fa "SRLK2"
sym c1fc "SRLK3"
sym c1fe "SRLK4"

sym c200 "SW_MLK"
sym c201 "SW_RLK"

func    c586 c59d  "FN624"   : UW  : UW 

If there is something specific, I probably have it, there is a lot of stuff for the E4OD.