From 0b98f1d9fc178e97ade0cde2394e1099db6d7cb9 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Wed, 3 Dec 2014 07:04:17 -0600 Subject: [PATCH] auto-sync --- firmware/controllers/engine_controller.cpp | 5 +++++ firmware/rusefi.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/engine_controller.cpp b/firmware/controllers/engine_controller.cpp index f15987b8e2..70882db2d0 100644 --- a/firmware/controllers/engine_controller.cpp +++ b/firmware/controllers/engine_controller.cpp @@ -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); } diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index ff70c838f6..a9628a0d75 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -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; }