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

    PanelDue 5i not working

    Scheduled Pinned Locked Moved
    PanelDue
    5
    25
    833
    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.
    • jay_s_ukundefined
      jay_s_uk @Ex3DP
      last edited by

      @Ex3DP whats going on the wifi....

      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

      1 Reply Last reply Reply Quote 0
      • droftartsundefined
        droftarts administrators @Ex3DP
        last edited by

        @Ex3DP said in PanelDue 5i not working:

        For your CAN error, this line in config.g is wrong:

        M569 P1.1 S1 ; physical drive 1.1 goes forwards

        It is referring to an expansion board on CAN, but the Mini 2+ is not a CAN expansion board, just an extension of the main board. The drivers on this board are referenced as 5 (or 0.5) and 6 (or 0.6). Change this line to:

        M569 P0.5 S1 ; physical drive 0.5 goes forwards

        See the documentation here: https://docs.duet3d.com/Duet3D_hardware/Duet_3_family/Duet_3_Expansion_Mini_2+#firmware-notes

        For your WiFi issue, have you followed the instructions for adding your SSID here? https://docs.duet3d.com/en/How_to_guides/Getting_connected/Getting_connected_to_your_Duet#h-5-connect-duet-to-network

        Ian

        Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

        Ex3DPundefined 1 Reply Last reply Reply Quote 0
        • droftartsundefined
          droftarts administrators @Ex3DP
          last edited by

          @Ex3DP said in PanelDue 5i not working:

          M350 X16 Y16:16 Z16 E16:16 I1 ; configure microstepping with interpolation
          M92 X80.00 Y80.00:80.00 Z400.00 E85.00:85.00 ; set steps per mm
          M566 X800.00 Y800.00:800.00 Z800.00 E90.00:90.00 ; set maximum instantaneous speed changes (mm/min)
          M203 X6000.00 Y6000.00:6000.00 Z200.00 E600.00:600.00 ; set maximum speeds (mm/min)
          M201 X500.00 Y500.00:500.00 Z500.00 E250.00:250 ; set accelerations (mm/s^2)
          M906 X800 Y800:800 Z800 E800:800 I30 ; set motor currents (mA) and motor idle factor in per cent

          Also, for all of the above, you can only specify one value for the Y parameter, because multiple motors on these axes must have the same configuration. The Extruder ("E") axes are treated differently. Remove the second value, eg:

          M350 X16 Y16 Z16 E16:16 I1                                ; configure microstepping with interpolation
          

          See M350 Notes:

          RepRapFirmware does not support individual motor settings where an axis has multiple motors connected to different stepper drivers. The first parameter specified will be used for all motors on the axis. You should use identical motors on any axis that has more than one motor to avoid unexpected behaviour.

          Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

          Ex3DPundefined 1 Reply Last reply Reply Quote 0
          • Ex3DPundefined
            Ex3DP @droftarts
            last edited by

            @droftarts Hello Sir. We have tried the procedure to activate the wifi module as other the documentation, but there was no success for RRF 3.4.5 firmware. But the procedure worked perfectly for RRF 3.3.10 (generated from RRF tool)

            RRF tool reference.JPG

            I will ry to implement suggested commands to get rid CAN error.

            droftartsundefined 1 Reply Last reply Reply Quote 0
            • Ex3DPundefined
              Ex3DP @droftarts
              last edited by

              @droftarts Ok. I will do this too to check the functionality. Thank you so much for the help. Appreciated.

              1 Reply Last reply Reply Quote 0
              • Ex3DPundefined
                Ex3DP @jay_s_uk
                last edited by

                @jay_s_uk Ok Sir. I will implement your suggestions and revert back if the problem remains unsolved. Thank you so much for the help in advance.

                1 Reply Last reply Reply Quote 0
                • droftartsundefined
                  droftarts administrators @Ex3DP
                  last edited by

                  @Ex3DP The RRF configuration tool does not configure WiFi access. You need to do that manually, usually by connecting to the Duet via USB using a PC with a serial terminal (like YAT). It is also possible to set up the WiFi using the PanelDue, as it is now working. You will need the name of the WiFi SSID you want to connect to, and the password. The commands you need to send are:

                  M587 ; sent on it's own it lists the remembered WiFi networks
                  M552 ; reports the IP address and WiFi SSID to which it is connected
                  M552 S-1 ; turns off WiFi module
                  M552 S0 ; turns on WiFi module in idle mode (does not try to connect)
                  M587 S"*" ; delete all remembered WiFi networks (if necessary)
                  M587 S"your-network-ssid" P"your-network-password" ; Store SSID name and password. See note about special characters here: https://docs.duet3d.com/en/User_manual/Reference/Gcodes/M587
                  M552 S1 ; turn on WiFi module and connect
                  M552 ; reports the IP address and WiFi SSID to which it is connected

                  Check that you have an M552 S1 command in config.g, so that WiFi is enabled at power on.

                  Ian

                  Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                  Ex3DPundefined 1 Reply Last reply Reply Quote 0
                  • Ex3DPundefined
                    Ex3DP @droftarts
                    last edited by

                    @droftarts Yes Sir. We did that manually only, but there was no success for RRF 3.4.5 firmware version.

                    droftartsundefined 1 Reply Last reply Reply Quote 0
                    • droftartsundefined
                      droftarts administrators @Ex3DP
                      last edited by

                      @Ex3DP please post the responses from these commands, so we can understand where it is going wrong. Without more information, we can’t diagnose what the issue might be. Also post the response to M122.

                      Ian

                      Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                      Ex3DPundefined 2 Replies Last reply Reply Quote 0
                      • Ex3DPundefined
                        Ex3DP @droftarts
                        last edited by

                        This post is deleted!
                        1 Reply Last reply Reply Quote 0
                        • Ex3DPundefined
                          Ex3DP @droftarts
                          last edited by

                          @droftarts ok sir.. Definitely will soon post the responses.. Thank you so much for the help.

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