Gcode: stop current move with deceleration (no emergency)
-
@avdoverflow when a channel is executing a command, it wont process the next command on that channel which is why you are seeing this discrepancy in when you are getting results.
-
@T3P3Tony
1.) Is there a way to create multiple channels in a single interface (only USB or only WiFi) and then specify certain commands to each channel? For example one channel will be only for movement and the second channel will be only for reading position.2.) Or is there a way to execute a movement command without locking the channel up? For example, in Grbl I am able to use the "?" command to get a "Status report query" anytime during a movement command. In Marlin "M114" (Get Current Position) also works anytime during a movement command.
Thanks for the help.
-
@avdoverflow I think the proper solution is to make a change to the interface to allow the commands to be buffered such that any commands in the buffer that are non motion commands could be executed on the fly/mid move? dc42 will need to confirm the possibility of this. I am very excited to see move segmentation added, does this mean that it will be possible to track the distance to go until the end of a move in DWC? If so that makes it one of the last fundamental features of a fully formed cnc controller.
-
-
@timothyz said in Gcode: stop current move with deceleration (no emergency):
does this mean that it will be possible to track the distance to go until the end of a move in DWC?
In RRF 3.5beta1 and beta2 the machine coordinates are updated during the move, whether or not you enable segmentation.
GCode is essentially a serial protocol, so it's not possible to distinguish between commands that need to be buffered and those that don't. There would always be the possibility of a pending movement command blocking a status-requesting command. The correct way to resolve this is to use two separate command channels, which is in effect how DWC gets status updated even when it is waiting for a command to complete.
I am fairly sure you will find that M114 in Marlin blocks if the input buffer is full. If the movement queue has commands in it (and perhaps is full) but the input buffer is not full, then both RRF and Marlin will respond to M114.
-
@dc42
Is there is guide or tutorial on how to create "two separate command channels?"Getting status updates while waiting for commands to complete is what I am looking for. Thanks in advance.
-
@avdoverflow on what device are you looking to get status updates while commands initiated by that device are in progress, and how will that device be connected to the Duet?
The usual way to implement jogging in a CNC pendant (such as the one described at https://docs.duet3d.com/en/User_manual/Connecting_hardware/IO_CNC_Pendant) is to send a small movement command each time the jogging wheel is moved. If you want to use a button instead of a wheel and move the axis while the button is held down, you could do a similar thing i.e. send small movement commands at intervals while the button is held down. Either way, if you avoid sending movement commands too fast to be executed in real time, movement will stop when pendant stops sending movement commands.
-
@dc42 Is there any progress on this issue?
There is another idea - you can write a macro in which the submission of a micro movement command will be looped. In this cycle we can check the state of the pin and exit by pressing a button.
I need this to connect a weight sensor in a photopolymer printer.
-
@dc42 Any news on this issue? I decided not to make a new topic so as not to create duplicates.
-
@Dep right now our focus is on getting RRF 3.5 released. RC4 is almost ready and if no serious issues are found it it we expect to release 3.5.0 stable 1 to 2 weeks later.
-
@dc42 Thank you! We are really looking forward to this feature.
-
@dc42 What if the solution is to my question?
-
@Dep There is a feature enhancement request for this already, along with various side issues, see:
https://github.com/Duet3D/RepRapFirmware/issues/745
https://github.com/Duet3D/RepRapFirmware/issues/746Ian