PanelDue 5i not working
-
@Ex3DP the duet 3 mini expansion board isn't CAN. The drivers are P0.5 and P0.6
-
@T3P3Tony Hello Sir. Downloaded all the latest files RRF 3.4.5 from https://github.com/Duet3D/RepRapFirmware/releases
But it did not solve the issue. Wifi module was not at all working. There was no green light splashing. So could not use DWC.
Sorry, but we still need your inputs to make our Duet 3 Wifi mini 5+ to work efficiently with latest version RRF 3.4.5.
-
@Ex3DP connect via USB and post the output of M122
-
@dc42 Thank you so much Sir. Your this suggestion helped us to resolve the SD card access through PanelDue issue. Appreciated.
NOw can print through SD card.
-
@jay_s_uk This is to check what ?
-
@Ex3DP whats going on the wifi....
-
@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
-
@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 centAlso, 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.
-
@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)
I will ry to implement suggested commands to get rid CAN error.
-
@droftarts Ok. I will do this too to check the functionality. Thank you so much for the help. Appreciated.
-
@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.
-
@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 connectedCheck that you have an
M552 S1
command in config.g, so that WiFi is enabled at power on.Ian
-
@droftarts Yes Sir. We did that manually only, but there was no success for RRF 3.4.5 firmware version.
-
@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
-
This post is deleted! -
@droftarts ok sir.. Definitely will soon post the responses.. Thank you so much for the help.