parent
faf8a33be2
commit
74c04d64b3
|
@ -202,8 +202,6 @@ void Engine::updateSlowSensors() {
|
|||
float rpm = Sensor::getOrZero(SensorType::Rpm);
|
||||
triggerCentral.isEngineSnifferEnabled = rpm < engineConfiguration->engineSnifferRpmThreshold;
|
||||
getEngineState()->sensorChartMode = rpm < engineConfiguration->sensorSnifferRpmThreshold ? engineConfiguration->sensorChartMode : SC_OFF;
|
||||
|
||||
engineState.updateSlowSensors();
|
||||
#endif // EFI_SHAFT_POSITION_INPUT
|
||||
}
|
||||
|
||||
|
|
|
@ -81,9 +81,6 @@ EngineState::EngineState() {
|
|||
timeSinceLastTChargeK.reset(getTimeNowNt());
|
||||
}
|
||||
|
||||
void EngineState::updateSlowSensors() {
|
||||
}
|
||||
|
||||
void EngineState::updateSparkSkip() {
|
||||
#if EFI_LAUNCH_CONTROL
|
||||
engine->softSparkLimiter.updateTargetSkipRatio(luaSoftSparkSkip, tractionControlSparkSkip);
|
||||
|
|
|
@ -16,7 +16,6 @@ class EngineState : public engine_state_s {
|
|||
public:
|
||||
EngineState();
|
||||
void periodicFastCallback();
|
||||
void updateSlowSensors();
|
||||
void updateTChargeK(float rpm, float tps);
|
||||
|
||||
void updateSparkSkip();
|
||||
|
|
Loading…
Reference in New Issue