todo fix root cause! work-around: make sure not to write bad tune since that would brick requestBurn();

only:uaefi
This commit is contained in:
rusefi 2024-10-26 13:23:39 -04:00
parent 66730530f2
commit b100bd9f1f
2 changed files with 2 additions and 2 deletions

View File

@ -822,7 +822,7 @@ void etbAutocal(size_t throttleIndex) {
if (auto etb = engine->etbControllers[throttleIndex]) {
assertNotNullVoid(etb);
etb->autoCalibrateTps();
requestBurn();
// todo fix root cause! work-around: make sure not to write bad tune since that would brick requestBurn();
}
}

View File

@ -23,7 +23,7 @@ static void onGrabPedal() {
static uint8_t grabPedalCounter = 0;
grabPedalCounter++;
if (grabPedalCounter % 2 == 0) {
requestBurn();
// todo fix root cause! work-around: make sure not to write bad tune since that would brick requestBurn();
}
}