AfterStart Enrichment #1230
This commit is contained in:
parent
0e457ecedb
commit
f08b1542b0
|
@ -155,6 +155,9 @@ struct_no_prefix engine_configuration_s
|
|||
#define BARO_CORR_SIZE 4
|
||||
|
||||
#define MAF_DECODING_COUNT 256
|
||||
#define AFTERSTART_HOLD_CURVE_SIZE 8
|
||||
#define AFTERSTART_DECAY_CURVE_SIZE 8
|
||||
#define AFTERSTART_ENRICH_CURVE_SIZE 8
|
||||
|
||||
custom fuel_table_t 4*@@FUEL_RPM_COUNT@@x@@FUEL_LOAD_COUNT@@ array, F32, @OFFSET@, [@@FUEL_RPM_COUNT@@x@@FUEL_LOAD_COUNT@@],"ms", 1, 0, 0.0, 500.0, 2
|
||||
custom ve_table_t 4*@@FUEL_RPM_COUNT@@x@@FUEL_LOAD_COUNT@@ array, F32, @OFFSET@, [@@FUEL_RPM_COUNT@@x@@FUEL_LOAD_COUNT@@],"%", 1, 0, 0, 999.0, 2
|
||||
|
@ -1191,13 +1194,20 @@ uint8_t[4] unusuedsw;
|
|||
uint8_t[IAC_PID_MULT_SIZE] iacPidMultLoadBins;;"Load", 1, 0.0, 0, 500.0, 2
|
||||
uint8_t[IAC_PID_MULT_SIZE] iacPidMultRpmBins;;"RPM", @@RPM_1_BYTE_PACKING_MULT@@, 0, 0.0, 12000.0, 0
|
||||
|
||||
int[527] mainUnusedEnd;
|
||||
int[495] mainUnusedEnd;
|
||||
|
||||
! end of engine_configuration_s
|
||||
end_struct
|
||||
|
||||
engine_configuration_s engineConfiguration;
|
||||
|
||||
|
||||
float[AFTERSTART_HOLD_CURVE_SIZE] afterstartCoolantBins;;"C", 1, 0, -100.0, 250.0, 0
|
||||
float[AFTERSTART_HOLD_CURVE_SIZE] afterstartHoldTime;;"Seconds", 1, 0, 0, 100, 1
|
||||
float[AFTERSTART_ENRICH_CURVE_SIZE] afterstartEnrich;;"%", 1, 0, 0, 600, 1
|
||||
float[AFTERSTART_DECAY_CURVE_SIZE] afterstartDecayTime;;"Seconds", 1, 0, 0, 100, 1
|
||||
|
||||
|
||||
boost_table_t boostTableOpenLoop;
|
||||
uint8_t[BOOST_LOAD_COUNT] boostMapBins;;"", @@LOAD_1_BYTE_PACKING_MULT@@, 0, 0, 600.0, 1
|
||||
uint8_t[BOOST_RPM_COUNT] boostRpmBins;;"RPM", @@RPM_1_BYTE_PACKING_MULT@@, 0, 0.0, 12000.0, 0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Thu Mar 26 11:42:18 EDT 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Fri Mar 27 12:12:49 EDT 2020
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -38,6 +38,16 @@ public class Fields {
|
|||
public static final int afrRpmBins_offset = 18912;
|
||||
public static final int afrTable_offset = 18592;
|
||||
public static final int afterCrankingIACtaperDuration_offset = 2036;
|
||||
public static final int AFTERSTART_DECAY_CURVE_SIZE = 8;
|
||||
public static final int AFTERSTART_ENRICH_CURVE_SIZE = 8;
|
||||
public static final int AFTERSTART_HOLD_CURVE_SIZE = 8;
|
||||
public static final int afterstartCoolantBins_offset = 6120;
|
||||
public static final int afterstartDecayTime_offset = 6216;
|
||||
public static final int afterstartDecayTime_offset_hex = 1848;
|
||||
public static final int afterstartEnrich_offset = 6184;
|
||||
public static final int afterstartEnrich_offset_hex = 1828;
|
||||
public static final int afterstartHoldTime_offset = 6152;
|
||||
public static final int afterstartHoldTime_offset_hex = 1808;
|
||||
public static final int alFIn_offset = 4024;
|
||||
public static final int alignEngineSnifferAtTDC_offset = 744;
|
||||
public static final int alternator_antiwindupFreq_offset = 1764;
|
||||
|
|
Loading…
Reference in New Issue