lord-carlos
Well-known member
Hello
I use fluidd which has a SET_PAUSE_NEXT_LAYER macro. It's just that it does not work, it just continues printing. No error, no message.
How could I debug where the issue is?
fluidd.cfg has this:
I use fluidd which has a SET_PAUSE_NEXT_LAYER macro. It's just that it does not work, it just continues printing. No error, no message.
How could I debug where the issue is?
fluidd.cfg has this:
Code:
# Usage: SET_PAUSE_NEXT_LAYER [ENABLE=[0 | 1]] [MACRO=<name>]
[gcode_macro SET_PAUSE_NEXT_LAYER]
description: Enable a pause if the next layer is reached
gcode:
{% set pause_next_layer = printer['gcode_macro SET_PRINT_STATS_INFO'].pause_next_layer %}
{% set ENABLE = params.ENABLE | default(1)|int != 0 %}
{% set MACRO = params.MACRO | default(pause_next_layer.call, True) %}
SET_GCODE_VARIABLE MACRO=SET_PRINT_STATS_INFO VARIABLE=pause_next_layer VALUE="{{ 'enable': ENABLE, 'call': MACRO }}"