TS gauges section should be auto-generated #4972
This commit is contained in:
parent
8691f6df31
commit
01ada5cbc8
|
@ -1,11 +1,12 @@
|
||||||
struct_no_prefix fuel_computer_s
|
struct_no_prefix fuel_computer_s
|
||||||
|
|
||||||
float totalFuelCorrection;;"mult",1,0,0,3,2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
float totalFuelCorrection;;"mult", 1,0, 0,3, 2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
||||||
struct running_fuel_s
|
struct running_fuel_s
|
||||||
float postCrankingFuelCorrection
|
float postCrankingFuelCorrection
|
||||||
float intakeTemperatureCoefficient;@@GAUGE_NAME_FUEL_IAT_CORR@@
|
float intakeTemperatureCoefficient;@@GAUGE_NAME_FUEL_IAT_CORR@@
|
||||||
float coolantTemperatureCoefficient;@@GAUGE_NAME_FUEL_CLT_CORR@@
|
float coolantTemperatureCoefficient;@@GAUGE_NAME_FUEL_CLT_CORR@@
|
||||||
float timeSinceCrankingInSecs
|
float timeSinceCrankingInSecs;;"secs", 1,0, 0,600000, 0, @@GAUGE_CATEGORY_FUEL_MATH@@
|
||||||
|
|
||||||
|
|
||||||
floatms_t baseFuel;
|
floatms_t baseFuel;
|
||||||
floatms_t fuel;Fuel: actual\nActual injection duration with CLT, IAT and TPS acceleration corrections per cycle, as squirt duration.\nWithout injector lag.\n@see baseFuel\n@see actualLastInjection
|
floatms_t fuel;Fuel: actual\nActual injection duration with CLT, IAT and TPS acceleration corrections per cycle, as squirt duration.\nWithout injector lag.\n@see baseFuel\n@see actualLastInjection
|
||||||
|
@ -15,9 +16,9 @@ end_struct
|
||||||
! actually define a member of 'running_fuel_s' type
|
! actually define a member of 'running_fuel_s' type
|
||||||
running_fuel_s running
|
running_fuel_s running
|
||||||
|
|
||||||
uint16_t autoscale afrTableYAxis;;"%",{1/100}, 0, 0, 0, 0
|
uint16_t autoscale afrTableYAxis;;"%",{1/100},0, 0, 0, 0
|
||||||
uint16_t autoscale targetLambda;@@GAUGE_NAME_TARGET_LAMBDA@@;"",{1/@@PACK_MULT_LAMBDA@@}, 0, 0, 0, 3,2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
uint16_t autoscale targetLambda;@@GAUGE_NAME_TARGET_LAMBDA@@;"",{1/@@PACK_MULT_LAMBDA@@},0, 0.5,1.5, 2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
||||||
uint16_t autoscale targetAFR;@@GAUGE_NAME_TARGET_AFR@@;"ratio",{1/@@PACK_MULT_AFR@@}, 0, 0, 0, 2,2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
uint16_t autoscale targetAFR;@@GAUGE_NAME_TARGET_AFR@@;"ratio", {1/@@PACK_MULT_AFR@@},0, 10,20, 2,@@GAUGE_CATEGORY_FUEL_MATH@@
|
||||||
|
|
||||||
uint16_t autoscale stoichiometricRatio;fuel: stoich ratio;"ratio",{1/@@PACK_MULT_AFR@@}, 0, 0, 0, 2
|
uint16_t autoscale stoichiometricRatio;fuel: stoich ratio;"ratio",{1/@@PACK_MULT_AFR@@}, 0, 0, 0, 2
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
|
! "units",scale,offset, min,max, digits,category
|
||||||
|
|
||||||
struct_no_prefix ignition_state_s
|
struct_no_prefix ignition_state_s
|
||||||
float baseDwell
|
float baseDwell;;"ms", 1,0, 0,30, 1,@@GAUGE_CATEGORY_TIMING@@
|
||||||
floatms_t sparkDwell;@@GAUGE_COIL_DWELL_TIME@@
|
floatms_t sparkDwell;@@GAUGE_COIL_DWELL_TIME@@"ms", 1,0, 0,30, 1,@@GAUGE_CATEGORY_TIMING@@
|
||||||
angle_t dwellAngle;ignition dwell duration\nas crankshaft angle\nNAN if engine is stopped\nSee also sparkDwell
|
|
||||||
int16_t autoscale cltTimingCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@}, 0, -20, 20, 2, @@GAUGE_CATEGORY_TIMING@@
|
angle_t dwellAngle;ignition dwell duration\nas crankshaft angle\nNAN if engine is stopped\nSee also sparkDwell;"deg", 1,0, 0,120, 1,@@GAUGE_CATEGORY_TIMING@@
|
||||||
int16_t autoscale timingIatCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@}, 0, -20, 20, 2, @@GAUGE_CATEGORY_TIMING@@
|
|
||||||
int16_t autoscale timingPidCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@}, 0, -20, 20, 2, @@GAUGE_CATEGORY_TIMING@@
|
int16_t autoscale cltTimingCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@},0, -20,20, 2,@@GAUGE_CATEGORY_TIMING@@
|
||||||
|
int16_t autoscale timingIatCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@},0, -20,20, 2,@@GAUGE_CATEGORY_TIMING@@
|
||||||
|
int16_t autoscale timingPidCorrection;;"deg",{1/@@PACK_MULT_PERCENT@@},0, -20,20, 2,@@GAUGE_CATEGORY_TIMING@@
|
||||||
|
|
||||||
|
|
||||||
float dwellVoltageCorrection
|
float dwellVoltageCorrection
|
||||||
|
|
Loading…
Reference in New Issue