auto-sync
This commit is contained in:
parent
d08f817adc
commit
e1a37c1f76
|
@ -50,9 +50,17 @@ typedef char le_formula_t[LE_COMMAND_LENGTH];
|
|||
#define IGN_LOAD_COUNT 16
|
||||
#define IGN_RPM_COUNT 16
|
||||
|
||||
// todo: merge these two types together?
|
||||
typedef float fuel_table_t[FUEL_LOAD_COUNT][FUEL_RPM_COUNT];
|
||||
typedef float ignition_table_t[IGN_LOAD_COUNT][IGN_RPM_COUNT];
|
||||
|
||||
// todo: rename this structure one all tables migrated
|
||||
typedef struct {
|
||||
float loadBins[IGN_LOAD_COUNT];
|
||||
float rpmBins[IGN_RPM_COUNT];
|
||||
ignition_table_t map;
|
||||
} full_i_table_s;
|
||||
|
||||
typedef brain_pin_e egt_cs_array_t[MAX31855_CS_COUNT];
|
||||
|
||||
#define DWELL_CURVE_SIZE 8
|
||||
|
|
|
@ -262,5 +262,5 @@ int getRusEfiVersion(void) {
|
|||
return 1; // this is here to make the compiler happy about the unused array
|
||||
if (UNUSED_CCM_SIZE == 0)
|
||||
return 1; // this is here to make the compiler happy about the unused array
|
||||
return 20150120;
|
||||
return 20150121;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue