Main - #47
Conversation
There was a problem hiding this comment.
Better to create a new file with just the bit needed. No need to copy all the other macros.
| @@ -0,0 +1,25 @@ | |||
| # START_PRINT | |||
There was a problem hiding this comment.
This should be named for the feature it's documenting.
| ln -sf ${SCRIPT_DIR}/start_print.cfg \ | ||
| ~/printer_data/config/gcode_macro.cfg |
There was a problem hiding this comment.
These should be creating a file in the custom folder rather than replacing an existing Creality file.
| # Call AMP macro with MINX and MINY values passed from slicer. Uncomment the line below if adaptive purge is desired. | ||
| # AMP MINX={MINX} MINY={MINY} |
There was a problem hiding this comment.
For this I'd create a new variable in the VARS macro and use it as a conditional. So that users can enable this if they'd like.
There was a problem hiding this comment.
Not gonna lie, you completely lost me here.
There was a problem hiding this comment.
@txt4nk I'm not sure what you don't understand so forgive this explanation if that's not what your confused about. he saying uncomment that line, assign it to a variable that you create so it's easier for the user to configure. You can do this in the VARS macro, you can add it here:
Added gcode_macro to features, including a readme, install.sh and the gcode_macro.cfg. Modified gcode_macro.cfg includes AMP (adaptive purge line). PLEASE look these over extremely close, I have no idea if my coding is correct on the install.sh
Modified start_print.cfg to include AMP. It is commented out, so the user will have to add start_pring.cfg to their overrides.cfg and uncomment if they opt to use it.