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

    RepRapFirmware 3.0 is released!

    Scheduled Pinned Locked Moved
    Firmware installation
    33
    131
    11.9k
    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.
    • dc42undefined
      dc42 administrators @Shotfire
      last edited by

      @Shotfire said in RepRapFirmware 3.0 is released!:

      Old Code - that worked fine:
      M558 P8 R0.4 H5 I1 F1200 T6000
      New Code - Not Working
      M558 P8 C"^zprobe.in" R0.04 H5 F1200 T6000
      The Dashboard shows Z-Probe "1000" when I tap on it, it immediately goes to "0" then back to "1000"
      If I remove the Invert Character "^" the dashboard right after connecting shows "1000".
      When I tap on it, it will go to "0" and stays there for about 10 seconds and then goes back to "1000"
      Any Ideas?

      You used I1 in your old M558 command, therefore you need to use pin name "!zprobe.in" in the new command. If the probe needs a pullup resistor (as appears to be the case), you will need to use "^!zprobe.in".

      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

      Shotfireundefined 1 Reply Last reply Reply Quote 0
      • Shotfireundefined
        Shotfire @dc42
        last edited by

        @dc42 Thanks I will try that.

        1 Reply Last reply Reply Quote 0
        • DaBitundefined
          DaBit
          last edited by DaBit

          Took the plunge and moved to RRF3.0. Sooner or later I will have to move anyway if I ever want to use conditional G-code, and it seems wiser to move before honing in the toolchange procedures.

          Some weirdness. The X/Y endstop switches. These are normally open active low NPN proximity sensors. Configured in RRF2 like this:

          ; Endstops
          M574 X1 Y2 S0                                   ; set active low and disabled endstops
          M574 Z1 S2                                      ; set endstops controlled by probe
          

          The RRF config tool generates this code:

          ; Endstops
          M574 X1 S0 P"xstop"                                    ; configure active-low endstop for low end on X via pin xstop
          M574 Y2 S0 P"ystop"                                    ; configure active-low endstop for high end on Y via pin ystop
          M574 Z1 S2                                             ; configure Z-probe endstop for low end on Z
          

          Which is not correct; according to the M574 documentation the S parameter should be 1 (microswitch-type endstop), and I suppose I need to do the inversion on the pins. Which seems to work:
          (I also enabled the pullups)

          ; Endstops
          M574 X1 S1 P"^!xstop"                                    ; configure active-low endstop for low end on X via pin xstop
          M574 Y2 S1 P"^!ystop"                                    ; configure active-low endstop for high end on Y via pin ystop
          M574 Z1 S2                                             ; configure Z-probe endstop for low end on Z
          

          Next is Z homing. My RRF3 homez.g script, taken from the configurator and adjusted coordinates:

          G91                ; relative positioning
          G1 H2 Z5 F6000     ; lift Z relative to current position
          G90                ; absolute positioning
          G1 H2 X115 Y115 F6000 ; go to first probe point
          G30                ; home Z by probing the bed
          
          ; Uncomment the following lines to lift Z after probing
          G91               ; relative positioning
          G1 H2 Z5 F100     ; lift Z relative to current position
          G90               ; absolute positioning
          

          The G1 H2 X115 Y115 fails, and actually moves to X115 Y0? I suppose it moves the CoreXY motors independently. Removing the H2 does not work; you cannot move axes that are not homed yet.

          I hacked it with a pair of M564 commands:

          G91                ; relative positioning
          M564 S1 H0
          G1 Z5 F6000     ; lift Z relative to current position
          G90                ; absolute positioning
          G1 X115 Y115 F6000 ; go to first probe point
          G30                ; home Z by probing the bed
          
          ; Uncomment the following lines to lift Z after probing
          G91               ; relative positioning
          G1 H2 Z5 F100     ; lift Z relative to current position
          G90               ; absolute positioning
          M564 S1 H1
          

          This works, but it is probably not how I am supposed to do that?

          dc42undefined 1 Reply Last reply Reply Quote 0
          • mihaitinteaundefined
            mihaitintea
            last edited by

            I have a custom built delta printer with the latest Duet2Wifi board avec Duex5, running the latest RRF 2.x.

            I use the latest Cura 4 for slicing.

            If I do the RRF2 -> RRF3 upgrade for these boards (Duet2Wifi avec Duex5) , will the GCode generatedf by Cura 4 still work on my delta printer, or do I have to look for another slicing software ?

            Danalundefined 1 Reply Last reply Reply Quote 0
            • Danalundefined
              Danal @mihaitintea
              last edited by

              @mihaitintea said in RepRapFirmware 3.0 is released!:

              I have a custom built delta printer with the latest Duet2Wifi board avec Duex5, running the latest RRF 2.x.

              I use the latest Cura 4 for slicing.

              If I do the RRF2 -> RRF3 upgrade for these boards (Duet2Wifi avec Duex5) , will the GCode generatedf by Cura 4 still work on my delta printer, or do I have to look for another slicing software ?

              Should be no change to the slicer at all. There MIGHT be something in the start G-Code to adjust... but I really doubt it.

              Do be aware that your config.g will require quite a bit of change. Look at all the guides for the Duet3.

              Delta / Kossel printer fanatic

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

                @DaBit said in RepRapFirmware 3.0 is released!:

                The RRF config tool generates this code:

                ; Endstops
                M574 X1 S0 P"xstop"                                    ; configure active-low endstop for low end on X via pin xstop
                M574 Y2 S0 P"ystop"                                    ; configure active-low endstop for high end on Y via pin ystop
                M574 Z1 S2                                             ; configure Z-probe endstop for low end on Z
                

                Which is not correct; according to the M574 documentation the S parameter should be 1 (microswitch-type endstop), and I suppose I need to do the inversion on the pins. Which seems to work:

                You are correct. We'll get configtool fixed.

                Next is Z homing. My RRF3 homez.g script, taken from the configurator and adjusted coordinates:
                ...
                The G1 H2 X115 Y115 fails, and actually moves to X115 Y0? I suppose it moves the CoreXY motors independently. Removing the H2 does not work; you cannot move axes that are not homed yet.

                The H2 should be removed. Surely X and Y have been homed by that point? It doesn't make sense to try to home Z using a Z probe if you can't set the XY coordinates.

                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
                • DaBitundefined
                  DaBit
                  last edited by

                  X and Y have been homed before Z.
                  I tested by accidentally removing the H2 at the first Z-lift too, my bad.

                  This works:

                  ; homez.g
                  ; called to home the Z axis
                  
                  G91                ; relative positioning
                  G1 H2 Z5 F6000     ; lift Z relative to current position
                  G90                ; absolute positioning
                  G1 X115 Y115 F6000 ; go to first probe point
                  G30                ; home Z by probing the bed
                  G91                ; relative positioning
                  G1 Z5 F6000        ; lift Z relative to current position
                  G90                ; absolute positioning
                  

                  Anyway, the RRF configurator is generating (imho) wrong code for this too; it produces a H2 for both the lift-Z and X/Y positioning moves.

                  RRF config tool generated homez.g:

                  ; homez.g
                  ; called to home the Z axis
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.1.4 on Sun Jan 05 2020 10:48:15 GMT+0100 (Midden-Europese standaardtijd)
                  G91                ; relative positioning
                  G1 H2 Z5 F6000     ; lift Z relative to current position
                  G90                ; absolute positioning
                  G1 H2 X19 Y1 F6000 ; go to first probe point
                  G30                ; home Z by probing the bed
                  
                  ; Uncomment the following lines to lift Z after probing
                  ;G91               ; relative positioning
                  ;G1 H2 Z5 F100     ; lift Z relative to current position
                  ;G90               ; absolute positioning
                  
                  1 Reply Last reply Reply Quote 0
                  • Alexander Mundyundefined
                    Alexander Mundy
                    last edited by

                    FYI for anyone else moving from early beta (before 11) I had to do the following:
                    Define heaters and associated temp sensors
                    Use M308 instead of M305
                    Activate the pullup resistors for endstops and z probe if needed since they are not active by default
                    I had remapped the bed heat and part cooling fans previously and had M950 H0 C"nil" and M950 H2 C"nil" but removed them since heaters are no longer automatically assigned.

                    1 Reply Last reply Reply Quote 0
                    • wilrikerundefined
                      wilriker @tobias_munich
                      last edited by

                      @tobias_munich said in RepRapFirmware 3.0 is released!:

                      Is the the paneldue running on the DUET3 with this release yet?
                      saw that IO_0 should be reserved for this.

                      Yes, it does. Connect it to IO_0 and it will work. If you are using Duet3 + SBC then everything related to job files and macros will not work on PanelDue because it cannot see those (maybe also contents of /sys, haven't checked that).

                      Manuel
                      Duet 3 6HC (v0.6) with RPi 4B on a custom Cartesian
                      with probably always latest firmware/DWC (incl. betas or self-compiled)
                      My Tool Collection

                      1 Reply Last reply Reply Quote 1
                      • Hornetriderundefined
                        Hornetrider
                        last edited by

                        Hi

                        I am not sure if this is off topic in this thread...sorry...

                        The symbols (double arrows) for Baby-Steps in the Print menu on Paneldue in combination with Duet3 and RRF3.0RC2 look different from RRF2.05 and are kind of missleading to me...
                        Could there be an option to change them to something simpler like before?

                        I am having real fun using the Duet3 and RRF3.0. Damn good job!

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

                          @Hornetrider said in RepRapFirmware 3.0 is released!:

                          The symbols (double arrows) for Baby-Steps in the Print menu on Paneldue in combination with Duet3 and RRF3.0RC2 look different from RRF2.05 and are kind of missleading to me...

                          They used to show up and down arrows, but users complained about this because on machines that move the bed in Z, the arrows pointed in the opposite direction to the resulting bed movement. So now they show the gap between the nozzle and bed increasing or decreasing.

                          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

                          Danalundefined 1 Reply Last reply Reply Quote 1
                          • Danalundefined
                            Danal @dc42
                            last edited by

                            @dc42 said in RepRapFirmware 3.0 is released!:

                            they show the gap between the nozzle and bed increasing or decreasing

                            FWIW:

                            As someone who has both kinds of printers, those that move bed, and those that move nozzle, I could never figure out the old icons. The new "squeeze or separate" make it much more clear for all cases.

                            Delta / Kossel printer fanatic

                            1 Reply Last reply Reply Quote 0
                            • Hornetriderundefined
                              Hornetrider
                              last edited by

                              Yeah, I got it.

                              Didn't think about it, regarding the Z axis as moving bed...

                              Thin I will get used to it as soon as I have updated my second printer to RRF3.0...

                              1 Reply Last reply Reply Quote 0
                              • supernovaeundefined
                                supernovae
                                last edited by

                                Thanks for all your hard work @dc42! Love this update! Converted my HyperCube evo over and all is well (corexy)

                                1 Reply Last reply Reply Quote 0
                                • kraegarundefined
                                  kraegar
                                  last edited by

                                  Just wanted to chime in that 3.0 is running on several RailCore's with both Duet 2's and Duet3's now with no reported troubles. Thanks for the great work @dc42 !

                                  Co-Creator of the RailcoreII CoreXY printer
                                  https://www.thingiverse.com/thing:2407174

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

                                    @kraegar, thanks for the feedback.

                                    Do you have an application for conditional GCode on the RailCore?

                                    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

                                    kraegarundefined stewwyundefined 2 Replies Last reply Reply Quote 0
                                    • kraegarundefined
                                      kraegar @dc42
                                      last edited by

                                      @dc42 We definitely do! Auto-leveling until below a set threshold is the obvious first one. But I've had quite a few others as well - I have a systems admin background, so being able to script within gcode has been something I've wanted for a long time. Very much looking forward to it!

                                      Co-Creator of the RailcoreII CoreXY printer
                                      https://www.thingiverse.com/thing:2407174

                                      1 Reply Last reply Reply Quote 0
                                      • kraegarundefined
                                        kraegar
                                        last edited by

                                        This is the "upgrade guide" I made for our users have been using to convert their RailCore's with a Duet2 to RRF3, if it's helpful to anyone else. It's taking our base RRF2.x config, and making it RRF3 compatible for new builds. There's a text document to describe the process for upgrading.

                                        https://www.dropbox.com/sh/pg0ugu5qunokjc9/AAD8PkPqVGPp-yWV5Cug3_Usa?dl=0

                                        Co-Creator of the RailcoreII CoreXY printer
                                        https://www.thingiverse.com/thing:2407174

                                        1 Reply Last reply Reply Quote 1
                                        • stewwyundefined
                                          stewwy @dc42
                                          last edited by

                                          @dc42 Must say this runs nicely, once I got over an error on my part, must learn to RTFI :-).

                                          1 Reply Last reply Reply Quote 0
                                          • DaBitundefined
                                            DaBit
                                            last edited by

                                            I did 15 hours of printing with RRF3 on the Duet. No failures due to RRF3. Random things I noticed:

                                            • I had to recalibrate the BLTouch triggerpoint to nozzle Z-offset. Difference with RRF2.05 is 0.12mm smaller.
                                            • Printing PusaSlicer generated brims at 60mm/s sounds a bit rougher than it did with 2.05. While printing the actual part I noticed no difference.
                                            • Some weirdness with 'pause print' and then not being able to cancel it in DWC. Might as well be an issue with running DWC on my (Android 7.1) phone; that usually takes a few reloads before DWC is displayed correctly anyway.
                                            DIY-O-Sphereundefined deckingmanundefined 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA