From 5d0aac56e9701f83dc0db6699540c8fbc72ea47d Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 8 Aug 2022 22:48:13 -0400 Subject: [PATCH] VVT target to allow negative values #4424 --- firmware/CHANGELOG.md | 1 + firmware/integration/rusefi_config.txt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/firmware/CHANGELOG.md b/firmware/CHANGELOG.md index 7b7db6a8bd..62f29787b9 100644 --- a/firmware/CHANGELOG.md +++ b/firmware/CHANGELOG.md @@ -42,6 +42,7 @@ Release template (copy/paste this for new release): - custom skipped wheel could be located on camshaft #4377 - it's impossible to receive AcceleratorPedal sensor via CAN/Lua #4369 - MRE stepper disables LS2 control #4381 + - VVT target tables allow negative values #4424 ### Removed - ICU trigger input logic since it is unused in any current ECU #639 diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index ef0778f518..252eccbb09 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -1630,11 +1630,11 @@ uint16_t[FUEL_RPM_COUNT x FUEL_LOAD_COUNT] autoscale mapEstimateTable;;"kPa", 0. uint16_t[FUEL_LOAD_COUNT] autoscale mapEstimateTpsBins;;"% TPS", {1/@@TPS_2_BYTE_PACKING_MULT@@}, 0, 0, 100, 1 uint16_t[FUEL_RPM_COUNT] mapEstimateRpmBins;;"RPM", 1, 0, 0, 18000, 0 -uint8_t[SCRIPT_TABLE_8 x SCRIPT_TABLE_8] vvtTable1;;"value", 1, 0, 0, 255, 0 +int8_t[SCRIPT_TABLE_8 x SCRIPT_TABLE_8] vvtTable1;;"value", 1, 0, 0, 125, -125 uint16_t[SCRIPT_TABLE_8] vvtTable1LoadBins;;"L", 1, 0, 0, 255, 0 uint16_t[SCRIPT_TABLE_8] vvtTable1RpmBins;;"RPM", 1, 0, 0, 18000, 0 -uint8_t[SCRIPT_TABLE_8 x SCRIPT_TABLE_8] vvtTable2;;"value", 1, 0, 0, 255, 0 +int8_t[SCRIPT_TABLE_8 x SCRIPT_TABLE_8] vvtTable2;;"value", 1, 0, 0, 125, -125 uint16_t[SCRIPT_TABLE_8] vvtTable2LoadBins;;"L", 1, 0, 0, 255, 0 uint16_t[SCRIPT_TABLE_8] vvtTable2RpmBins;;"RPM", 1, 0, 0, 18000, 0