-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
I am have generated a macro that creates a manual calibration sequence for my MP Mini Delta. It just taps down at 19 points with a G30 to get a Z reading and mark the bed with carbon paper for X,Y calibration points. I am connected via USB. The problem is that it spits out all the gcode to the printer at once (does not wait for the ok). The gcode is more than the buffer can hold. I deduced this, because I got rid of my ;comments and it made it further in the sequence in proportion the the number of characters I edited out. All the gcode is shown sent in the console window before the printer can even start executing it. Then the ok responses start happening. The printer stops when it runs out of commands because of overflowing the buffer.
Macro Probe:
G0 X{0} Y{1}
G30
G0 Z15
Macro BedC19:
G28
G90
G0 Z15
;
Probe 0 50
Probe 0 30
Probe 0 10
Probe 0 0
Probe 0 -10
Probe 0 -30
Probe 0 -50
;
Probe -40 -30
Probe -24 -18
Probe -8 -6
Probe 0 0
Probe 8 6
Probe 24 18
Probe 40 30
Probe 40 -30
;
Probe 24 -18
Probe 8 -6
Probe 0 0
Probe -8 6
Probe -24 18
Probe -40 30