auto-sync
This commit is contained in:
parent
42e02593ae
commit
2fc291fb93
|
@ -192,7 +192,8 @@ static void printSensors(Logging *log, bool fileFormat) {
|
|||
float vehicleSpeed = 0;
|
||||
#endif /* EFI_PROD_CODE */
|
||||
reportSensorF(log, fileFormat, "vss", "kph", vehicleSpeed, 2);
|
||||
reportSensorF(log, fileFormat, "sp2rpm", "x", vehicleSpeed / rpm, 2);
|
||||
float sp2rpm = rpm == 0 ? 0 : vehicleSpeed / rpm;
|
||||
reportSensorF(log, fileFormat, "sp2rpm", "x", sp2rpm, 2);
|
||||
}
|
||||
|
||||
reportSensorI(log, fileFormat, "warn", "count", engine->engineState.warningCounter);
|
||||
|
|
|
@ -97,6 +97,7 @@ Engine::Engine(persistent_config_s *config) {
|
|||
engineState.warmupAfrPid.init(&config->engineConfiguration.warmupAfrPid, 0.5, 1.5);
|
||||
isEngineChartEnabled = false;
|
||||
sensorChartMode = SC_OFF;
|
||||
actualLastInjection = 0;
|
||||
/**
|
||||
* it's important for fixAngle() that engineCycle field never has zero
|
||||
*/
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
InjectionEvent::InjectionEvent() {
|
||||
isSimultanious = false;
|
||||
isOverlapping = false;
|
||||
injectorIndex = 0;
|
||||
}
|
||||
|
||||
event_trigger_position_s::event_trigger_position_s() {
|
||||
|
|
|
@ -97,6 +97,7 @@ void LECalculator::reset() {
|
|||
first = NULL;
|
||||
stack.reset();
|
||||
currentCalculationLogPosition = 0;
|
||||
memset(calcLogAction, 0, sizeof(calcLogAction));
|
||||
}
|
||||
|
||||
void LECalculator::reset(LEElement *element) {
|
||||
|
|
Loading…
Reference in New Issue