- Solution
GregValiant 1,357
I don't think so. Each model is an entity within it's own bounding box and the brim belongs to the specific model. If the brims touch then Cura will see the models as interfering with each other.
The M32 command can call a gcode from within another gcode file. By changing the Home Offsets between each call you can change where the print will be on the build plate.
;Print a base that is a 1 layer print and covers the build surface. At the end of that gcode use M32 to call a second file. That second file wouldn't need a full startup gcode and definitely wouldn't need an ending gcode.
M206 X0 Y0
M32 P !/models/lgbust.gco# ; The file name here might have to be the DOS 8.3 short file name.
M206 X33 Y0 ;Move the Home Offset
M32 P !/models/lgbust.gco#
M206 X66 Y0 ;Move the Home Offset
M32 P !/models/lgbust.gco#
M206 X100 Y0 ;Move the Home Offset
M32 P !/models/lgbust.gco#
M206 X0 Y33 ;Move the Home Offset
M32 P !/models/lgbust.gco#
M206 X33 Y33 ;Move the Home Offset
etc, etc, etc
Keep moving the Home Offset and calling the second file ("lgbust.gco" in this example). The # sign on the end of the line acts like an M400 so there isn't a "read ahead" past the M32.
Understand that although I've played with M32 and it works on my printer, I've never done a print that repeats like that.
Another option would be to print the huge brim first and then print the "one at a time" file on top of it. With the nozzle at Z=0.2 a G92 Z0 in the gcode would move the second print up.
Edited by GregValiant
Recommended Posts
alexsott 0
Link to post
Share on other sites