Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order

    Home All Speed

    General Discussion
    6
    6
    239
    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.
    • thomas_rudloff
      thomas_rudloff last edited by

      Were can I recall the firmware version. Is one of the latest.

      My actual HomeAll.g

      G91 ; relative positioning

      M584 Z2 U3 V4 ; split Z
      G1 H1 Z5 U5 V5 F1800 ; move Z, U and V up until the endstop is triggered

      G1 H1 X240 Y200 Z150 U150 V150 F1800 ; move quickly to X or Y endstop and stop there (first pass)

      M584 Z2:3:4 ; Join Z, U, V
      G90 ; absolute positioning

      Works like expected until the X or Y endstop is hit and then gives more speed to the remaining X or Y homing. Yet I did not figure if or how it is related to Z axis.

      Phaedrux 1 Reply Last reply Reply Quote 0
      • A Former User
        A Former User last edited by A Former User

        @thomas_rudloff said in Home All Speed:

        Were can I recall the firmware versio

        M115
        https://duet3d.dozuki.com/Wiki/Gcode#Section_M115_Get_Firmware_Version_and_Capabilities

        @thomas_rudloff said in Home All Speed:

        Works like expected until the X or Y endstop is hit and then gives more speed to the remaining X or Y homing. Yet I did not figure if or how it is related to Z axis

        Does not make a whole lot of sense. The posted homeall.g should move at the same speed F1800 for both moves. However for the first line the moves are quite short so accelecation may limit the overall speed achieved, while the second line has a longer move and will be less limited by acceleration.

        F1800 is quite fast, so you probably want to reduce it in any case.

        1 Reply Last reply Reply Quote 0
        • gtj0
          gtj0 last edited by

          CoreXY? If so, the same thing happens to me. Never bothered to figure out why though. I thought it may have to do with the motors being in "individual" mode but you have G1 H1 which i didn't think put the motors in individual mode whereas H2 does.

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

            @thomas_rudloff said in Home All Speed:

            G1 H1 X240 Y200 Z150 U150 V150 F1800 ; move quickly to X or Y endstop and stop there (first pass)

            Perhaps you're being limited by the fact it's doing a coordinated move of all axis and will be limited by the slowest axis, which would be Z. Once the Z move is complete, the X and Y will travel at their own max speed?

            That move should probably be broken down into pure X and Y movement and have the Z U and V separately.

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 1
            • fcwilt
              fcwilt last edited by

              Since I don't worry about optimizing things during homing my homeALL macro just calls my home X,Y and Z macros.

              Frederick

              Printers: A FT-5 with the 713 upgrade bits. A custom MarkForged style. A small Utilmaker style and a CoreXY from kits. Various hotends. Using Duets (2 and 3) running 3.4.1

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

                As @Phaedrux says. Usual practice on a CoreXY would be to home X and Y together (on a CoreXY it will stop when the first endstop triggers), then home X and Y separately, then home Z.

                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