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

    Problem resuming after pause

    Scheduled Pinned Locked Moved
    General Discussion
    4
    11
    1.2k
    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.
    • JKaechlerundefined
      JKaechler
      last edited by

      If I pause a print, make a change to filament or something, then hit resume. it resumes fine, except that the Z height is higher than it should be. It looks to be maybe a millimeter or maybe 0.5mm above the print.

      Here is my pause macro:
      ; pause.g
      ; called when a print from SD card is paused
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Feb 26 2019 22:23:49 GMT-0600 (Central Standard Time)
      M83 ; relative extruder moves
      G1 E-10 F3600 ; retract 10mm of filament
      G91 ; relative positioning
      G1 Z5 F360 ; lift Z by 5mm
      G90 ; absolute positioning
      G1 X0 Y0 F6000 ; go to X=0 Y=0

      and here is my resume:
      ; resume.g
      ; called before a print from SD card is resumed
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Feb 26 2019 22:23:49 GMT-0600 (Central Standard Time)
      G1 E10 F3600 ; extrude 10mm of filament
      G1 R1 X0 Y0 Z5 F6000 ; go to 5mm above position of the last print move
      G1 R1 X0 Y0 ; go back to the last print move
      M83 ; relative extruder moves

      What might be going wrong.

      1 Reply Last reply Reply Quote 0
      • Wyvernundefined
        Wyvern
        last edited by

        (Pause)
        M83 ; relative extruder moves
        G1 E-10 F3600 ; retract 10mm of filament
        G91 ; relative positioning
        G1 Z5 F360 ; lift Z by 5mm
        G90 ; absolute positioning
        G1 X0 Y0 F6000 ; go to X=0 Y=0

        (Resume)

        G1 R1 X0 Y0 Z5 F6000 ; go to 5mm above position of the last print move
        G1 R1 X0 Y0 ; go back to the last print move
        M83 ; relative extruder moves
        G1 E10 F3600 ; extrude 10mm of filament

        That is mine, which should function close to what yours is doing, except I extrude after resume positioning , not before.

        What type of printer do you have? is your Z axis binding?

        dc42undefined 1 Reply Last reply Reply Quote 0
        • Phaedruxundefined
          Phaedrux Moderator
          last edited by

          Firmware version?

          Z-Bot CoreXY Build | Thingiverse Profile

          1 Reply Last reply Reply Quote 0
          • JKaechlerundefined
            JKaechler
            last edited by

            Firmware Name: RepRapFirmware for Duet 2 WiFi/Ethernet
            Firmware Electronics: Duet WiFi 1.02 or later
            Firmware Version: 2.02(RTOS) (2018-12-24b1)
            WiFi Server Version: 1.21
            Web Interface Version: 1.22.6

            This is a home built AM8 machine. 2 Z motors with lead screws, belt drive X and Y
            I have a paneldue on it, and i use the pause and resume buttons on the control screen. I assume they trigger the pause and resume .g files respectively.

            Phaedruxundefined 1 Reply Last reply Reply Quote 0
            • Phaedruxundefined
              Phaedrux Moderator @JKaechler
              last edited by

              @jkaechler said in Problem resuming after pause:

              I assume they trigger the pause and resume .g files respectively.

              That's correct.

              Does it looks like it's skipping a layer? Is the nozzle fully primed before it starts printing, or is it oozing out while returning to the resume point?

              Is the movement of your Z axis repeatable? If you move it up and down repeatedly does it still return to the same point? Backlash, skipped steps?

              Z-Bot CoreXY Build | Thingiverse Profile

              JKaechlerundefined 1 Reply Last reply Reply Quote 0
              • JKaechlerundefined
                JKaechler @Phaedrux
                last edited by

                @phaedrux its not skipping steps. backlash could be an issue. i may simply put up with this issue while i work thru printing the parts to rebuild my x and z axis to ride on the openbuilds rails instead of the smooth rods.

                I have had no end of trouble getting reliable motion on the stupid smooth rods.

                1 Reply Last reply Reply Quote 0
                • Phaedruxundefined
                  Phaedrux Moderator
                  last edited by

                  You could test it without raising and lowering the print head on pause. Technically everything already printed should be below the nozzle anyway, but you still might cause a drag line across the layer or catch on a lifted edge, but that's true of any travel moves on that layer anyway.

                  Z-Bot CoreXY Build | Thingiverse Profile

                  JKaechlerundefined 1 Reply Last reply Reply Quote 0
                  • JKaechlerundefined
                    JKaechler @Phaedrux
                    last edited by

                    @phaedrux
                    thats a good idea. i will give that a whirl.
                    I am also troubleshooting my first endeavor into dual extrusion. Surprisingly the duet took to it like a duck to water. its the gcode and Cura that are giving me greif.

                    and the Y-splitter on the bowden tube. I think a Cyclops is in my future.

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

                      G1 R1 X0 Y0 Z5 F6000 ; go to 5mm above position of the last print move
                      G1 R1 X0 Y0 ; go back to the last print move

                      That second line won't do anything because the first line has already moved to the same XY coordinates. Did you mean the second line to be G1 R1 X0 Y0 Z0 ?

                      However, the firmware should restore the original nozzle position anyway when resume.g completes.

                      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

                      JKaechlerundefined 1 Reply Last reply Reply Quote 0
                      • JKaechlerundefined
                        JKaechler @dc42
                        last edited by

                        @dc42
                        well,
                        I copied those pause and resume files from another firmware load. So I didnt even catch that line should have stated Z0 instead of Z5.

                        I have edited the pause and resume files as Phaedrux suggested to remove the Z lift and just go to X0 and Y0 during a pause. I am also going to change the order so that the re-prime of the nozzle happens away from the print. i think that might reduce the chance of getting a blob.

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

                          I meant did you mean the second line to use Z0, not the first.

                          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

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