diff --git a/firmware/controllers/actuators/boost_control.cpp b/firmware/controllers/actuators/boost_control.cpp index b880ea3957..90097d910b 100644 --- a/firmware/controllers/actuators/boost_control.cpp +++ b/firmware/controllers/actuators/boost_control.cpp @@ -27,8 +27,8 @@ EXTERN_ENGINE; -static boostOpenLoop_Map3D_t boostMapOpen("boostmapopen"); -static boostOpenLoop_Map3D_t boostMapClosed("boostmapclosed"); +static boostOpenLoop_Map3D_t boostMapOpen; +static boostOpenLoop_Map3D_t boostMapClosed; static SimplePwm boostPwmControl("boost"); void BoostController::init(SimplePwm* pwm, const ValueProvider3D* openLoopMap, const ValueProvider3D* closedLoopTargetMap, pid_s* pidParams) { diff --git a/firmware/controllers/actuators/electronic_throttle.cpp b/firmware/controllers/actuators/electronic_throttle.cpp index e694ce5c6d..9ca6dfcd0d 100644 --- a/firmware/controllers/actuators/electronic_throttle.cpp +++ b/firmware/controllers/actuators/electronic_throttle.cpp @@ -93,7 +93,7 @@ #define ETB_MAX_COUNT 2 #endif /* ETB_MAX_COUNT */ -static pedal2tps_t pedal2tpsMap("Pedal2Tps"); +static pedal2tps_t pedal2tpsMap; EXTERN_ENGINE; diff --git a/firmware/controllers/actuators/gppwm/gppwm.cpp b/firmware/controllers/actuators/gppwm/gppwm.cpp index 5761c6b7bb..c4ab489bae 100644 --- a/firmware/controllers/actuators/gppwm/gppwm.cpp +++ b/firmware/controllers/actuators/gppwm/gppwm.cpp @@ -12,10 +12,10 @@ static GppwmChannel channels[GPPWM_CHANNELS]; static OutputPin pins[GPPWM_CHANNELS]; static SimplePwm outputs[GPPWM_CHANNELS]; -static gppwm_Map3D_t table1("GPPWM 1"); -static gppwm_Map3D_t table2("GPPWM 2"); -static gppwm_Map3D_t table3("GPPWM 3"); -static gppwm_Map3D_t table4("GPPWM 4"); +static gppwm_Map3D_t table1; +static gppwm_Map3D_t table2; +static gppwm_Map3D_t table3; +static gppwm_Map3D_t table4; static gppwm_Map3D_t* tables[] = { &table1, diff --git a/firmware/controllers/actuators/idle_thread.cpp b/firmware/controllers/actuators/idle_thread.cpp index 3b5b704277..5668743439 100644 --- a/firmware/controllers/actuators/idle_thread.cpp +++ b/firmware/controllers/actuators/idle_thread.cpp @@ -120,7 +120,7 @@ float getIdlePidMinValue(DECLARE_ENGINE_PARAMETER_SIGNATURE) { static uint32_t lastCrankingCyclesCounter = 0; static float lastCrankingIacPosition; -static iacPidMultiplier_t iacPidMultMap("iacPidMultiplier"); +static iacPidMultiplier_t iacPidMultMap; #if ! EFI_UNIT_TEST diff --git a/firmware/controllers/actuators/vvt.cpp b/firmware/controllers/actuators/vvt.cpp index edd0d908df..2a594cb7ef 100644 --- a/firmware/controllers/actuators/vvt.cpp +++ b/firmware/controllers/actuators/vvt.cpp @@ -22,8 +22,8 @@ EXTERN_ENGINE; -static fsio8_Map3D_u8t vvtTable1("vvt#1"); -static fsio8_Map3D_u8t vvtTable2("vvt#2"); +static fsio8_Map3D_u8t vvtTable1; +static fsio8_Map3D_u8t vvtTable2; void VvtController::init(int index, int bankIndex, int camIndex, const ValueProvider3D* targetMap) { this->index = index; diff --git a/firmware/controllers/algo/accel_enrichment.cpp b/firmware/controllers/algo/accel_enrichment.cpp index 7669c8e1ae..f0c93c7c01 100644 --- a/firmware/controllers/algo/accel_enrichment.cpp +++ b/firmware/controllers/algo/accel_enrichment.cpp @@ -34,7 +34,7 @@ EXTERN_ENGINE; -tps_tps_Map3D_t tpsTpsMap("tpsTps"); +static tps_tps_Map3D_t tpsTpsMap; void WallFuel::resetWF() { wallFuel = 0; diff --git a/firmware/controllers/algo/advance_map.cpp b/firmware/controllers/algo/advance_map.cpp index 38f34b370f..6af3a3ebbd 100644 --- a/firmware/controllers/algo/advance_map.cpp +++ b/firmware/controllers/algo/advance_map.cpp @@ -33,9 +33,8 @@ EXTERN_ENGINE; -static ign_Map3D_t advanceMap("advance"); -// This coeff in ctor parameter is sufficient for int16<->float conversion! -static ign_Map3D_t iatAdvanceCorrectionMap("iat corr"); +static ign_Map3D_t advanceMap; +static ign_Map3D_t iatAdvanceCorrectionMap; // todo: reset this between cranking attempts?! #2735 int minCrankingRpm = 0; diff --git a/firmware/controllers/algo/fuel_math.cpp b/firmware/controllers/algo/fuel_math.cpp index 042d587c8f..be1d3293fa 100644 --- a/firmware/controllers/algo/fuel_math.cpp +++ b/firmware/controllers/algo/fuel_math.cpp @@ -41,11 +41,11 @@ EXTERN_ENGINE; -fuel_Map3D_t fuelPhaseMap("fl ph"); +static fuel_Map3D_t fuelPhaseMap; extern fuel_Map3D_t veMap; extern lambda_Map3D_t lambdaMap; extern baroCorr_Map3D_t baroCorrMap; -mapEstimate_Map3D_t mapEstimationTable("map est"); +static mapEstimate_Map3D_t mapEstimationTable; #if EFI_ENGINE_CONTROL diff --git a/firmware/controllers/core/fsio_core.cpp b/firmware/controllers/core/fsio_core.cpp index 134281d921..c70687e718 100644 --- a/firmware/controllers/core/fsio_core.cpp +++ b/firmware/controllers/core/fsio_core.cpp @@ -21,13 +21,6 @@ #include "fsio_core.h" #include "fsio_impl.h" -extern fsio8_Map3D_f32t fsioTable1; -extern fsio8_Map3D_u8t fsioTable2; -extern fsio8_Map3D_u8t fsioTable3; -extern fsio8_Map3D_u8t fsioTable4; - -static fsio8_Map3D_u8t * fsio8t_tables[] = {NULL, NULL, &fsioTable2, &fsioTable3, &fsioTable4}; - EXTERN_ENGINE; LENameOrdinalPair * LE_FIRST = nullptr; @@ -229,15 +222,8 @@ FsioResult LECalculator::processElement(const LEElement *element DECLARE_ENGINE_ if (index < 1 || index > MAX_TABLE_INDEX) { return unexpected; } else { - if (index == 1) { - fsio8_Map3D_f32t *t = &fsioTable1; - - return t->getValue(xValue, yValue); - } else { - fsio8_Map3D_u8t *t = fsio8t_tables[index]; - - return t->getValue(xValue, yValue); - } + // index parameter is 1-based, getFSIOTable is 0-based + return getFSIOTable(index - 1)->getValue(xValue, yValue); } } case LE_METHOD_FSIO_DIGITAL_INPUT: diff --git a/firmware/controllers/core/fsio_impl.cpp b/firmware/controllers/core/fsio_impl.cpp index 73000a93b3..25515ac324 100644 --- a/firmware/controllers/core/fsio_impl.cpp +++ b/firmware/controllers/core/fsio_impl.cpp @@ -38,10 +38,10 @@ EXTERN_ENGINE; */ #define NO_PWM 0 -fsio8_Map3D_f32t fsioTable1("fsio#1"); -fsio8_Map3D_u8t fsioTable2("fsio#2"); -fsio8_Map3D_u8t fsioTable3("fsio#3"); -fsio8_Map3D_u8t fsioTable4("fsio#4"); +static fsio8_Map3D_f32t fsioTable1; +static fsio8_Map3D_u8t fsioTable2; +static fsio8_Map3D_u8t fsioTable3; +static fsio8_Map3D_u8t fsioTable4; /** * Here we define all rusEfi-specific methods diff --git a/firmware/controllers/lua/lua_hooks.cpp b/firmware/controllers/lua/lua_hooks.cpp index 9f7d62e4c2..69d7d64ceb 100644 --- a/firmware/controllers/lua/lua_hooks.cpp +++ b/firmware/controllers/lua/lua_hooks.cpp @@ -170,7 +170,7 @@ static int lua_setDebug(lua_State* l) { return 0; } -static int lua_stopEngine(lua_State* l) { +static int lua_stopEngine(lua_State*) { doScheduleStopEngine(); return 0; diff --git a/firmware/controllers/math/speed_density.cpp b/firmware/controllers/math/speed_density.cpp index c886dc62f5..6da0b5370a 100644 --- a/firmware/controllers/math/speed_density.cpp +++ b/firmware/controllers/math/speed_density.cpp @@ -26,10 +26,9 @@ EXTERN_ENGINE; -fuel_Map3D_t veMap("VE"); -fuel_Map3D_t ve2Map("VE2"); -lambda_Map3D_t lambdaMap("lambda"); -baroCorr_Map3D_t baroCorrMap("baro"); +fuel_Map3D_t veMap; +lambda_Map3D_t lambdaMap; +baroCorr_Map3D_t baroCorrMap; #define tpMin 0 #define tpMax 100 diff --git a/firmware/util/containers/table_helper.h b/firmware/util/containers/table_helper.h index d293efb02d..a62da63a0b 100644 --- a/firmware/util/containers/table_helper.h +++ b/firmware/util/containers/table_helper.h @@ -29,9 +29,6 @@ public: template> class Map3D : public ValueProvider3D { public: - explicit Map3D(const char*name) { - } - template void init(scaled_channel table[TRowNum][TColNum], const kType rowBins[TRowNum], const kType columnBins[TColNum]) { static_assert(TValueMultiplier::den == mult); diff --git a/firmware/util/datalogging.cpp b/firmware/util/datalogging.cpp index 2a4ee78607..fa4f50d37a 100644 --- a/firmware/util/datalogging.cpp +++ b/firmware/util/datalogging.cpp @@ -43,7 +43,7 @@ /** * @returns true if data does not fit into this buffer */ -bool Logging::validateBuffer(const char *text, uint32_t extraLen) { +bool Logging::validateBuffer(uint32_t extraLen) { if (remainingSize() < extraLen + 1) { #if EFI_PROD_CODE warning(CUSTOM_LOGGING_BUFFER_OVERFLOW, "output overflow %s %d", name, extraLen); @@ -57,7 +57,7 @@ bool Logging::validateBuffer(const char *text, uint32_t extraLen) { void Logging::append(const char *text) { efiAssertVoid(CUSTOM_APPEND_NULL, text != NULL, "append NULL"); uint32_t extraLen = efiStrlen(text); - bool isCapacityProblem = validateBuffer(text, extraLen); + bool isCapacityProblem = validateBuffer(extraLen); if (isCapacityProblem) { return; } diff --git a/firmware/util/datalogging.h b/firmware/util/datalogging.h index bc4b7a608f..19d1f085a4 100644 --- a/firmware/util/datalogging.h +++ b/firmware/util/datalogging.h @@ -47,7 +47,7 @@ public: } //private: - bool validateBuffer(const char *text, uint32_t extraLen); + bool validateBuffer(uint32_t extraLen); const char* const name = nullptr; diff --git a/unit_tests/test_basic_math/test_interpolation_3d.cpp b/unit_tests/test_basic_math/test_interpolation_3d.cpp index d13f8c7adf..3cdca23ef3 100644 --- a/unit_tests/test_basic_math/test_interpolation_3d.cpp +++ b/unit_tests/test_basic_math/test_interpolation_3d.cpp @@ -22,7 +22,7 @@ float map[4][5] = { }; static float getValue(float rpm, float maf) { - Map3D<5, 4, float, float> x("test"); + Map3D<5, 4, float, float> x; x.init(map, mafBins, rpmBins); return x.getValue(rpm, maf);