Gear detection based on RPM to VSS ratio #3779
This commit is contained in:
parent
eb580414ce
commit
e87c96b0e9
|
@ -41,7 +41,7 @@ uint16_t autoscale RPMValue;@@GAUGE_NAME_RPM@@;"RPM",1, 0, 0, 0, 0
|
|||
|
||||
uint16_t rpmAcceleration;dRPM;"RPM/s",1, 0, 0, 0, 0
|
||||
|
||||
uint16_t autoscale speedToRpmRatio;s2rpm;"value",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
|
||||
uint16_t autoscale speedToRpmRatio;@@GAUGE_NAME_GEAR_RATIO@@;"value",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
|
||||
uint8_t autoscale vehicleSpeedKph;@@GAUGE_NAME_VVS@@;"kph",1, 0, 0, 0, 0
|
||||
int8_t autoscale internalMcuTemperature;@@GAUGE_NAME_CPU_TEMP@@;"deg C",1, 0, 0, 0, 0
|
||||
|
||||
|
|
|
@ -726,8 +726,8 @@ custom adc_channel_mode_e 4 bits, U32, @OFFSET@, [0:1], "Off", "Slow", "Fast"
|
|||
pin_input_mode_e throttlePedalUpPinMode;
|
||||
uint8_t acIdleExtraOffset;+Additional idle % while A/C is active;"%", 1, 0, 0, 100, 0
|
||||
|
||||
uint16_t autoscale finalGearRatio;;"ratio", 0.1, 0, 0, 100, 0
|
||||
uint16_t autoscale wheelDiameter;;"m", 0.001, 0, 0, 20, 0
|
||||
uint16_t autoscale finalGearRatio;;"ratio", 0.1, 0, 0, 100, 2
|
||||
uint16_t autoscale wheelDiameter;;"m", 0.001, 0, 0, 20, 2
|
||||
uint16_t wastegatePositionMin;+Voltage when the wastegate is closed.\nYou probably don't have one of these!;"mv", 1, 0, 0, 5000, 0
|
||||
uint16_t wastegatePositionMax;+Voltage when the wastegate is fully open.\nYou probably don't have one of these!\n1 volt = 1000 units;"mv", 1, 0, 0, 5000, 0
|
||||
uint16_t idlePositionMin;+Voltage when the idle valve is closed.\nYou probably don't have one of these!;"mv", 1, 0, 0, 5000, 0
|
||||
|
@ -1662,6 +1662,7 @@ end_struct
|
|||
|
||||
#define GAUGE_NAME_TIMING_ADVANCE "timing"
|
||||
#define GAUGE_NAME_VVS "Vehicle Speed"
|
||||
#define GAUGE_NAME_GEAR_RATIO "Gearbox Ratio"
|
||||
#define GAUGE_NAME_TURBO_SPEED "Turbocharger Speed"
|
||||
#define GAUGE_NAME_VBAT "VBatt"
|
||||
#define GAUGE_NAME_TIME "Time"
|
||||
|
|
|
@ -985,7 +985,7 @@ gaugeCategory = Sensors - Extra 2
|
|||
knockLevelGauge = knockLevel,"Knock level", "V", 0, 7, 10, 10, 100, 100, 1, 2
|
||||
knockCountGauge = knockCount, "Knock count", "count", 0, 10000, 0, 0, 10000, 10000, 0, 0
|
||||
fuelTankLevelGauge = fuelTankLevel,"Fuel level", "%", 0, 100, 10, 20, 100, 100, 1, 1
|
||||
speedToRpmRatioGauge = speedToRpmRatio, "gearbox ratio", "", 0, 100, 0, 0, 100, 100, 4, 4
|
||||
speedToRpmRatioGauge = speedToRpmRatio, @@GAUGE_NAME_GEAR_RATIO@@, "", 0, 100, 0, 0, 100, 100, 4, 4
|
||||
wastegatePosGauge = wastegatePositionSensor, @@GAUGE_NAME_WG_POSITION@@, "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
idlePosSensGauge = idlePositionSensor, @@GAUGE_NAME_IDLE_POSITION@@, "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
currentEnginePhaseGauge = currentEnginePhase, "Engine Phase", "deg", 0, 720, 0, 0, 720, 720, 0, 0
|
||||
|
|
Loading…
Reference in New Issue