Skip to content

Commit

Permalink
write default pin boot state into config.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
alex9849 committed Jan 26, 2025
1 parent 930bc2f commit 8245df9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ private void updateDefaultPinState(Pump oldPump, Pump newPump) {
afterStep = stepNew.getStepPin();
afterEnable = stepNew.getEnablePin();
}
updateDefaultPinState(beforeEnable, afterEnable, true, true);
updateDefaultPinState(beforeStep, afterStep, true, true);
updateDefaultPinState(beforeEnable, afterEnable, false, false);
updateDefaultPinState(beforeStep, afterStep, false, false);
return;
}
}
Expand Down

0 comments on commit 8245df9

Please sign in to comment.