Feature request: I’d like to be able to sync any stepper, including manual_stepper's, to the extruder using the SYNC_EXTRUDER_MOTION gcode command. Currently, I can only sync steppers that are extruder_steppers.
I have not looked at the code to see if this is even possible. But then I don’t know Python so that probably wouldn’t help. xD
Is this something that could possibly be added to klipper in the future?
My use case is running a Prusa MMU2S with klipper. I’d like to sync the manual_stepper on the MMU2 to the extruder while it’s loading filament from the MMU2 to the extruder. This would allow me to stop the load once the filament sensor detects that the filament has reached the extruder.
I would like to have the same addon… I try to synch my ERCF Gear extruder with my main extruder to help the filament to go through the tube…
if anyone have a solution to that I’m in. I tried to do another extruder_stepper with the same pin number by duplicate_pin_override but it is not working I still have an error message.
manual_stepper should have already registered a callback for this during startup, which would now call a modified do_move method, but passing it the current print time (see these lines at manual_stepper.py) and the other parameters.
To copy the extruder motion, the callback could be added around here, and provide the same values used in the call to trapq_append, to replicate it in manual_stepper.py (using its trapq instead of the extruder’s).
This benefits from the calculations done by the look-ahead feature (docs).
Now drifting offtopic:
To have an independent manual_stepper axis synced using this method, I imagine that to have do_move it end at the same time as the regular axis moves, the sum of accel_t, cruise_t, accel_t there should add up to the same value.
In this crudest way, there is no look-ahead, and any motion requiring it would be jerky (other than single, isolated start-stop moves). If this works, then perhaps it could do better by using the info from the look-ahead calculations (see these lines).