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

    Duet connection

    Scheduled Pinned Locked Moved
    General Discussion
    3
    23
    631
    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.
    • Casugoundefined
      Casugo @droftarts
      last edited by

      @droftarts

      M122
      === Diagnostics ===<LF>RepRapFirmware for Duet 3 MB6HC version 3.3 (2021-06-15 21:45:47) running on Duet 3 MB6HC v1.01 or later (standalone mode)<LF>Board ID: 08DJM-956BA-NA3TN-6JKDD-3SJ6R-KU8UU<LF>Used output buffers: 1 of 40 (1 max)<LF>=== RTOS ===<LF>Static ram: 150904<LF>Dynamic ram: 90544 of which 256 recycled<LF>Never used RAM 109632, free system stack 192 words<LF>Tasks: NETWORK(ready,30.1%,548) ETHERNET(notifyWait,0.0%,212) HEAT(delaying,0.0%,417) Move(notifyWait,0.0%,352) CanReceiv(notifyWait,0.0%,944) CanSender(notifyWait,0.0%,374) CanClock(delaying,0.0%,343) TMC(notifyWait,0.0%,105) MAIN(running,69.8%,1272) IDLE(ready,0.1%,29), total 100.0%<LF>Owned mutexes: USB(MAIN)<LF>=== Platform ===<LF>Last reset 00:01:29 ago, cause: power up<LF>Last software reset details not available<LF>Error status: 0x00<LF>Step timer max interval 91<LF>MCU temperature: min 20.3, current 32.8, max 32.9<LF>Supply voltage: min 0.1, current 0.1, max 0.2, under voltage events: 0, over voltage events: 0, power good: no<LF>12V rail voltage: min 0.1, curre[Warning: Maximal number of characters per line exceeded! Check the line break settings in [Terminal > Settings > Text] or increase the limit in [Terminal > Settings > Advanced].]


      ![alt text](IMG_7223.jpg image url)


      I'm not using any router the connection is made by cable 🙂

      1 Reply Last reply Reply Quote 0
      • Casugoundefined
        Casugo @fcwilt
        last edited by

        @fcwilt
        Okay, thanks!!
        Yes, I have a computer where I'm connecting the duet by at ethernet cable.

        fcwiltundefined 1 Reply Last reply Reply Quote 0
        • fcwiltundefined
          fcwilt @Casugo
          last edited by

          @Casugo said in Duet connection:

          @fcwilt
          Okay, thanks!!
          Yes, I have a computer where I'm connecting the duet by at ethernet cable.

          Do you know how to open the Command Line window?

          Frederick

          Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

          Casugoundefined 1 Reply Last reply Reply Quote 0
          • Casugoundefined
            Casugo @fcwilt
            last edited by

            @fcwilt
            This one?

            Capture.PNG

            And I already plug the SD card and the config all ready goen 😞

            Capture2.PNG

            fcwiltundefined 2 Replies Last reply Reply Quote 0
            • fcwiltundefined
              fcwilt @Casugo
              last edited by fcwilt

              @Casugo

              Yes that is the command line window.

              Please enter:

              ipconfig

              and press the Enter key.

              You should see something like this:

              Windows IPconfig results.jpg

              The lines
              IPv4
              Subnet Mask
              Default Gateway

              are the ones I am interested in.

              Frederick

              Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

              1 Reply Last reply Reply Quote 0
              • fcwiltundefined
                fcwilt @Casugo
                last edited by

                @Casugo

                What do you think happened to the file?

                Do you have a backup?

                Frederick

                Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                Casugoundefined 1 Reply Last reply Reply Quote 0
                • Casugoundefined
                  Casugo @fcwilt
                  last edited by

                  @fcwilt

                  Capture3.PNG

                  It sounds like the configuration might be resetting itself when attempting to re-establish the connection or set the IP through YAT. What's odd is that while the macros and configurations for components like the BLtouch remain intact, it's specifically the config/g that seems to be affected.

                  fcwiltundefined 1 Reply Last reply Reply Quote 0
                  • fcwiltundefined
                    fcwilt @Casugo
                    last edited by

                    @Casugo said in Duet connection:

                    Capture3.PNG

                    Fantastic.

                    If you are directly connecting your computer to the Duet you need to set the Duet IP address to something that falls within the range of addresses your computer is expecting.

                    Using the subnet mask you can compute the range which is:

                    172.23.32.2 through 172.23.39.254 with the exception of the computers address of 172.23.36.34

                    Now if I were faced with having lost the contents of the SD card I would resort to connecting the SD card to my computer using an SD-to-USB adapter.

                    Then using a text editor, NotePad or the like, to create the bare minimum config.g file so I could then connect directly to the Duet from my computer.

                    Something like this:

                    ; ===================================================================================================
                    ; config.g - just enough to get connected - beginning of file
                    ; ===================================================================================================
                    
                    ; ****************************************************************************************************
                    ; prologue
                    ; ****************************************************************************************************
                    
                    M111 S0                ; debug off
                    
                    M550 P"FT5"            ; machine name (can be anything you like)
                    
                    M555 P1                ; firmware compatibility (P1=RepRap P2=Marlin P6=nanoDLP)
                    
                    M575 P0 B115200 S2     ; communication parameters for USB serial
                    M575 P1 B115200 S1     ; communication parameters for PanelDue
                    
                    M552 P172.23.32.2 S1   ; set address (P) enable Ethernet (S1)
                    M553 P255.255.248.0    ; set subnet mask (P)
                    M554 P172.23.32.1      ; set gateway (P)
                    
                    M586 S1 P1 T0 R21      ; enable (S1) FTP    (P1) Disable TLS (T0) Port (R)
                    M586 S1 P2 T0 R2323    ; enable (S1) Telnet (P2) Disable TLS (T0) Port (R)
                    
                    G21                    ; dimensions in mm
                    G90                    ; for X,Y,Z     use absolute coordinate values
                    M83                    ; for E0,E1,etc use relative coordinate values
                    
                    ; ===================================================================================================
                    ; config.g - just enough to get connected - end of file
                    ; ===================================================================================================
                    
                    

                    Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                    Casugoundefined 1 Reply Last reply Reply Quote 0
                    • Casugoundefined
                      Casugo @fcwilt
                      last edited by

                      @fcwilt
                      Hii!!!

                      By connecting the SD card to my computer and restoring the previous config.g file, I successfully established a connection to the DWC :D.However, I've noticed that I'm currently using the previous IP address instead of the ones you suggested.

                      Would it be advisable to change it to the recommended IP addresses, or should I leave it as is since the current setup is working fine?"

                      Thanks a lot!!!

                      fcwiltundefined 1 Reply Last reply Reply Quote 0
                      • fcwiltundefined
                        fcwilt @Casugo
                        last edited by

                        @Casugo

                        I see the issue.

                        When you took a screen shot from running Windows IPconfig you selected the WiFi connection, not the Ethernet connection - and I did not notice that - my mistake.

                        If you ran IPconfig again and looked for the Ethernet connection it would have a similar address to that one that is working for you.

                        Frederick

                        Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                        Casugoundefined 1 Reply Last reply Reply Quote 0
                        • Casugoundefined
                          Casugo @fcwilt
                          last edited by

                          @fcwilt

                          Oh yes, my bad sorry.

                          Do you have any idea of why that happened and why it restart the config?

                          Thank you so much for your help 😄

                          fcwiltundefined 1 Reply Last reply Reply Quote 0
                          • fcwiltundefined
                            fcwilt @Casugo
                            last edited by

                            @Casugo

                            From a distance, via this forum it's hard to tell what may have happened.

                            I make a point of keeping multiple backups of all the files on my SD card.

                            I guess you know that you can, from the DWC, select all the Gcode files in the SYSTEM folder and download them to your computer as a ZIP file.

                            I just name it something like PRINTER_NAME_SNAP_#.zip where # is a sequential number.

                            So I might have PRINTER_NAME_SNAP_1.zip, PRINTER_NAME_SNAP_2.zip and so on.

                            Is this your only printer?

                            Frederick

                            Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                            Casugoundefined 1 Reply Last reply Reply Quote 0
                            • Casugoundefined
                              Casugo @fcwilt
                              last edited by

                              @fcwilt
                              Okay!!

                              Yes, I used to regularly save the complete configuration by downloading it directly from the DWC.

                              Is the printer at work just that I upgraded with the duet and is the first time this happen to me.

                              Thank you so much 🙂

                              fcwiltundefined 1 Reply Last reply Reply Quote 1
                              • fcwiltundefined
                                fcwilt @Casugo
                                last edited by

                                @Casugo

                                Glad to help whenever I can.

                                Frederick

                                Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

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