dead code?

This commit is contained in:
rusefillc 2021-12-07 19:33:07 -05:00
parent 916fef0239
commit b771082419
2 changed files with 0 additions and 15 deletions

View File

@ -23,8 +23,4 @@ void slowStartStopButtonCallback();
void setMockVoltage(int hwChannel, float voltage);
#endif
void setMockMapVoltage(float voltage);
void setMockAfrVoltage(float voltage);
void setMockMafVoltage(float voltage);
void printCurrentState(Logging *logging, int seconds, const char *engineTypeName, const char *firmwareBuildId);

View File

@ -41,17 +41,6 @@ void setMockVoltage(int hwChannel, float voltage) {
engine->engineState.mockAdcState.setMockVoltage(hwChannel, voltage);
}
void setMockMafVoltage(float voltage) {
setMockVoltage(engineConfiguration->mafAdcChannel, voltage);
}
void setMockAfrVoltage(float voltage) {
setMockVoltage(engineConfiguration->afr.hwChannel, voltage);
}
void setMockMapVoltage(float voltage) {
setMockVoltage(engineConfiguration->map.sensor.hwChannel, voltage);
}
#endif /* EFI_ENABLE_MOCK_ADC */
#if !EFI_UNIT_TEST