minor etb

This commit is contained in:
rusEfi 2017-09-17 22:05:03 -04:00
parent 69e949825d
commit 1b7ffd040b
4 changed files with 5 additions and 1 deletions

View File

@ -108,6 +108,7 @@ void SensorsState::reset() {
void Engine::reset() {
withError = isEngineChartEnabled = false;
etbAutoTune = false;
sensorChartMode = SC_OFF;
actualLastInjection = 0;
fsioTimingAdjustment = 0;

View File

@ -287,6 +287,7 @@ public:
WallFuel wallFuel;
bool etbAutoTune;
/**
* That's the list of pending spark firing events
*/

View File

@ -67,7 +67,7 @@ int PID_AutoTune::Runtime(Logging *logging) {
output = outputStart + oStep;
if (output != prevOutput) {
scheduleMsg(logging, "direction change");
scheduleMsg(logging, "direction change %f", output);
}

View File

@ -857,6 +857,8 @@ static void setSpiMode(int index, bool mode) {
static void enableOrDisable(const char *param, bool isEnabled) {
if (strEqualCaseInsensitive(param, "fastadc")) {
boardConfiguration->isFastAdcEnabled = isEnabled;
} else if (strEqualCaseInsensitive(param, "etb_auto")) {
engine->etbAutoTune = isEnabled;
} else if (strEqualCaseInsensitive(param, "constant_dwell")) {
engineConfiguration->useConstantDwellDuringCranking = isEnabled;
} else if (strEqualCaseInsensitive(param, "binary_mode_console")) {