Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Delay response for Macro called during printing

    Scheduled Pinned Locked Moved
    Firmware developers
    2
    11
    1.1k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • hestiahuangundefined
      hestiahuang
      last edited by

      @dc42 and all

      1. There is delay response when using Macro file, which has M106/M42 in it, to control the LED ON/OFF during printing on PanelDue. I guess there is some delay to load the Macro,however there is no delay if I send M106/M42 directly and not through Macro. How can I know the the immediate action after Macro file clicked?

      2. Duet MCU has to print with queue and clean all the commands already in queue before. I have one case have to stop Extruder immediately as below. Any command or any method for it?
        For filament loading, refer to UM firmware, there are 3 speed types, slow(insert to extruder), fast(load in PTFE), slow(load in hotend). For the last step "slow(load in hotend)", it can stop immediately after we see the material comes out from nozzle by click the confirm button, however it is not emergency stop. Is there any way to implement this?

      dc42undefined 1 Reply Last reply Reply Quote 0
      • hestiahuangundefined
        hestiahuang
        last edited by hestiahuang

        G1 E500 F300
        M291 P"Forwarding material! Wait till material comes out the nozzle" S2

        Something like above, I need to stop extruder at anytime. It can easily implement this on Marlin firmware with "plan_set_e_position(0);". However I don't know how can Reprap firmware implement this.

        1 Reply Last reply Reply Quote 0
        • hestiahuangundefined
          hestiahuang
          last edited by

          Anyone has such requirement?☠

          1 Reply Last reply Reply Quote 0
          • dc42undefined
            dc42 administrators @hestiahuang
            last edited by

            @hestiahuang said in Delay response for Macro called during printing:

            1. There is delay response when using Macro file, which has M106/M42 in it, to control the LED ON/OFF during printing on PanelDue. I guess there is some delay to load the Macro,however there is no delay if I send M106/M42 directly and not through Macro. How can I know the the immediate action after Macro file clicked?

            M106 and M42 commands that occur within a GCode stream (directly, or indirectly via a macro call) will be synced to the GCode movement stream. So those commands will be delayed until any movement commands that were encountered before them have completed.

            1. Duet MCU has to print with queue and clean all the commands already in queue before. I have one case have to stop Extruder immediately as below. Any command or any method for it?
              For filament loading, refer to UM firmware, there are 3 speed types, slow(insert to extruder), fast(load in PTFE), slow(load in hotend). For the last step "slow(load in hotend)", it can stop immediately after we see the material comes out from nozzle by click the confirm button, however it is not emergency stop. Is there any way to implement this?

            Currently there is no command to stop movement without doing an emergency stop. If you are using a Duet WiFi or Duet Ethernet, have you considered using extruder stall detection to stop feeding filament when resistance is encountered?

            Duet WiFi hardware designer and firmware engineer
            Please do not ask me for Duet support via PM or email, use the forum
            http://www.escher3d.com, https://miscsolutions.wordpress.com

            hestiahuangundefined 1 Reply Last reply Reply Quote 0
            • hestiahuangundefined
              hestiahuang @dc42
              last edited by hestiahuang

              @dc42 said in Delay response for Macro called during printing:

              @hestiahuang said in Delay response for Macro called during printing:

              1. There is delay response when using Macro file, which has M106/M42 in it, to control the LED ON/OFF during printing on PanelDue. I guess there is some delay to load the Macro,however there is no delay if I send M106/M42 directly and not through Macro. How can I know the the immediate action after Macro file clicked?

              M106 and M42 commands that occur within a GCode stream (directly, or indirectly via a macro call) will be synced to the GCode movement stream. So those commands will be delayed until any movement commands that were encountered before them have completed.

              1. Duet MCU has to print with queue and clean all the commands already in queue before. I have one case have to stop Extruder immediately as below. Any command or any method for it?
                For filament loading, refer to UM firmware, there are 3 speed types, slow(insert to extruder), fast(load in PTFE), slow(load in hotend). For the last step "slow(load in hotend)", it can stop immediately after we see the material comes out from nozzle by click the confirm button, however it is not emergency stop. Is there any way to implement this?

              Currently there is no command to stop movement without doing an emergency stop. If you are using a Duet WiFi or Duet Ethernet, have you considered using extruder stall detection to stop feeding filament when resistance is encountered?

              @dc42 , really appreciate for your reply with the cube.

              For the item#1, If I control the LED via FAN3 button on DWC, it can take the effective immediately, the turn on or turn off, even it is in printing status. Refer to the log on DWC, it calls M106 directly to control it.
              However I setup a marco file on PanelDue, and it just include the same command M106. then there is delay about turn on/off LED while it is printing status. I guess it is due to M98, firmware have call M98 first. Then it has to wait for the M98 run and open the macro to load M106. Is there any way to make M106 take immediate effective via macro from PanelDue?

              For the item#2, your reply is awesome, 'extruder stall detection' is really a cube to me. I will try to check the details and have a try.

              dc42undefined 1 Reply Last reply Reply Quote 0
              • dc42undefined
                dc42 administrators @hestiahuang
                last edited by

                @hestiahuang said in Delay response for Macro called during printing:

                However I setup a marco file on PanelDue, and it just include the same command M106. then there is delay about turn on/off LED while it is printing status. I guess it is due to M98, firmware have call M98 first. Then it has to wait for the M98 run and open the macro to load M106. Is there any way to make M106 take immediate effective via macro from PanelDue?

                M106 run from PanelDue, whether directly or via a macro, should take effect more or less instantly unless the firmware is waiting to complete the previous command sent from PanelDue.

                Duet WiFi hardware designer and firmware engineer
                Please do not ask me for Duet support via PM or email, use the forum
                http://www.escher3d.com, https://miscsolutions.wordpress.com

                hestiahuangundefined 1 Reply Last reply Reply Quote 0
                • hestiahuangundefined
                  hestiahuang @dc42
                  last edited by hestiahuang

                  @dc42 said in Delay response for Macro called during printing:

                  @hestiahuang said in Delay response for Macro called during printing:

                  However I setup a marco file on PanelDue, and it just include the same command M106. then there is delay about turn on/off LED while it is printing status. I guess it is due to M98, firmware have call M98 first. Then it has to wait for the M98 run and open the macro to load M106. Is there any way to make M106 take immediate effective via macro from PanelDue?

                  M106 run from PanelDue, whether directly or via a macro, should take effect more or less instantly unless the firmware is waiting to complete the previous command sent from PanelDue.

                  I don't use the SD Card socket on PanelDue, there should be no gcode data via 4 serial lines, just print from Duet mainboard TF card. Do you mean the data to fresh the PanelDue?

                  dc42undefined 1 Reply Last reply Reply Quote 0
                  • dc42undefined
                    dc42 administrators @hestiahuang
                    last edited by

                    @hestiahuang said in Delay response for Macro called during printing:

                    @dc42 said in Delay response for Macro called during printing:

                    @hestiahuang said in Delay response for Macro called during printing:

                    However I setup a marco file on PanelDue, and it just include the same command M106. then there is delay about turn on/off LED while it is printing status. I guess it is due to M98, firmware have call M98 first. Then it has to wait for the M98 run and open the macro to load M106. Is there any way to make M106 take immediate effective via macro from PanelDue?

                    M106 run from PanelDue, whether directly or via a macro, should take effect more or less instantly unless the firmware is waiting to complete the previous command sent from PanelDue.

                    I don't use the SD Card socket on PanelDue, there should be no gcode data via 4 serial lines, just print from Duet mainboard TF card. Do you mean the data to fresh the PanelDue?

                    No, I mean any command you sent previously from PanelDue that might take some time to execute. For example, a tool change command if your tool files wait for temperatures to be reached; or a homing command.

                    Duet WiFi hardware designer and firmware engineer
                    Please do not ask me for Duet support via PM or email, use the forum
                    http://www.escher3d.com, https://miscsolutions.wordpress.com

                    hestiahuangundefined 1 Reply Last reply Reply Quote 0
                    • hestiahuangundefined
                      hestiahuang @dc42
                      last edited by

                      @dc42 said in Delay response for Macro called during printing:

                      @hestiahuang said in Delay response for Macro called during printing:

                      @dc42 said in Delay response for Macro called during printing:

                      @hestiahuang said in Delay response for Macro called during printing:

                      However I setup a marco file on PanelDue, and it just include the same command M106. then there is delay about turn on/off LED while it is printing status. I guess it is due to M98, firmware have call M98 first. Then it has to wait for the M98 run and open the macro to load M106. Is there any way to make M106 take immediate effective via macro from PanelDue?

                      M106 run from PanelDue, whether directly or via a macro, should take effect more or less instantly unless the firmware is waiting to complete the previous command sent from PanelDue.

                      I don't use the SD Card socket on PanelDue, there should be no gcode data via 4 serial lines, just print from Duet mainboard TF card. Do you mean the data to fresh the PanelDue?

                      No, I mean any command you sent previously from PanelDue that might take some time to execute. For example, a tool change command if your tool files wait for temperatures to be reached; or a homing command.

                      Actually, I don't send any command from PanelDue.
                      Take this example

                      1. Print Gcode model file from DWC, and then I go away
                      2. 10 or 20 mins later, I come back and I found the LED is still turned on.
                      3. I touch PanelDue, and click the 'Turn Off LED' macro, there is deplay of the "Off effective"
                        or
                      4. I open DWC, and click the 'Turn Off LED' button, there is no deplay of the "Off effective"
                        0_1558059642433_e14f6878-4223-45b7-9042-9e1afe81651e-image.png

                      Just tested many times, it is not related to PanelDue

                      1. Turn off LED via DWC page by glide bar => no delay.
                        0_1558060001743_1b11c14b-be44-4202-9844-24552e92023e-image.png

                      2. Turn off LED via DWC page Macro => there is delay.
                        0_1558060063612_6312764c-48cc-47eb-81bc-0a7d8c06d955-image.png

                      1 Reply Last reply Reply Quote 0
                      • dc42undefined
                        dc42 administrators
                        last edited by

                        When the command is inside a macro file, how long is the delay?

                        Duet WiFi hardware designer and firmware engineer
                        Please do not ask me for Duet support via PM or email, use the forum
                        http://www.escher3d.com, https://miscsolutions.wordpress.com

                        hestiahuangundefined 1 Reply Last reply Reply Quote 0
                        • hestiahuangundefined
                          hestiahuang @dc42
                          last edited by

                          @dc42 said in Delay response for Macro called during printing:

                          When the command is inside a macro file, how long is the delay?

                          Only one line command in Macro. Sometimes it needs 1~2 seconds, sometimes it needs around 5 seconds. It makes me confused and I doubt that if I have run Macro or not.😅 The important point is it just happens while machine is printing.
                          0_1558123997792_0269640f-31b6-4441-9eac-e552bd284128-image.png

                          1 Reply Last reply Reply Quote 0
                          • First post
                            Last post
                          Unless otherwise noted, all forum content is licensed under CC-BY-SA