dwell docs & better command name
This commit is contained in:
parent
1e12cbefd5
commit
4e95a6c002
|
@ -696,7 +696,10 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
* 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
|
||||
/**
|
||||
* Use angle-based duration during cranking
|
||||
* this is equivalent to 'disable cranking_constant_dwell' console command
|
||||
*/
|
||||
engineConfiguration->useConstantDwellDuringCranking = false;
|
||||
engineConfiguration->ignitionDwellForCrankingMs = 6;
|
||||
|
||||
|
|
|
@ -865,7 +865,7 @@ static void enableOrDisable(const char *param, bool isEnabled) {
|
|||
boardConfiguration->isFastAdcEnabled = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "etb_auto")) {
|
||||
engine->etbAutoTune = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "constant_dwell")) {
|
||||
} else if (strEqualCaseInsensitive(param, "cranking_constant_dwell")) {
|
||||
engineConfiguration->useConstantDwellDuringCranking = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "binary_mode_console")) {
|
||||
boardConfiguration->startConsoleInBinaryMode = isEnabled;
|
||||
|
|
Loading…
Reference in New Issue