switching to target RPM curve

This commit is contained in:
rusefi 2017-12-24 22:14:08 -05:00
parent cd40c92697
commit 612904d808
2 changed files with 2 additions and 2 deletions

View File

@ -556,7 +556,7 @@ static void setCanDefaults(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
engineConfiguration->canNbcType = CAN_BUS_MAZDA_RX8;
}
void setTargetRpmCurve(int rpm PASS_ENGINE_PARAMETER_SUFFIX) {
void setTargetRpmCurve(int rpm DECLARE_ENGINE_PARAMETER_SIGNATURE) {
setTableBin2(engineConfiguration->cltIdleRpmBins, DWELL_CURVE_SIZE, -40, 90, 0);
setTableBin2(engineConfiguration->cltIdleRpm, DWELL_CURVE_SIZE, rpm, rpm, 0);
}

View File

@ -48,7 +48,7 @@ typedef struct {
void prepareVoidConfiguration(engine_configuration_s *activeConfiguration);
void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void setTargetRpmCurve(int rpm PASS_ENGINE_PARAMETER_SUFFIX);
void setTargetRpmCurve(int rpm DECLARE_ENGINE_PARAMETER_SIGNATURE);
void setAfrMap(afr_table_t table, float value);
void setMap(fuel_table_t table, float value);
void setWholeFuelMap(float value DECLARE_ENGINE_PARAMETER_SUFFIX);