logging of live data structs was: data points, we are moving away from debug mode #3614
This commit is contained in:
parent
133a40175f
commit
2ca470119e
|
@ -224,7 +224,6 @@ uint16_t rpmAcceleration;dRPM;"RPM/s",1, 0, 0, 5, 2
|
|||
int16_t autoscale rawTps2Primary;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
|
||||
|
||||
int16_t autoscale rawTps2Secondary;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
|
||||
uint16_t knockCount;@@GAUGE_NAME_KNOCK_COUNTER@@;"",1, 0, 0, 0, 0
|
||||
|
||||
int16_t autoscale accelerationZ;@@GAUGE_NAME_ACCEL_Z@@;"G",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
|
||||
int16_t autoscale accelerationRoll;@@GAUGE_NAME_ACCEL_ROLL@@;"G",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
|
||||
|
|
|
@ -608,7 +608,6 @@ static void updateIgnition(int rpm) {
|
|||
|
||||
engine->outputChannels.coilDutyCycle = getCoilDutyCycle(rpm);
|
||||
|
||||
engine->outputChannels.knockCount = engine->module<KnockController>()->getKnockCount();
|
||||
engine->outputChannels.knockRetard = engine->module<KnockController>()->getKnockRetard();
|
||||
}
|
||||
|
||||
|
|
|
@ -1449,7 +1449,7 @@ gaugeCategory = Knock
|
|||
knock12Gauge = knock12, "Knock Cyl 12", "dBv", -60, 10, -60, -60, 10, 10, 0, 0
|
||||
knockLevelGauge = knockLevel,"Knock level", "dBv", -60, 10, -60, -60, 10, 10, 0, 0
|
||||
knockRetardGauge = knockRetard, "Knock retard", "deg", 0, 10, 0, 0, 10, 10, 1, 1
|
||||
knockCountGauge = knockCount, "Knock count", "count", 0, 10000, 0, 0, 10000, 10000, 0, 0
|
||||
knockCountGauge = m_knockCount, "Knock count", "count", 0, 10000, 0, 0, 10000, 10000, 0, 0
|
||||
|
||||
gaugeCategory = DynoView
|
||||
accelGauge = VssAcceleration, "Vehicle acceleration", "m/s2", -10, 10, -6, -4, 4, 6, 2, 2
|
||||
|
|
Loading…
Reference in New Issue