rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Functions
toyota_jz.cpp File Reference

Functions

static void common2jz ()
 
void setToyota_2jz_vics ()
 

Function Documentation

◆ common2jz()

static void common2jz ( )
static

http://thesafetyaversionsociety.com/wordpress/wp-content/uploads/2010/08/Troubleshooting-2JZ-GTE.pdf pages 44&46

Definition at line 26 of file toyota_jz.cpp.

26 {
27 strcpy(engineConfiguration->engineMake, ENGINE_MAKE_TOYOTA);
28 strcpy(engineConfiguration->engineCode, "2JZ");
29 strcpy(engineConfiguration->vehicleName, "VVT example");
30
33 engineConfiguration->firingOrder = FO_1_5_3_6_2_4;
34 // set ignition_mode 1
35 engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS;
36
38
39 // chartsize 450
41
43
45
46 /**
47 * http://thesafetyaversionsociety.com/wordpress/wp-content/uploads/2010/08/Troubleshooting-2JZ-GTE.pdf
48 * pages 44&46
49 */
50 engineConfiguration->clt.config = {-20, 40, 120.0, 15000, 1200, 200.0, 2700};
51 engineConfiguration->iat.config = {-20, 40, 120.0, 15000, 1200, 200.0, 2700};
52
53}
@ Unassigned
static constexpr engine_configuration_s * engineConfiguration

Referenced by setToyota_2jz_vics().

Here is the caller graph for this function:

◆ setToyota_2jz_vics()

void setToyota_2jz_vics ( )

TOYOTA_2JZ_GTE_VVTi set engine_type 44

Definition at line 59 of file toyota_jz.cpp.

59 {
60 common2jz();
61
64
65 engineConfiguration->vvtMode[0] = VVT_TOYOTA_3_TOOTH;
66
67 // set global_trigger_offset_angle 155
69
70 engineConfiguration->ignitionMode = IM_WASTED_SPARK; // just for now
71 engineConfiguration->injectionMode = IM_BATCH; // just for now
73
74 // todo: these magic values would be hardcoded once we find out proper magic values!
75 // engineConfiguration->scriptSetting[4] = 175 - 45;
76 // engineConfiguration->scriptSetting[5] = 175 + 45;
77
78}
void setCrankOperationMode()
static void common2jz()
Definition toyota_jz.cpp:26

Referenced by applyEngineType().

Here is the call graph for this function:
Here is the caller graph for this function:

Go to the source code of this file.