Hi all,
I'm using Repetier host to deliver Gcode to my 3D printer. I'm sending fairly simple Gcode generated by a python script with move and extrude commands. If I save the Gcode to an SD card and run it it works as it should, but if I add it to the Gcode Editor in Repetier host and run it, the printer starts running the Gcode, but will enque the following three commands in the middle of the print:
echo:enqueueing "G28"
echo:enqueueing "G29"
echo:enqueueing "G1 Z3"
It is also spitting out the following errors in those loops:
Error:Line Number is not Last Line Number+1, Last Line: 97
Resend: 98
I don't know why it is doing this, but it does it generally at the same spots in the print (although not always depending on if I have homed the printer before trying to run this Gcode.
When it finally stops looping G28, G29, and G1 Z3 it is at the home position, but the position in Repetier Host becomes the end position of the print I am sending via Gcode even though it's not at that position.
I am using a Korean 3D printer from Clone 3D, their K200 model. I also tried running code generated from my python script on a Monoprice Mini V2 and it works just fine on there. Originally, it was doing bed autoleveling in this loop as well (the G29 command) but I disabled that in the firmware (marlin).
Does anyone have any idea why I'm getting these G28, G29, and G1 Z3 commands in the middle of my print? I hope I'm missing something fairly simple.
Thanks!