dwell docs
This commit is contained in:
parent
01045db270
commit
2db8809198
|
@ -691,8 +691,12 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
|
||||
setMazdaMiataNbTpsTps(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
setConstantDwell(4 PASS_ENGINE_PARAMETER_SUFFIX); // 4ms is global default dwell
|
||||
// disable constant_dwell
|
||||
/**
|
||||
* 4ms is global default dwell for the whole RPM range
|
||||
* if you only have one coil and many cylinders or high RPM you would need lower value at higher RPM
|
||||
*/
|
||||
setConstantDwell(4 PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
// Use angle-based duration during cranking
|
||||
engineConfiguration->useConstantDwellDuringCranking = false;
|
||||
engineConfiguration->ignitionDwellForCrankingMs = 6;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Jan 26 23:18:47 EST 2019
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Feb 05 23:48:04 EST 2019
|
||||
// begin
|
||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||
|
@ -1022,6 +1022,7 @@ typedef struct {
|
|||
*/
|
||||
float primingSquirtDurationMs;
|
||||
/**
|
||||
* Used if useConstantDwellDuringCranking is TRUE
|
||||
* offset 100
|
||||
*/
|
||||
float ignitionDwellForCrankingMs;
|
||||
|
@ -2480,4 +2481,4 @@ typedef struct {
|
|||
|
||||
#endif
|
||||
// end
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Jan 26 23:18:47 EST 2019
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Feb 05 23:48:04 EST 2019
|
||||
|
|
|
@ -289,7 +289,7 @@ int16_t tpsErrorDetectionTooHigh;+TPS error detection, what TPS % value is unrea
|
|||
|
||||
cranking_parameters_s cranking
|
||||
float primingSquirtDurationMs;;"*C", 1, 0, -40, 200, 1
|
||||
float ignitionDwellForCrankingMs;;"ms", 1, 0, 0, 200, 1
|
||||
float ignitionDwellForCrankingMs;Used if useConstantDwellDuringCranking is TRUE;"ms", 1, 0, 0, 200, 1
|
||||
float crankingChargeAngle;+While cranking (which causes battery voltage to drop) we can calculate dwell time in shaft\ndegrees, not in absolute time as in running mode.\nset cranking_charge_angle X;"deg", 1, 0, 0, 3000.0, 0
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue