everybody loves a literally empty function

only:uaefi
This commit is contained in:
Matthew Kennedy 2024-12-24 04:58:51 -05:00 committed by rusefillc
parent faf8a33be2
commit 74c04d64b3
3 changed files with 0 additions and 6 deletions

View File

@ -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
}

View File

@ -81,9 +81,6 @@ EngineState::EngineState() {
timeSinceLastTChargeK.reset(getTimeNowNt());
}
void EngineState::updateSlowSensors() {
}
void EngineState::updateSparkSkip() {
#if EFI_LAUNCH_CONTROL
engine->softSparkLimiter.updateTargetSkipRatio(luaSoftSparkSkip, tractionControlSparkSkip);

View File

@ -16,7 +16,6 @@ class EngineState : public engine_state_s {
public:
EngineState();
void periodicFastCallback();
void updateSlowSensors();
void updateTChargeK(float rpm, float tps);
void updateSparkSkip();