Page 3 of 3

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Fri Jan 08, 2021 2:03 am
by Run_Stop_Restore
First Part of Dwell Time Measurements:

Today i finally got my measure setup in the car complete and could measure the stock dwell time for the EDM CA18DET ECU.
I used the quickest Sample Rate available at 0.1ms and measured at 850rpm in Idle. I'm going to measure all other rpm's in 500rpm increments within the next few days.
Seems to be around 3ms for 850rpm.
dwell_time.png
(70.19 KiB) Downloaded 1799 times

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Tue Jan 19, 2021 6:17 am
by Run_Stop_Restore
I did some more measurements today at 2500rpm, 3000rpm and 5000rpm and the Stock ROM will adjust the Dwell to 1.75ms throughout the Rev Range.
My plan now is to adjust the base "Dwell Time" Table and scale the Dwell Duty at idle rpm down to avoid overheating the Coils.

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Mon Jan 25, 2021 12:01 pm
by Matt
I don't have my S14 200SX anymore, but the measurements I got were around the 3-3.4ms mark. However that was just around idle and rev upto 3000rpm. I never got high rev readings

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Fri May 14, 2021 11:21 pm
by Run_Stop_Restore
@ Matt or anybody who can help: Is there any kind of transient enrichtment for the CA18DET EDM ECU?
My calibration is spot on steady state but quick throttle opening causes a short lean spike, nothing drastic but it would be nice to deal with it via transient fueling.

Thanks

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Sat May 15, 2021 10:00 am
by Matt
It is something I'm looking at the moment. I just found the R32 tables, so trying to locate similar code in the CA18DET

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Sun May 16, 2021 2:22 pm
by Matt
Spent half a day on this but didn't get a huge amount further. Code is quite different from HCR32 unforutnately. There are two sets of enrichment tables used as part of the final injection calculations

Edit your S13_CA18DET_128_E.adr file to add these

Code: Select all

ASYNC_BASE_TIF_TABLE,&H3950,16,1,16,1
ASYNC_Q_OFFSET_RPM,&H3960,16,1,16,1

# Enrich vs temp
ADD_MAP1,&H38C0,16,1,16,1
# Enrich vs TP
ADD_MAP2,&H38B0,16,1,16,1
# Enrich vs RPM
ADD_MAP3,&H38D0,16,1,16,1

# Wall vs temp
ADD_MAP4,&H3870,16,1,16,1
# Wall vs TP
ADD_MAP5,&H35D0,16,1,16,1
# Wall vs RPM
ADD_MAP6,&H3880,16,1,16,1
Also found some other tables for fuel cut/recovery based on AC and gear. These will not work in the current version due to some renaming

Code: Select all

FUEL_RECOVER_HIGH_GEAR,&H36B0,16,1,16,1
FUEL_CUT_HIGH_GEAR,&H36A0,16,1,16,1
FUEL_RECOVER_LOW_GEAR,&H36C0,16,1,16,1
FUEL_CUT_LOW_GEAR,&H36D0,16,1,16,1
FUEL_RECOVER_AC,&H36E0,16,1,16,1
FUEL_CUT_AC,&H36F0,16,1,16,1

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Sun May 16, 2021 2:27 pm
by Matt
Attached are the screens. Currently they are just ADD 1-6 for now but I need to put the correct indexes against them

Tables are temp x TP x RPM based. If you increase/decrease temp it should affect the whole range

It looks they are multiplier by TPS position, but there is no TPS indexed tables I can see here which go into the main enrichment routines

Code: Select all

8409 : BD 86 F6 	"   "		jsr	SUB_86F6_AD_Converter
840C : BD 87 A3 	"   "		jsr	SUB_87A3_Calculate_TP_Limits
840F : BD 89 83 	"   "		jsr	SUB_8983_After_Start_Injection
8412 : BD 8A 11 	"   "		jsr	SUB_8A11_TPS_Calculation
8415 : BD 8B F5 	"   "		jsr	SUB_8BF5_Enrich_Calc
8418 : BD 8C 4A 	"  J"		jsr	SUB_8C4A_Throttle_TP_Adjustment
841B : BD 8D 4F 	"  O"		jsr	SUB_8D4F_TPS_Enrich
841E : BD 8E 38 	"  8"		jsr	JSR_8E38_AS_EnrichCalculation
8421 : BD 8E 75 	"  u"		jsr	SUB_8E75_CalculateFurtherEnrichment
8424 : BD 8E BF 	"   "		jsr	SUB_8EBF_Crank_Counter
8427 : BD 92 F7 	"   "		jsr	SUB_92F7_Async_Injection
842A : BD 8F 9D 	"   "		jsr	SUB_8F9D_Calculate_rev_speed?
842D : BD 92 30 	"  0"		jsr	SUB_9230_Calculate_Total_Injection_Time
8430 : BD 92 98 	"   "		jsr	SUB_9298_Calculate_Final_Injector_Time

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Sun May 16, 2021 7:53 pm
by Matt
Updated image of the added maps for CA18DET. I'll try and get this release up tomorrow. I've got to add in some other things so see how it goes

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Tue May 18, 2021 9:02 am
by Matt
Release is up with the maps. These are all the maps now identified in this ECU

Re: New User - few (tons) of Questions on CA18DET EDM ECU

Posted: Fri May 21, 2021 10:45 pm
by Run_Stop_Restore
Thanks mate, you're the man!