minor etb
This commit is contained in:
parent
32bae64925
commit
5a6f42d1fa
|
@ -108,6 +108,7 @@ void SensorsState::reset() {
|
|||
|
||||
void Engine::reset() {
|
||||
withError = isEngineChartEnabled = false;
|
||||
etbAutoTune = false;
|
||||
sensorChartMode = SC_OFF;
|
||||
actualLastInjection = 0;
|
||||
fsioTimingAdjustment = 0;
|
||||
|
|
|
@ -287,6 +287,7 @@ public:
|
|||
|
||||
WallFuel wallFuel;
|
||||
|
||||
bool etbAutoTune;
|
||||
/**
|
||||
* That's the list of pending spark firing events
|
||||
*/
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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")) {
|
||||
|
|
Loading…
Reference in New Issue