Some news (applicable to Z32):
I found that:
Code: Select all
RAM2:14B5 acc_coefx100: rmb 2
RAM2:152E throttle_delta_pos: rmb 1
RAM2:152F throttle_delta_4: rmb 1
RAM2:15A9 throttle_delta_10: rmb 1
RAM2:15DF throttle_filt: rmb 1
acc_coefx100 is an offset added to injection time directly into the injection bank computation routine:
Code: Select all
CODE:98DC ; Compute bank 1 ---------------------------------------------------
CODE:98DC
CODE:98DC tim #1, flags6 ; Bit 0: throttle switch (1=idle)
CODE:98DC ; Bit 1: high octane (if 1, becomes 0 when bit0 of flags5 is set to 1)
CODE:98DC ; Bit 2: neutral switch(1=neutral)
CODE:98DC ; Bit 3: power steering switch (1=on)
CODE:98DC ; Bit 4: A/C switch (1=on)
CODE:98DC ; Bit 7: gear engaged and high gear
CODE:98DF beq icb_11
CODE:98DF
CODE:98E1 ldd afr_var42
CODE:98E4 bra icb_12
CODE:98E4
CODE:98E6
CODE:98E6 icb_11: ; ...
CODE:98E6 ldd afr_bank2_coef
CODE:98E9
CODE:98E9 icb_12: ; ...
CODE:98E9 staa afr_learn_right
CODE:98EC addd afr_bank1_max
CODE:98EF sbca #100
CODE:98F1 jsr mul16_D_P1 ; P1=D=D*P1
CODE:98F1
CODE:98F4 addb inj_tot_latency
CODE:98F7 adca #0
CODE:98F9 addd acc_coefx100
CODE:98FC std inj_bb1
throttle_delta_pos is calculated very early in the throttle computation routine. It's throttle variation over 3 periods (curent-previous value).
throttle_delta_4 is more or less the same, but centered around 128.
throttle_delta_10 is variation over 10 periods and centered around 128.
throttle_filt is the filtered value of throttle (=179 when throttle= 4.04 volts max)
On the graph below, AFR Alpha Learn LHS/RHS are in fact acc_coefx100
AFR alpha LHS is in fact throttle_delta_pos
On the graph below, Injection time LHS is in fact throttle_delta_4 and Injection time RHS is in fact throttle_delta_10
So, now you can track the quick variations of throttle and do additional things.
Some interesting tables:
Code: Select all
DATA:F900 acc_throttle_delta_map:fcb 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ; ...
DATA:F910 acc_throttle_map: fcb 64, 64, 64, 64, 40, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ; ...
DATA:FBC0 acc_temp_map: fcb 143,143,132,125,119,113,108,100, 96, 88, 80, 72, 64, 64, 64, 64 ;
acc_throttle_delta_map is interpolated by 16 with throttle_delta_pos as input (multiplied 3 times by 2 and eventually maxed out)
acc_throttle_map is interpolated by 16 with throttle_filt as input
acc_temp_map is temperature contribution
Code: Select all
CODE:9FEE ; Compute enrichment on throttle position variation ----------------------------
CODE:9FEE
CODE:9FEE ct_46: ; ...
CODE:9FEE tst throttle_var6
CODE:9FF1 bne ct_45
CODE:9FF1
CODE:9FF3 ldaa rpm_d4_lo ; rpm_div_4_lo=lo(Engine speed/50)
CODE:9FF6 cmpa rpm_limit1
CODE:9FF9 bcc ct_45
CODE:9FF9
CODE:9FFB ; Throttle position variation contribution
CODE:9FFB
CODE:9FFB ldaa throttle_delta_pos ; Throttle variation if positive (while opening)
CODE:9FFE asla
CODE:9FFF bcs ct_47
CODE:9FFF
CODE:A001 cmpa throttle_const13
CODE:A004 bcs ct_45
CODE:A004
CODE:A006 asla
CODE:A007 bcs ct_47
CODE:A007
CODE:A009 asla
CODE:A00A bcc ct_48
CODE:A00A
CODE:A00C
CODE:A00C ct_47: ; ...
CODE:A00C ldaa #255
CODE:A00E
CODE:A00E ct_48: ; ...
CODE:A00E ldx #acc_throttle_delta_map
CODE:A011 jsr interp_16 ; X=table adress
CODE:A011 ; A=value to look up
CODE:A011 ;
CODE:A011 ; A=output value
CODE:A011
CODE:A014 staa acc_throttle_delta
CODE:A017 beq ct_45
CODE:A017
CODE:A019 ; Throttle position contribution
CODE:A019
CODE:A019 ldaa throttle_filt ; Low-pass filtered throttle position
CODE:A01C ldx #acc_throttle_map
CODE:A01F jsr interp_16 ; X=table adress
CODE:A01F ; A=value to look up
CODE:A01F ;
CODE:A01F ; A=output value
CODE:A01F
CODE:A022 staa acc_throttle
CODE:A025 beq ct_45
CODE:A025
CODE:A027 ; Engine temperature contribution
CODE:A027
CODE:A027 ldaa engine_temp2 ; engine_temp*1.6+0.5
CODE:A029 ldx #acc_temp_map
CODE:A02C jsr interp_16 ; X=table adress
CODE:A02C ; A=value to look up
CODE:A02C ;
CODE:A02C ; A=output value
CODE:A02C
CODE:A02F staa acc_temp
CODE:A032 beq ct_45
CODE:A032
CODE:A034 ldaa acc_throttle_delta
CODE:A037 ldab acc_throttle
CODE:A03A mul
CODE:A03B std P1
CODE:A03D ldaa acc_temp
CODE:A040 jsr mul16_A_P1 ; P1=D=A*(P1+P2/256)
CODE:A040
CODE:A043 std acc_coef
CODE:A046 ldaa #100
CODE:A048 jsr mul16_A_P1 ; P1=D=A*(P1+P2/256)
CODE:A048
CODE:A04B
CODE:A04B ct_49: ; ...
CODE:A04B std acc_coefx100