VVT target to allow negative values #4424
This commit is contained in:
parent
c07238b85e
commit
5d0aac56e9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue