TS injector bench test pulse is too short fix #4192
This commit is contained in:
parent
723491d98d
commit
a2af7895bb
|
@ -28,6 +28,7 @@ Release template (copy/paste this for new release):
|
||||||
- ETB low limit is now configurable #4119
|
- ETB low limit is now configurable #4119
|
||||||
- Advanced Trigger option: require engine phase synchronization in sequential mode #4151
|
- Advanced Trigger option: require engine phase synchronization in sequential mode #4151
|
||||||
- Maintainability: frequency sensors need a simple event counter in the logs #4173
|
- Maintainability: frequency sensors need a simple event counter in the logs #4173
|
||||||
|
- TS bench test commands are now configurable #4192
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Make 36-2 trigger sync parameters more generous #4132
|
- Make 36-2 trigger sync parameters more generous #4132
|
||||||
|
|
|
@ -55,6 +55,10 @@ void setDefaultBaseEngine() {
|
||||||
// Fuel pump
|
// Fuel pump
|
||||||
engineConfiguration->startUpFuelPumpDuration = 4;
|
engineConfiguration->startUpFuelPumpDuration = 4;
|
||||||
|
|
||||||
|
engineConfiguration->benchTestOnTime = 4;
|
||||||
|
engineConfiguration->benchTestOffTime = 500;
|
||||||
|
engineConfiguration->benchTestCount = 3;
|
||||||
|
|
||||||
// Fans
|
// Fans
|
||||||
engineConfiguration->fanOnTemperature = 95;
|
engineConfiguration->fanOnTemperature = 95;
|
||||||
engineConfiguration->fanOffTemperature = 91;
|
engineConfiguration->fanOffTemperature = 91;
|
||||||
|
|
|
@ -453,7 +453,7 @@ void executeTSCommand(uint16_t subsystem, uint16_t index) {
|
||||||
case TS_IGNITION_CATEGORY:
|
case TS_IGNITION_CATEGORY:
|
||||||
if (!running) {
|
if (!running) {
|
||||||
/* WARN: fixed charge time */
|
/* WARN: fixed charge time */
|
||||||
doRunSparkBench(index, 300.0, 4.0,
|
doRunSparkBench(index, 300.0, engineConfiguration->benchTestOnTime,
|
||||||
engineConfiguration->benchTestOffTime, engineConfiguration->benchTestCount);
|
engineConfiguration->benchTestOffTime, engineConfiguration->benchTestCount);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -2117,6 +2117,12 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
||||||
commandButton = "Solenoid #5", cmd_test_sol5
|
commandButton = "Solenoid #5", cmd_test_sol5
|
||||||
commandButton = "Solenoid #6", cmd_test_sol6
|
commandButton = "Solenoid #6", cmd_test_sol6
|
||||||
|
|
||||||
|
dialog = testOther
|
||||||
|
field = "Count", benchTestCount
|
||||||
|
field = "On Time", benchTestOnTime
|
||||||
|
field = "Off Time", benchTestOffTime
|
||||||
|
panel = testSolenoids
|
||||||
|
|
||||||
dialog = injectionSettingsEast, "", yAxis
|
dialog = injectionSettingsEast, "", yAxis
|
||||||
panel = testInjectors
|
panel = testInjectors
|
||||||
field = ""
|
field = ""
|
||||||
|
@ -3677,7 +3683,7 @@ dialog = tcuControls, "Transmission Settings"
|
||||||
dialog = ioTest, "Bench Test & Commands", xAxis
|
dialog = ioTest, "Bench Test & Commands", xAxis
|
||||||
panel = testSpark
|
panel = testSpark
|
||||||
panel = testInjectors
|
panel = testInjectors
|
||||||
panel = testSolenoids
|
panel = testOther
|
||||||
panel = testLuaOut
|
panel = testLuaOut
|
||||||
panel = testMisc
|
panel = testMisc
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue