rename updateExecution() to steppersRoutine()

This commit is contained in:
2019-07-23 14:07:54 +03:00
parent 44845fe5af
commit 86770edc66

View File

@@ -147,7 +147,7 @@ ISR(TIMER2_COMPA_vect) {
}
}
void updateExecution() {
void steppersRoutine() {
if (!armed) {
if (tick % adjustDelay == 0) {
adjustRPM();
@@ -170,5 +170,5 @@ void loop() {
if (newCommand) {
execCommand();
}
updateExecution();
steppersRoutine();
}