auto-sync

This commit is contained in:
rusEfi 2014-12-03 07:04:17 -06:00
parent 12542ff730
commit 0b98f1d9fc
2 changed files with 6 additions and 1 deletions

View File

@ -330,6 +330,10 @@ static void setUserOutput(const char *indexStr, const char *quotedLine, Engine *
strcpy(engine->engineConfiguration->bc.le_formulas[index], l);
}
static void setFloat(const char *offsetStr, const char *valueStr) {
}
static pin_output_mode_e d = OM_DEFAULT;
void initEngineContoller(Engine *engine) {
@ -439,5 +443,6 @@ void initEngineContoller(Engine *engine) {
}
addConsoleActionSSP("set_user_out", (VoidCharPtrCharPtrVoidPtr) setUserOutput, engine);
addConsoleActionSS("set_float", (VoidCharPtrCharPtr)setFloat);
initEval(engine);
}

View File

@ -265,5 +265,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 20141201;
return 20141203;
}