auto-sync
This commit is contained in:
parent
12542ff730
commit
0b98f1d9fc
|
@ -330,6 +330,10 @@ static void setUserOutput(const char *indexStr, const char *quotedLine, Engine *
|
||||||
strcpy(engine->engineConfiguration->bc.le_formulas[index], l);
|
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;
|
static pin_output_mode_e d = OM_DEFAULT;
|
||||||
|
|
||||||
void initEngineContoller(Engine *engine) {
|
void initEngineContoller(Engine *engine) {
|
||||||
|
@ -439,5 +443,6 @@ void initEngineContoller(Engine *engine) {
|
||||||
}
|
}
|
||||||
|
|
||||||
addConsoleActionSSP("set_user_out", (VoidCharPtrCharPtrVoidPtr) setUserOutput, engine);
|
addConsoleActionSSP("set_user_out", (VoidCharPtrCharPtrVoidPtr) setUserOutput, engine);
|
||||||
|
addConsoleActionSS("set_float", (VoidCharPtrCharPtr)setFloat);
|
||||||
initEval(engine);
|
initEval(engine);
|
||||||
}
|
}
|
||||||
|
|
|
@ -265,5 +265,5 @@ int getRusEfiVersion(void) {
|
||||||
return 1; // this is here to make the compiler happy about the unused array
|
return 1; // this is here to make the compiler happy about the unused array
|
||||||
if (UNUSED_CCM_SIZE == 0)
|
if (UNUSED_CCM_SIZE == 0)
|
||||||
return 1; // this is here to make the compiler happy about the unused array
|
return 1; // this is here to make the compiler happy about the unused array
|
||||||
return 20141201;
|
return 20141203;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue