We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ebbdd5c + c88f646 commit 0bb43deCopy full SHA for 0bb43de
1 file changed
firmware/can.cpp
@@ -204,11 +204,9 @@ void SendRusefiFormat(uint8_t ch)
204
205
// Lambda is valid if:
206
// 1. Nernst voltage is near target
207
- // 2. Pump driver isn't slammed in to the stop
208
- // 3. Lambda is >0.6 (sensor isn't specified below that)
+ // 2. Lambda is >0.6 (sensor isn't specified below that)
209
bool lambdaValid =
210
nernstDc > (NERNST_TARGET - 0.1f) && nernstDc < (NERNST_TARGET + 0.1f) &&
211
- pumpDuty > 0.1f && pumpDuty < 0.9f &&
212
lambda > 0.6f;
213
214
if (configuration->afr[ch].RusEfiTx) {
0 commit comments