Any way to have repetier server NOT do anything at pause request?
I have a custom firmware that runs an M600 command when it detects filament is out. Problem is the pause command is running and not allowing the firmware M600 command to run. I have verified this by running the gcode right from printer w/ the usb unplugged vs. running the same gcode uploaded to repetier server. I am seeing the following at filament runout which I would like to disable. Under pause actions I don't see an option to "do nothing" just just pause, and 3 others that can control timeouts.
Thanks
Dave
10:08:50.880 : @pause Your printer requested a pause.
10:08:50.880 : //action:filament_runout T0
10:08:50.880 : @pause Your printer requested a pause.
10:08:50.880 : //action:pause filament_runout 0
Thanks
Dave
Comments
M412 H1 S1
which tells firmware to not handle such thing son it's own but to ask host for it. After all
//action:filament_runout T0
is the designed message to make host software trigger a pause instead of internal using.
You might want to add in run on connect
M412 H0
to disable host handling and enforce firmware handling.
I'm quite sure I will remove that instruction on next update as it seems to make often problems e.g. firmwares having it without connected sensor and then triggering an error.
Dave
Dave