no reason to warn about injection pins, I think you already know

This commit is contained in:
Matthew Kennedy 2023-02-24 23:57:15 -08:00
parent ee7dfb267c
commit c551aef780
2 changed files with 1 additions and 6 deletions

View File

@ -1738,7 +1738,7 @@ typedef enum {
CUSTOM_UNKNOWN_ALGORITHM = 6018,
CUSTOM_OBD_COIL_PIN_NOT_ASSIGNED = 6019,
CUSTOM_OBD_INJECTION_NO_PIN_ASSIGNED = 6020,
CUSTOM_6020 = 6020,
CUSTOM_OBD_UNEXPECTED_INJECTION_MODE = 6021,
CUSTOM_6022 = 6022,
CUSTOM_OBD_UNKNOWN_FIRING_ORDER = 6023,

View File

@ -184,11 +184,6 @@ bool FuelSchedule::addFuelEventsForCylinder(int i) {
// Stash the cylinder number so we can select the correct fueling bank later
ev->cylinderNumber = injectorIndex;
if (!isSimultaneous && !output->isInitialized()) {
// todo: extract method for this index math
warning(CUSTOM_OBD_INJECTION_NO_PIN_ASSIGNED, "no_pin_inj #%s", output->name);
}
return true;
}