Merge pull request #4502 from gudnimg/gcode_reset_stepper_timeout

MMU: Remove gcode_reset_stepper_timeout
This commit is contained in:
Guðni Már Gilbert 2023-11-17 09:27:49 +00:00 committed by GitHub
commit 7e0df7f9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 9 deletions

View File

@ -639,9 +639,6 @@ void MMU2::SaveAndPark(bool move_axes) {
}
}
}
// keep the motors powered forever (until some other strategy is chosen)
// @@TODO do we need that in 8bit?
gcode_reset_stepper_timeout();
}
void MMU2::ResumeHotendTemp() {

View File

@ -60,6 +60,4 @@ void Disable_E0();
bool all_axes_homed();
void gcode_reset_stepper_timeout();
} // namespace MMU2

View File

@ -133,10 +133,6 @@ void safe_delay_keep_alive(uint16_t t) {
delay_keep_alive(t);
}
void gcode_reset_stepper_timeout(){
// empty
}
void Enable_E0(){ enable_e0(); }
void Disable_E0(){ disable_e0(); }