auto-sync

This commit is contained in:
rusEfi 2015-01-21 09:03:57 -06:00
parent d08f817adc
commit e1a37c1f76
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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;
}