mirror of https://github.com/rusefi/rusefi-1.git
auto-sync
This commit is contained in:
parent
1091825172
commit
2089f03a1d
|
@ -43,6 +43,7 @@ void setBmwE34(DECLARE_ENGINE_PARAMETER_F) {
|
|||
// Trigger configuration
|
||||
// engineConfiguration->trigger.type = TT_TOOTHED_WHEEL_60_2;
|
||||
setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR);
|
||||
// set_global_trigger_offset_angle 84
|
||||
engineConfiguration->globalTriggerAngleOffset = 84;
|
||||
|
||||
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL;
|
||||
|
|
|
@ -132,6 +132,10 @@ void setWholeFuelMap(float value DECLARE_ENGINE_PARAMETER_S) {
|
|||
setMap(config->fuelTable, value);
|
||||
}
|
||||
|
||||
void setWholeIgnitionIatCorr(float value DECLARE_ENGINE_PARAMETER_S) {
|
||||
setMap(config->ignitionIatCorrTable, value);
|
||||
}
|
||||
|
||||
void setFuelTablesLoadBin(float minValue, float maxValue DECLARE_ENGINE_PARAMETER_S) {
|
||||
setTableBin2(config->injPhaseLoadBins, FUEL_LOAD_COUNT, minValue, maxValue, 1);
|
||||
setTableBin2(config->veLoadBins, FUEL_LOAD_COUNT, minValue, maxValue, 1);
|
||||
|
|
|
@ -49,6 +49,7 @@ void prepareVoidConfiguration(engine_configuration_s *activeConfiguration);
|
|||
void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F);
|
||||
void setMap(fuel_table_t table, float value);
|
||||
void setWholeFuelMap(float value DECLARE_ENGINE_PARAMETER_S);
|
||||
void setWholeIgnitionIatCorr(float value DECLARE_ENGINE_PARAMETER_S);
|
||||
void setFuelTablesLoadBin(float minValue, float maxValue DECLARE_ENGINE_PARAMETER_S);
|
||||
void setWholeIatCorrTimingTable(float value DECLARE_ENGINE_PARAMETER_S);
|
||||
void setWholeTimingTable(angle_t value DECLARE_ENGINE_PARAMETER_S);
|
||||
|
|
|
@ -1017,6 +1017,7 @@ void initSettings(engine_configuration_s *engineConfiguration) {
|
|||
addConsoleActionF("set_whole_timing_map", setWholeTimingMapCmd);
|
||||
addConsoleActionF("set_whole_fuel_map", setWholeFuelMapCmd);
|
||||
addConsoleActionF("set_whole_ve_map", setWholeVeCmd);
|
||||
addConsoleActionF("set_whole_ign_corr_map", setWholeIgnitionIatCorr);
|
||||
addConsoleActionSSS("set_fuel_map", setFuelMap);
|
||||
|
||||
addConsoleActionF("set_whole_timing_map", setWholeTimingMap);
|
||||
|
|
Loading…
Reference in New Issue