fix (#3629)
This commit is contained in:
parent
262beffbeb
commit
4537018927
|
@ -92,7 +92,7 @@ uint16_t rpmAcceleration;dRPM;"RPM/s",1, 0, 0, 0, 0
|
|||
uint16_t autoscale currentEnginePhase;"Engine Phase";"deg",1, 0, 0, 0, 0
|
||||
! Wall model AE
|
||||
uint16_t autoscale wallFuelAmount;;"mg",{1/@@PACK_MULT_FUEL_MASS@@}, 0, 0, 0, 0
|
||||
uint16_t autoscale wallFuelCorrection;;"mg",{1/@@PACK_MULT_FUEL_MASS@@}, 0, 0, 0, 0
|
||||
int16_t autoscale wallFuelCorrection;;"mg",{1/@@PACK_MULT_FUEL_MASS@@}, 0, 0, 0, 0
|
||||
|
||||
uint16_t unused76;;"",1, 0, 0, 0, 0
|
||||
uint16_t autoscale deltaTps;TPS acceleration enrichment;"ratio",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 28 14:39:28 EST 2021
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 28 11:49:12 PST 2021
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -326,7 +326,7 @@ struct ts_outputs_s {
|
|||
mg
|
||||
* offset 74
|
||||
*/
|
||||
scaled_channel<uint16_t, 100, 1> wallFuelCorrection = (uint16_t)0;
|
||||
scaled_channel<int16_t, 100, 1> wallFuelCorrection = (int16_t)0;
|
||||
/**
|
||||
* offset 76
|
||||
*/
|
||||
|
@ -759,4 +759,4 @@ struct ts_outputs_s {
|
|||
};
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 28 14:39:28 EST 2021
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 28 11:49:12 PST 2021
|
||||
|
|
|
@ -254,7 +254,7 @@ cltCorrection = scalar, U16, 66, "%", 0.01, 0
|
|||
baroCorrection = scalar, U16, 68, "%", 0.01, 0
|
||||
currentEnginePhase = scalar, U16, 70, "deg", 1, 0
|
||||
wallFuelAmount = scalar, U16, 72, "mg", 0.01, 0
|
||||
wallFuelCorrection = scalar, U16, 74, "mg", 0.01, 0
|
||||
wallFuelCorrection = scalar, S16, 74, "mg", 0.01, 0
|
||||
unused76 = scalar, U16, 76, "", 1, 0
|
||||
deltaTps = scalar, U16, 78, "ratio", 0.01, 0
|
||||
unused80 = scalar, U16, 80, "", 1, 0
|
||||
|
@ -1096,8 +1096,8 @@ gaugeCategory = Ignition
|
|||
gaugeCategory = Acceleration Enrichment
|
||||
deltaTpsGauge = deltaTps, "AE: TPS change", "", 0, 120, 10, 10, 100, 100, 1, 1
|
||||
tpsAccelFuelGauge = tpsAccelFuel,"AE: TPS enrich", "ms", 0, 120, 10, 10, 100, 100, 1, 1
|
||||
wallFuelAmountGauge = wallFuelAmount, "AE: wall amount", "ms", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
wallFuelCorrectionGauge = wallFuelCorrection, "AE: wall correction extra", "ms", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
wallFuelAmountGauge = wallFuelAmount, "AE: wall amount", "mg", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
wallFuelCorrectionGauge = wallFuelCorrection, "AE: wall correction extra", "mg", -20, 20, -100, -100, 100, 100, 1, 1
|
||||
|
||||
gaugeCategory = Fueling
|
||||
;Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld
|
||||
|
|
Loading…
Reference in New Issue