Skip to content

Commit 0bb43de

Browse files
authored
Merge pull request rusefi#64 from dron0gus/342-no-ipump-check
can: do not clear valid bit if Ipump is near limits
2 parents ebbdd5c + c88f646 commit 0bb43de

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

firmware/can.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,9 @@ void SendRusefiFormat(uint8_t ch)
204204

205205
// Lambda is valid if:
206206
// 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)
207+
// 2. Lambda is >0.6 (sensor isn't specified below that)
209208
bool lambdaValid =
210209
nernstDc > (NERNST_TARGET - 0.1f) && nernstDc < (NERNST_TARGET + 0.1f) &&
211-
pumpDuty > 0.1f && pumpDuty < 0.9f &&
212210
lambda > 0.6f;
213211

214212
if (configuration->afr[ch].RusEfiTx) {

0 commit comments

Comments
 (0)